@keyframes fly {
  0% {
    transform: translate(0%, -60%) rotate(-90deg);
  }
  12.5% {
    transform: translate(70%, -42%) rotate(-45deg);
  }
  25% {
    transform: translate(100%, 0%) rotate(0deg);
  }
  37.5% {
    transform: translate(70%, 42%) rotate(45deg);
  }
  50% {
    transform: translate(0%, 60%) rotate(90deg);
  }
  62.5% {
    transform: translate(-70%, 42%) rotate(135deg);
  }
  75% {
    transform: translate(-100%, 0%) rotate(180deg);
  }
  87.5% {
    transform: translate(-70%, -42%) rotate(225deg);
  }
  100% {
    transform: translate(0%, -60%) rotate(270deg);
  }
}
@keyframes fly-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes fly-2 {
  0% {
    transform: translate(0%, -30%);
  }
  12.5% {
    transform: translate(35%, -21%);
  }
  25% {
    transform: translate(50%, 0%);
  }
  37.5% {
    transform: translate(35%, 21%);
  }
  50% {
    transform: translate(0%, 30%);
  }
  62.5% {
    transform: translate(-35%, 21%);
  }
  75% {
    transform: translate(-50%, 0%);
  }
  87.5% {
    transform: translate(-35%, -21%);
  }
  100% {
    transform: translate(0%, -30%);
  }
}
@keyframes fly-3 {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  51% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes fly-4 {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(-100%);
  }
  51% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes cityMoving {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 100%;
  }
}
.rotating-gradient {
  transform-origin: 50% 50%;
  border-radius: 100%;
  animation: spinGradient 1.2s linear infinite;
  filter: blur(10px);
  background: conic-gradient(from 180deg at 50% 50%, rgba(217, 217, 217, 0) 31deg, rgba(115, 115, 115, 0.71) 71deg, rgba(217, 217, 217, 0) 110deg, rgba(217, 217, 217, 0) 213deg, rgba(115, 115, 115, 0.71) 253deg, rgba(217, 217, 217, 0) 294deg);
  height: 100%;
  width: 100%;
}

@keyframes spinGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*======================================== config =================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, p,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none !important;
}

a {
  text-decoration: none;
  transition: 0.3s all !important;
  line-height: normal;
  color: #012934;
}
a:hover, a:focus {
  color: red;
  text-decoration: none;
}

button, input[type=submit] {
  cursor: pointer;
  outline: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #001530;
  font-size: 20px;
  line-height: 1.32;
  font-weight: 400;
  font-family: "Barlow", sans-serif;
}
@media (max-width: 1440px) {
  body {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}
body.active {
  overflow: hidden;
}
body img {
  transition: 0.34s all;
  max-width: 100%;
  display: inline;
}
.container {
  max-width: 1312px !important;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 1472px) {
  .container {
    max-width: 100% !important;
    padding: 0 100px;
  }
}
@media (max-width: 1280px) {
  .container {
    padding: 0 60px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

/*======================================== end config =================================*/
.padd-main {
  padding: 100px 0 !important;
}
@media (max-width: 1023px) {
  .padd-main {
    padding: 64px 0 !important;
  }
}
@media (max-width: 767px) {
  .padd-main {
    padding: 32px 0 !important;
  }
}

.pb-0 {
  padding-bottom: 0 !important;
}

.bg-modal-main {
  background: #000000;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: 0.3s all !important;
  z-index: 10;
}
.bg-modal-main.active {
  opacity: 0.65;
  pointer-events: unset;
}

main {
  padding-top: 120px;
}
@media (max-width: 1023px) {
  main {
    padding-top: 92px !important;
  }
}
@media (max-width: 767px) {
  main {
    padding-top: 55px !important;
  }
}

.swiper-button {
  position: relative;
  margin: 0;
}

.btn-main a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1177FF;
  font-size: 16px;
  font-weight: bold;
  height: 48px;
  border-radius: 8px;
  padding: 0 16px;
  line-height: inherit;
  border: 1px solid #1177FF;
}
@media (max-width: 767px) {
  .btn-main a {
    font-size: 14px;
    padding: 0 24px;
    height: 40px;
  }
}
.btn-main a:hover {
  background: #fff;
  color: #1177FF;
}

@media (max-width: 1480px) {
  header .container {
    max-width: 100% !important;
    padding: 0 40px !important;
  }
}
@media (max-width: 1364px) {
  header .container {
    padding: 0 40px !important;
  }
}
@media (max-width: 1280px) {
  header .container {
    padding: 0 20px !important;
  }
}
header .logo img {
  max-width: 100px;
}
@media (max-width: 1023px) {
  header .logo img {
    max-width: 80px;
  }
}
@media (max-width: 767px) {
  header .logo img {
    max-width: 52px;
  }
}

.header-main {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001 !important;
}
@media (max-width: 1023px) {
  .header-main {
    z-index: 1001 !important;
    background: #fff;
    position: fixed !important;
    box-shadow: 0px 2px 16px rgba(17, 119, 255, 0.1215686275);
  }
}

@media (max-width: 1023px) {
  .h-menu {
    position: fixed;
    top: 0;
    width: 80%;
    height: 100%;
    overflow: auto;
    z-index: 1001;
    transition: 0.4s all !important;
    background: #fff;
    padding: 80px 40px;
    text-align: left;
    font-size: 20px;
    left: -80%;
  }
}
@media (max-width: 767px) {
  .h-menu {
    width: 85%;
    padding: 40px 20px;
    font-size: 14px;
    left: -85%;
  }
}
.h-menu.active {
  left: 0;
}
.h-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 1364px) {
  .h-menu ul {
    gap: 0;
  }
}
@media (max-width: 1023px) {
  .h-menu ul {
    display: block;
  }
}
@media (max-width: 1023px) {
  .h-menu ul li {
    margin-bottom: 32px;
  }
  .h-menu ul li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .h-menu ul li {
    margin-bottom: 20px;
  }
}
.h-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 40px;
  line-height: inherit;
}
@media (max-width: 1180px) {
  .h-menu a {
    padding: 6px 10px;
    font-size: 13px;
  }
}
@media (max-width: 1250px) {
  .h-menu a {
    font-size: 12.5px;
  }
}
@media (max-width: 1023px) {
  .h-menu a {
    padding: 0;
    border-radius: 0;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
  }
}
.h-menu a.active, .h-menu a:hover {
  background: #1177FF;
  color: #fff;
}
@media (max-width: 1023px) {
  .h-menu a.active, .h-menu a:hover {
    background: transparent;
    color: #1177FF;
  }
}

@media (max-width: 1023px) {
  .head-translate {
    display: flex;
  }
}
.head-translate .bar-menu-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .head-translate .bar-menu-mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .head-translate .bar-menu-mobile svg {
    width: 24px;
    height: 24px;
  }
}
.head-translate:hover .current-translater {
  background: #1177FF;
}

.sub-translate {
  background: #1177FF;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  transition: 0.4s all !important;
  opacity: 0;
  pointer-events: none;
}
.sub-translate a {
  color: #fff;
}

.relative-translate:hover .sub-translate {
  opacity: 1;
  pointer-events: unset;
}

.close-menu {
  display: none;
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
}
@media (max-width: 1023px) {
  .close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .close-menu {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .close-menu svg {
    width: 24px;
    height: auto;
  }
}

footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #EDF8FF 100%);
}
@media (max-width: 1023px) {
  footer .logo img {
    max-width: 190px;
  }
}

@media (max-width: 1023px) {
  .box-breadcrumbs img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .box-breadcrumbs img {
    height: 280px;
  }
}
.box-breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}
.box-breadcrumbs ul li {
  position: relative;
  display: flex;
}
.box-breadcrumbs ul li:after {
  content: "/";
  display: inline-flex;
  padding: 0 4px;
}
.box-breadcrumbs ul li:last-child:after {
  display: none;
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 12px;
  background: #D7EEFF;
  border-radius: 8px;
  gap: 8px;
}
@media (max-width: 767px) {
  .pagination a {
    gap: 4px;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 4px;
  }
}
.pagination a:hover, .pagination a.active {
  background: #1177FF;
  color: #fff;
}
.pagination a:hover path, .pagination a.active path {
  fill: #fff;
}
@media (max-width: 767px) {
  .pagination a svg {
    display: none;
  }
}

.title {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .title {
    margin-bottom: 20px;
  }
}
.title h1, .title h2 {
  font-weight: bold;
  font-size: 64px;
  line-height: 1.4;
}
@media (max-width: 1440px) {
  .title h1, .title h2 {
    font-size: 52px;
  }
}
@media (max-width: 1280px) {
  .title h1, .title h2 {
    font-size: 48px;
  }
}
@media (max-width: 1023px) {
  .title h1, .title h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .title h1, .title h2 {
    font-size: 22px;
  }
  .title h1 br, .title h2 br {
    display: none;
  }
}

footer:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: -2px;
  right: 0;
  z-index: 2;
  background-image: linear-gradient(to right, #1177FF, red);
}

@media (max-width: 767px) {
  .item-step {
    font-size: 13px;
  }
}
.item-step:hover .hover-absolute {
  opacity: 0;
  pointer-events: unset;
}
.item-step:hover .container {
  opacity: 1;
}
.item-step:nth-child(2n) .txt {
  order: 2;
  text-align: right;
}
.item-step:nth-child(2n) .numb {
  order: 1;
  text-align: left;
}
.item-step .numb {
  text-align: right;
}
@media (max-width: 1023px) {
  .item-step .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.item-feature {
  border: 1px solid #1177FF;
  transition: 0.4s all !important;
}
.item-feature:hover {
  box-shadow: 0px 0px 24px 0px rgba(17, 119, 255, 0.5019607843);
  border: 1px solid transparent;
}
.item-feature:hover .avarta img {
  transform: scale(1.06);
}

.slide-blog .swiper-slide-shadow-left, .slide-blog .swiper-slide-shadow-right {
  display: none;
  opacity: 0;
}
.slide-blog .swiper-slide {
  opacity: 0;
  pointer-events: none;
}
.slide-blog .swiper-slide.swiper-slide-next, .slide-blog .swiper-slide.swiper-slide-prev {
  opacity: 0.2;
}
.slide-blog .swiper-slide.swiper-slide-active {
  opacity: 1;
  pointer-events: unset;
}

.item-event .info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
}

.event-swiper {
  top: calc(50% - 17px);
}

.swiper-button {
  margin: 0;
  position: unset;
  width: 48px;
  height: 34px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button:after {
  display: none;
}
.swiper-button:hover {
  background: #1177FF;
}
.swiper-button:hover svg path {
  stroke: #fff;
}

.item-blog-small .avarta {
  flex: 0 0 185px;
  max-width: 185px;
}
@media (max-width: 767px) {
  .item-blog-small .avarta {
    flex: 0 0 100px;
    max-width: 100px;
  }
}

.slide-partner .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.slide-partner .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
}
@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.slide-model .swiper-slide {
  width: 1272px !important;
}
@media (max-width: 1472px) {
  .slide-model .swiper-slide {
    width: calc(100% - 200px) !important;
  }
}
@media (max-width: 1280px) {
  .slide-model .swiper-slide {
    width: calc(100% - 120px) !important;
  }
}
@media (max-width: 1023px) {
  .slide-model .swiper-slide {
    width: calc(100% - 80px) !important;
  }
}
@media (max-width: 767px) {
  .slide-model .swiper-slide {
    width: calc(100% - 40px) !important;
  }
}

.item-model .model-txt {
  flex: 0 0 405px;
  max-width: 405px;
}
@media (max-width: 1023px) {
  .item-model .model-txt {
    max-width: 100%;
  }
}
.item-model .model-img {
  flex: 0 0 calc(100% - 405px);
  max-width: calc(100% - 405px);
}
@media (max-width: 1023px) {
  .item-model .model-img {
    max-width: 100%;
  }
}
.item-model img {
  aspect-ratio: 1207/756;
  object-fit: cover;
}

.slide-model .swiper-pagination-progressbar, .slide-blog .swiper-pagination-progressbar {
  background: #AFD1FF;
  height: 6px;
  border-radius: 4px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slide-model .swiper-pagination-progressbar-fill, .slide-blog .swiper-pagination-progressbar-fill {
  background: #1177FF;
  border-radius: 6px;
  overflow: hidden;
}

.abs-icon-banner.icon-1 {
  width: 26%;
  position: absolute;
  animation: fly-bounce 3s linear infinite;
  top: 0;
  left: 2%;
}
@media (max-width: 1440px) {
  .abs-icon-banner.icon-1 {
    width: 22%;
  }
}
@media (max-width: 1023px) {
  .abs-icon-banner.icon-1 {
    left: 0;
  }
}
.abs-icon-banner.icon-2 {
  width: 20%;
  position: absolute;
  animation: fly-bounce 2.2s linear infinite;
  top: 0;
  right: 4%;
}
@media (max-width: 1440px) {
  .abs-icon-banner.icon-2 {
    width: 20%;
  }
}
.abs-icon-banner.icon-3 {
  width: 28.5%;
  position: absolute;
  animation: fly-bounce 2.5s linear infinite;
  animation: fly-bounce 2.5s linear infinite;
  top: 20%;
  left: 48%;
}
@media (max-width: 1440px) {
  .abs-icon-banner.icon-3 {
    width: 24%;
  }
}
.abs-icon-banner.icon-4 {
  width: 26%;
  position: absolute;
  animation: fly-bounce 2s linear infinite;
  top: 28%;
  left: 0;
}
@media (max-width: 1440px) {
  .abs-icon-banner.icon-4 {
    width: 22%;
  }
}
.abs-icon-banner.icon-5 {
  width: 26%;
  position: absolute;
  animation: fly-bounce 1.8s linear infinite;
  top: 38%;
  right: 0;
}
@media (max-width: 1440px) {
  .abs-icon-banner.icon-5 {
    width: 22%;
  }
}
.abs-icon-banner.icon-6 {
  width: 20%;
  position: absolute;
  animation: fly-4 12s linear infinite;
  top: 56%;
  right: 32%;
}
.abs-icon-banner.icon-7 {
  width: 20%;
  position: absolute;
  animation: fly-3 16s linear infinite;
  top: 70%;
  left: 32%;
}

.banner-track {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  height: 30%;
  position: absolute;
  background-size: contain;
  background-repeat: repeat-x;
  background-image: url("../images/bg-banner.png");
}

@media (max-width: 1023px) {
  .txt-banner {
    padding-top: 48px;
  }
}
@media (max-width: 767px) {
  .txt-banner {
    padding-top: 32px;
  }
}
.txt-banner h1 {
  font-size: 60px;
  font-weight: 800;
}
@media (max-width: 1680px) {
  .txt-banner h1 {
    font-size: 52px;
  }
}
@media (max-width: 1440px) {
  .txt-banner h1 {
    font-size: 48px;
  }
}
@media (max-width: 1364px) {
  .txt-banner h1 {
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  .txt-banner h1 {
    font-size: 36px;
  }
}
.txt-banner p {
  margin-bottom: 16px;
}
@media (max-width: 1440px) {
  .txt-banner p {
    margin-bottom: 10px;
  }
}
.txt-banner p:last-child {
  margin-bottom: 0;
}

.sidebar-tech ul li {
  margin-bottom: 10px;
}
.sidebar-tech ul li:last-child {
  margin-bottom: 0;
}
.sidebar-tech a {
  display: block;
  background: #D7EEFF;
  border-radius: 8px;
  padding: 16px 12px;
  font-size: 18px;
}
@media (max-width: 1023px) {
  .sidebar-tech a {
    font-size: 14px;
  }
}
.sidebar-tech a.active {
  color: #fff;
  background: #1177FF;
}
.sidebar-tech a:hover {
  color: #fff;
  background: #1177FF;
}

.item-field .txt_field {
  height: 48px;
  color: #001530;
}
@media (max-width: 767px) {
  .item-field .txt_field {
    height: 40px;
  }
}
.item-field textarea {
  height: 228px;
  color: #001530;
}
@media (max-width: 767px) {
  .item-field textarea {
    height: 140px;
  }
}

.list-checkbox li {
  position: relative;
}
.list-checkbox li input {
  position: absolute;
  opacity: 0;
  left: 0;
}
.list-checkbox li input:checked ~ label:after {
  opacity: 1;
  transform: scale(1);
}
.list-checkbox label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.list-checkbox .wpcf7-list-item {
  display: block;
}

.file-input-wrapper {
  cursor: pointer;
}
.file-input-wrapper #fileInput {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.file-input-wrapper .file-name {
  font-weight: bold;
  cursor: pointer;
}

.content-detail-single p {
  margin-bottom: 16px;
}
.content-detail-single p:last-child {
  margin-bottom: 0;
}
.content-detail-single h2, .content-detail-single h3, .content-detail-single h4, .content-detail-single h5, .content-detail-single h6 {
  margin-bottom: 16px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .list-number-hot .item:nth-child(2n) .numb {
    order: 1;
  }
  .list-number-hot .item:nth-child(2n) .avarta {
    order: 2;
  }
}

@media (max-width: 767px) {
  .item-mission .icon svg {
    width: 100px;
    height: auto;
  }
}

.tab-content-single {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s all !important;
  position: absolute;
}
.tab-content-single.active {
  opacity: 1;
  pointer-events: unset;
  position: relative;
}

.item-hover-bec {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: 0.3s all !important;
}
@media (max-width: 1360px) {
  .item-hover-bec {
    transform: scale(0.7);
    border: 1px solid #fff;
  }
}
@media (max-width: 767px) {
  .item-hover-bec {
    opacity: 1;
    pointer-events: unset;
    transform: scale(1);
  }
}
.item-hover-bec.active {
  opacity: 1;
  pointer-events: unset;
}
.item-hover-bec.bec-1 {
  top: 4%;
  right: 0;
}
.item-hover-bec.bec-2 {
  left: 0;
  top: 4%;
}
.item-hover-bec.bec-3 {
  right: 0;
  top: 4%;
}

.bec:hover .item-hover-bec {
  opacity: 1;
  pointer-events: unset;
}
@media (max-width: 1023px) {
  .bec img {
    max-width: 200px !important;
  }
}
@media (max-width: 767px) {
  .bec img {
    max-width: 120px !important;
  }
}

.item-tech-15 {
  transition: 0.4s all !important;
}
.item-tech-15 .avarta {
  transition: 0.3s all !important;
}
.item-tech-15:hover {
  box-shadow: 0px 0px 24px 0px rgba(17, 119, 255, 0.5019607843);
}

.slide-other-blog .swiper-pagination {
  display: flex;
  position: relative;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .slide-other-blog .swiper-pagination {
    margin-top: 20px;
  }
}
.slide-other-blog .swiper-pagination span {
  width: 10px;
  height: 10px;
  background: #D7EEFF;
  border-radius: 100%;
  transition: 0.4s all !important;
}
@media (max-width: 767px) {
  .slide-other-blog .swiper-pagination span {
    width: 8px;
    height: 8px;
  }
}
.slide-other-blog .swiper-pagination span.swiper-pagination-bullet-active {
  background: #1177FF;
  width: 60px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .slide-other-blog .swiper-pagination span.swiper-pagination-bullet-active {
    width: 24px;
  }
}

.wpcf7-not-valid-tip {
  color: #fff;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}
@media (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: 12px;
  }
}

span.wpcf7-list-item {
  display: block;
  margin: 0;
}

.e-con-full .elementor-element {
  width: 100%;
}

.item-blog-small {
  text-align: justify;
}

/*# sourceMappingURL=style.css.map */
