@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/roboto-regular.ttf');
}

@font-face {
    font-family: Roboto-Medium;
    src: url('../fonts/roboto-medium.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/roboto-bold.ttf');
}

:root{
    --theme-color-1: #2C58EF;
    --theme-color-2: #5DECA5;

    --body-bg: #ffffff;
    --font-color: #000000;
    --heading-color1: #020F34;
    --heading-color2: #000000;
    --font-white: #ffffff;
    --border: 1px solid #ddd;
    --box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.10);
}

.ct-area {
  position: fixed;
  /* top: 45%; */
  bottom: 25%;
  right: 1%;
  z-index: 999;
}

.ct-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.ct-row {
  box-shadow: 0 0 20px 1px rgb(1 1 3 / 17%);
  border-radius: 10%;
  background: white;
  padding: 0.8rem;
}

.btn-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.btn-container a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.btn-container img {
  width: 4rem;
}

.btn-container p {
  font-size: 1rem;
  color: black;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Roboto-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color1);
    margin-bottom: 0;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

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

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto-Regular';
    font-weight: normal;
    transition: ease-in 0.3s;
}

.btn-main{
    color: #fff;
    background: #e60012;
    transition: all .5s ease-out;
    white-space: nowrap;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background: #13ad78;
    transition: all .5s ease-out;
    box-shadow: var(--box-shadow);
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-5);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #5c12a9;
}

.btn-white{
    border: 1px solid var(--font-white);
    background-color: var(--font-white);
    color: var(--heading-color1);
    transition: all .5s ease-out;
    min-width: 100px;
}

.btn-white:hover{
    transition: all .5s ease-out;
    color: var(--font-white);
    background-color: #012A54;
    border: 1px solid #012A54;
    box-shadow: var(--box-shadow);
}

.login-btn:hover, .login-btn:focus, .login-btn:active{
    transition: all .5s ease-out;
    color: #13ad78;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--theme-color-1);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'Roboto-Regular';
    font-weight: normal;
    height: 100%;
    position: relative;
    font-size: 14px;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link{
    color: var(--theme-color-3);
}

.navbar-expand-lg .navbar-collapse{
    justify-content: space-between;
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 160px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-right: 0;
    text-align: center;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-2);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar{
    background: transparent;
    height: 70px;
}

.dropdown-menu{
    min-width: 12rem;
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--heading-color1);
    font-size: 14px;
    font-family: 'Roboto-Regular';
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
    background-color: var(--font-white);
}

.dropdown-menu li a:hover{
    color: var(--theme-color1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
}
  
.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
  
.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.soon-subscribe{
    width: 100%;
}
  
.soon-form-wrapper{
    position: relative;
    width: 100%;
}
  
.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}
  
.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}
  
.soon-counter-list{
    display: flex;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-3);
    font-family: 'Roboto-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Roboto-Regular';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}
  
.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
  
.coming-soon .footer-social-list {
    margin-top: 20px;
}
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--theme-color-1);
}

.error-page-content h3{
  font-size: 40px;
  font-family: 'Roboto-Bold';
  color: var(--theme-color-2);
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq .accordion-item{
    margin-bottom: 0px;
    border: transparent;
    background-color: transparent;
}

.faq .accordion-button{
    border: transparent;
    font-family: 'Roboto-Medium';
}

.faq .accordion-button{
    border-radius: 0px !important;
    background-color: transparent;
    font-size: 14px;
    padding: 1rem 1rem;
    /* border-bottom: var(--border); */
}

.faq .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
    color: var(--heading-color1);
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.faq .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\f106';
    font-family: Fontawesome;
    transform: none;
    color: var(--font-white);
}

.faq .accordion-button::after{
    background-image: none;
    content: '\f107';
    font-family: Fontawesome;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-color);
}

.faq .accordion-button:focus{
    box-shadow: none;
}

.faq .accordion-body {
    padding: 1rem 1rem;
}

.faq .accordion-button:not(.collapsed){
    border-radius: 12px 12px 12px 12px !important;
    border: var(--border);
    border-bottom: transparent;
    background-color: var(--theme-color-2);
}

.faq .accordion-collapse.collapse.show .accordion-body{
    border-radius: 0px;
    border: transparent;
    border-top: transparent !important;
}


#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #e60012;
    color: white;
    cursor: poRoboto;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-2);
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-main-heading{
    color: var(--heading-color2);
    font-size: 42px;
    line-height: 55px;
    margin-bottom: 20px;
    text-align: center;
}

.section-heading-description{
    text-align: center;
}

.section{
    padding: 60px 0px;
    position: relative;
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}
  
/* the parent */
.slick-list {
    margin: 0 -10px;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-2);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 35%;
    transform: translate(-50%, -50%);
    height: 200px;
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

.header-btns{
    display: flex;
    align-items: center;
}

.login-btn{
    color: var(--font-white);
}

.solution {
  position: relative;
  display: block;
  overflow: hidden;
  height: 21rem;
  padding: 3rem;
  transition: transform .3s ease-in-out, box-shadow .1s ease, background .2s ease;
  border-radius: 10px;
  background: linear-gradient(20deg, rgba(0, 174, 255, .8), rgba(0, 65, 179, .8));
  box-shadow: -6px 9px 11px rgba(0, 65, 179, .3)
}

.solution_big {
  background: linear-gradient(-20deg, rgba(0, 174, 255, .8), rgba(0, 65, 179, .8))
}

.solution_big:after {
  font-size: 8rem !important;
  line-height: .6 !important
}

.solution:after {
  font-size: 5rem;
  font-weight: 700;
  line-height: .8;
  position: absolute;
  right: -10px;
  bottom: -10px;
  content: attr(data-solution);
  white-space: nowrap;
  color: hsla(0, 0%, 100%, .2)
}

.solution:active,
.solution:hover {
  transition: transform .15s ease-in-out;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  background: linear-gradient(20deg, #00aeff, #0041b3)
}

.solution:active {
  box-shadow: 7px 9px 11px rgba(0, 65, 179, .6)
}

.solution .name {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  color: #fff
}

.solution .description {
  font-size: 1.2rem;
  line-height: 2;
  color: #fff
}

.from-right,.from-left{
    min-height:.125rem;
    margin:.5rem 0;
}

.in-viewport > .row{
    position: relative;
    width: 100%;
    
}

.reverse-block .row{
    display: flex;
    flex-direction:row-reverse;
}


.blot-wrapper .benefit-content {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  justify-content: center
}

.blot-wrapper .benefits-image {
  width: 100%;
  height: 320px;
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-background-size: contain;
  background-size: contain
}

.blot-wrapper h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  position: relative;
  display: inline-block;
  margin-right: -100px;
  margin-bottom: 20px;
}

.blot-wrapper h3 a {
  line-height: inherit;
  color: #000
}

.blot-wrapper h3.link {
  cursor: pointer;
  user-select: none
}

.blot-wrapper h3.link:after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 2px;
  content: "";
  transition: width .3s ease;
  background-color: #2daffd
}

.blot-wrapper h3.link a {
  transition: color .3s ease
}

.blot-wrapper h3.link:active a,
.blot-wrapper h3.link:hover a {
  color: #00aeff
}

.blot-wrapper h3.link:active:after,
.blot-wrapper h3.link:hover:after {
  width: 100%;
  transition: width .2s ease-in-out
}

.blot {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../picture/touminghuatupian (2).png");
  background-repeat: no-repeat;
  background-position-x: -362px;
  -webkit-background-size: cover;
  opacity: 0.2;
}

.blot-wrapper {
  position: relative
}

.blot-wrapperul {
  padding-left: 30px !important
}

.blot-wrapper li {
  position: relative;
  margin-right: -20px;
  margin-bottom: 20px;
  color: #4a4a4a
}

.blot-wrapper li:before {
  position: absolute;
  top: 10px;
  left: -20px;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 5px;
  background-color: #2daffd
}



/* home page */

.main-content-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.main-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 580px;
    background: linear-gradient(95deg,#53f 40%,#25ddf5 100%);
    /*background-image: url('../images/banner-bg.png');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

.main-banner-wrapper{
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner-small-heading{
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-heading{
    font-size: 52px;
    margin-bottom: 20px;
    font-family: 'Roboto-Bold';
    color: var(--font-white);
}

.banner-small-description{
    margin-bottom: 20px;
    color: var(--font-white);
}

.banner-btns{
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.banner-btns a{
    margin-right: 15px;
}

.banner-btns .btn-white i{
    margin-left: 10px;
}

.banner-note span{
    font-family: 'Roboto-Medium';
    color: var(--font-white);
}

.main-banner-image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-banner-image img{
    margin-top: 15rem;
}

footer{
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 3rem;
}

.footer {
  overflow: hidden;
  margin-top: -4px;
  padding: 4rem 0;
  background: linear-gradient(100deg, #431f3f, #001a4f)
}

.footer nav {
  user-select: none
}

.footer nav a {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 10px;
  transition: color .3s ease;
  color: #fff
}

.footer nav a:active,
.footer nav a:hover {
  color: #2daffd
}

.footer nav .solutions a {
  font-size: 14px;
  line-height: 1;
  margin-top: 14px;
  padding: 15px;
  transition: border-color .3s ease;
  color: #fff !important;
  border: 1px solid hsla(0, 0%, 100%, .5);
  border-radius: 10px
}

.footer nav .solutions a:active,
.footer nav .solutions a:hover {
  border-color: #2daffd
}

.footer .pages {
  margin-bottom: 20px
}

.footer address {
  font-size: 14px;
  font-style: normal;
  position: relative;
  margin-right: -8rem;
  padding-left: 40px;
  color: #fff;
  border-left: 1px solid #46528c
}

.footer address:before {
  font-size: 3rem;
  font-weight: 800;
  position: absolute;
  bottom: 0;
  left: -20%;
  margin-left: -40px;
  content: "iab.";
  color: hsla(0, 0%, 100%, .5)
}

.footer address a {
  color: #fff
}

.footer address .social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  border-radius: 50%;
  background: #1a38a0
}

.footer address .social a span {
  display: flex;
  width: 15px;
  height: 30px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-background-size: contain;
  background-size: contain
}

.footer address .social a span.vk {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB2aWV3Qm94PSIwIDAgMzMuODY3IDMzLjg2NyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTI3LjQ5OCA3LjNjLS44NjYgMC0xLjU5NS4xNzQtMS45NSAxLjQxLS40NzYgMS42NS0yLjU0NiA1LjI3NS0zLjcyIDcuMDkxLS44MzUgMS4yOTMtMS45NDMuMzk0LTIuMDEtLjE2LS4xNjctMS4zOTcgMC02LjczNSAwLTYuNzM1IDAtMS4wNS0uNjUtMS41OTItMS4zNjgtMS41OTJoLTUuMzdjLS44OCAwLTEuMzIzIDEuMDY5LS4wNiAxLjg1IDEuMDkzLjY3NiAxLjM4OC43MTcgMS4zODggMS42N3Y2LjAzN2MwIC41MTYtLjc3OCAxLjA5Ni0xLjQyNS40MzMtLjk3LS45OTEtNC4zMDQtOC4wMDYtNC4zMDQtOC4wMDZTNy44IDcuMzE0IDUuNDUzIDcuMzE0SDEuNzc4Yy0uNDA3IDAtLjk1NS41MjctLjYxOSAxLjE4MiAwIDAgNCA5LjY2IDcuNjYgMTMuNjI4czYuNzA2IDQuNDQzIDYuNzA2IDQuNDQzaDMuMjMyczEuMTMyLjAyNyAxLjEzMi0xLjEzMnYtMy4zMTFjLS4wNS0uNzkgMS4wMTQtMS4zODcgMS45NC0uMzg0bDMuNDA5IDMuNjk5Yy44NDEuODg0IDEuODIgMS4xMjggMi43NiAxLjEyOGg0LjA0MWMuNjIzIDAgMS4yNDItLjc5Ny4yMzUtMS44MDVsLTQuOTAxLTUuNnMtLjc4My0uNjk5LS4xMTItMS43NmMuNjctMS4wNjMgNC4wNTgtNy42NTcgNC4yMjYtOC4xMDQuNDUyLS45NS4xMzktMS45ODQtLjk4NS0xLjk4NEwyNy40OTggNy4zeiIgcGFpbnQtb3JkZXI9ImZpbGwgbWFya2VycyBzdHJva2UiLz48L3N2Zz4=")
}

.footer address .social a span.youtube {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 512 512'%3E%3Cpath d='M490.24 113.92c-13.888-24.704-28.96-29.248-59.648-30.976C399.936 80.864 322.848 80 256.064 80c-66.912 0-144.032.864-174.656 2.912-30.624 1.76-45.728 6.272-59.744 31.008C7.36 138.592 0 181.088 0 255.904v.256c0 74.496 7.36 117.312 21.664 141.728 14.016 24.704 29.088 29.184 59.712 31.264C112.032 430.944 189.152 432 256.064 432c66.784 0 143.872-1.056 174.56-2.816 30.688-2.08 45.76-6.56 59.648-31.264C504.704 373.504 512 330.688 512 256.192v-.256c0-74.848-7.296-117.344-21.76-142.016zM192 352V160l160 96-160 96z'/%3E%3C/svg%3E")
}

.footer address .social a span.rutube {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='523' height='465' viewBox='0 0 512 512' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(//cdn.xuansiwei.com/jiush5426/assets/%23clip0_903_33087)' fill='%23fff'%3E%3Ccircle cx='475.275' cy='48.578' r='47.697'/%3E%3Cpath d='M336.161 91.859H.934V464.52h93.305V343.279h178.787l81.572 121.241h104.479l-89.952-121.8c27.935-4.469 48.049-15.085 60.341-31.846 12.291-16.762 18.437-43.58 18.437-79.337v-27.936c0-21.231-2.235-37.992-6.146-50.843-3.911-12.85-10.615-24.024-20.113-34.081-10.057-9.498-21.231-16.203-34.64-20.673-13.409-3.91-30.171-6.145-50.843-6.145zm-15.085 169.289H94.239v-87.159h226.837c12.85 0 21.789 2.235 26.259 6.146 4.47 3.911 7.263 11.174 7.263 21.79v31.288c0 11.174-2.793 18.437-7.263 22.348-4.47 3.911-13.409 5.587-26.259 5.587z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_903_33087'%3E%3Cpath fill='%23fff' d='M0 0h523v465H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
}

.footer address .social a span.telegram {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCI+PHBhdGggZD0iTTQ2LjEzNyA2LjU1MmMtLjc1LS42MzYtMS45MjgtLjcyNy0zLjE0Ni0uMjM4aC0uMDAyYy0xLjI4MS41MTQtMzYuMjYxIDE1LjUxOC0zNy42ODUgMTYuMTMxLS4yNTkuMDktMi41MjEuOTM0LTIuMjg4IDIuODE0LjIwOCAxLjY5NSAyLjAyNiAyLjM5NyAyLjI0OCAyLjQ3OGw4Ljg5MyAzLjA0NWMuNTkgMS45NjQgMi43NjUgOS4yMSAzLjI0NiAxMC43NTguMy45NjUuNzg5IDIuMjMzIDEuNjQ2IDIuNDk0Ljc1Mi4yOSAxLjUuMDI1IDEuOTg0LS4zNTVsNS40MzctNS4wNDMgOC43NzcgNi44NDUuMjA5LjEyNWMuNTk2LjI2NCAxLjE2Ny4zOTYgMS43MTIuMzk2LjQyMSAwIC44MjUtLjA3OSAxLjIxMS0uMjM3IDEuMzE1LS41NCAxLjg0MS0xLjc5MyAxLjg5Ni0xLjkzNWw2LjU1Ni0zNC4wNzdjLjQtMS44Mi0uMTU2LTIuNzQ2LS42OTQtMy4yMDF6TTIyIDMybC0zIDgtMy0xMCAyMy0xNy0xNyAxOXoiLz48L3N2Zz4=")
}

.footer .pages a{
    color: white;
    text-decoration:underline;
    text-underline-offset:7px;

}

.footer .pages a:hover{
    color:white;
}

.contact-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    /* color: var(--font-white); */
    border-radius: 6px;
    border: var(--border);
}

.sidebar-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-search{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.sidebar-search-label{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.sidebar-search-input{
    width: 75%;
    position: relative;
    display: inline-block;
    border: var(--border);
    padding: 10px 15px;
    border-radius: 6px;
    background-color: transparent;
    color: var(--font-white);
    height: 48px;
}

.sidebar-search-btn{
    position: absolute;
    right: 0;
    top: 29px;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    width: 20%;
}

.sidebar-recent-posts{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.sidebar-heading{
    position: relative;
    color: var(--heading-color1);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 10px;
}

.sidebar-heading::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    background: var(--theme-color-2);
    left: 0;
    bottom: 0;
    z-index: 1;
}

.sidebar-heading::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #dce3ed;
    left: 0;
    bottom: 1px;
}

.sidebar-orderlist li a:before{
    position: relative;
    font-family: 'Fontawesome';
    content: "\f101";
    color: var(--theme-color-2);
    /* opacity: .2; */
    top: 0px;
    left: 0;
    transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    display: flex;
    margin-right: 10px;
}

.sidebar-orderlist{
    position: relative;
}

.sidebar-orderlist li a{
    position: relative;
    display: flex;
    align-items: baseline;
}

.sidebar-orderlist li{
    margin-bottom: 10px;
}

.sidebar-orderlist li:last-child{
    margin-bottom: 0px;
}

.sidebat-tagsorer-list li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebat-tagsorer-list li a{
    padding: 4px 8px;
    background-color: var(--theme-color-1);
    color: var(--font-white);
    border-radius: 30px;
    position: relative;
    display: inline-block;
}

.homeabout-info{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.section-second-heading{
    font-size: 36px;
    color: var(--heading-color1);
    margin-bottom: 25px;
}

.section-small-heading{
    font-size: 14px;
    color: var(--heading-color1);
    margin-bottom: 10px;
    font-family: 'Roboto-Regular';
}

.homeabout-info p{
    margin-bottom: 20px;
}

.rcf-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    /* border-radius: 20px; */
    /* background-color: #012A54; */
    padding: 40px;
    background-image: url('../images/ff-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.rcf-wrapper h3{
    font-size: 24px;
    margin-bottom: 5px;
    text-align: left;
    color: var(--font-white);
}

.rcf-wrapper p{
    text-align: left;
    color: var(--font-white);
    font-size: 12px;
    margin-bottom: 0;
    line-height: 20px;
}

.resources-content-funfactor{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.rl-descrip{
    width: 100%;
    margin: 20px 0px;
}

.rli-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 0px;
}

.rli-wrapper img{
    width: 50px;
}

.rli-wrapper h3{
    font-size: 24px;
    margin: 15px 0px;
    color: var(--heading-color1);
}

.clients-logo-wrapper{
    width: 150px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.clients-logo-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.integration-inner-wrapper{
    width: 60px;
    height: 60px;
    padding: 5px;
    border-radius: 10px;
    background-color: var(--font-white);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-list li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 15px;
}

.integration-list li:last-child{
    margin-right: 0;
}

.homeabout-img{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
}

.divider{
    background-color: #012A54;
}

.divider-content-wrapper .section-small-heading{
    color: var(--font-white);
}

.divider-content-wrapper .section-second-heading{
    color: var(--font-white);
}

.divider-applist li{
    display: inline-block;
    margin-right: 10px;
}

.app-icons{
    width: 130px;
    display: inline-block;
    position: relative;
}

.divider-content-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.support-content-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.support-list li{
    display: inline-block;
    margin-right: 10px;
}

.support-list li a{
    border-radius: 10px;
    width: 110px;
    height: 50px;
    background-color: var(--font-white);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto-Medium';
}

.support-list li a i{
    margin-right: 10px;
}

.support-review{
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.support-review-img{
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin-right: 15px;
}

.support-review-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.support-review-info h4{
    font-size: 16px;
    font-style: italic;
    font-family: 'Roboto-Medium';
    margin-bottom: 10px;
}

.support-review-info p{
    font-size: 12px
}

.testimonial-card{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-card > p{
    font-size: 14px;
    font-style: italic;
    font-family: 'Roboto-Medium';
    margin-bottom: 20px;
}

.testimonial-author{
    display: flex;
    align-items: center;
    width: 100%;
}

.testimonial-author-img{
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin-right: 15px;
}

.testimonial-author-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author-info h3{
    font-size: 16px;
    font-family: 'Roboto-Medium';
    margin-bottom: 0px;
}

.testimonial-author-info p{
    font-size: 12px
}

.testimonial-quote-icon{
    width: 45px;
    height: 45px;
    position: absolute;
    right: -15px;
    opacity: 0.4;
    bottom: -25px;
}

.testimonial-bg-circle{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: auto;
    z-index: -1;
}

.trial-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    background-color: #012A54;
    border-radius: 30px;
}

.trial-img{
    width: 100%;
    position: relative;
    display: flex;
    text-align: center;
    padding-top: 3rem;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}

.feature-img{
    text-align: center;
}

.trial-img img{
    width: 50%;
}

.trial-content{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    padding: 2rem 2rem 2rem 4rem;
}

.trial-content h3{
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.trial-content p{
    margin-bottom: 20px;
    color: var(--font-white);
}

.trial-bg{
    position: absolute;
    width: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

.page-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 350px;
    background-color: #012A54;
    background-image: url('../images/page-banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.pb-right ul li{
    display: inline-block;
    margin-right: 10px;
    color: var(--font-white);
}

.pb-right ul li:last-child{
    margin-right: 0;
}

.pb-left{
    width: 50%;
}

.pb-left h2{
    font-size: 32px;
    color: var(--font-white);
    margin-bottom: 15px;
}

.pb-left p{
    color: var(--font-white);
}

.pb-right ul li a{
    color: var(--font-white);
}

.wecreate-card{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.wecreate-icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    font-size: 20px;
}

.wecreate-info h3{
    font-size: 20px;
    color: var(--heading-color1);
    margin-bottom: 20px;
}

.text-left{
    text-align: left;
}

.whychoose{
    background-color: var(--theme-color-1);
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/whychoose-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.about-support li{
    margin-bottom: 10px;
}

.about-support li h4{
    font-size: 14px;
    font-family: 'Roboto-Medium';
}

.about-support li h4 i{
    margin-right: 10px;
    color: var(--theme-color-2);
}

.ourteam-card{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    box-shadow: var(--box-shadow);
}

.ourteam-image{
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
    margin: auto;
}

.ourteam-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    margin-bottom: 15px;
}

.ourteam-info h3{
    font-size: 18px;
    text-align: left;
    margin: 10px 0px 0px 0px;
}

.ourteam-info p{
    text-align: left;
}

.ourteam-info ul{
    margin-top: 5px;
}

.ourteam-info ul li{
    display: inline-block;
    margin-right: 5px;
}

.ourteam-info ul li a{
    color: var(--theme-color-2);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ourteam-info{
    padding: 0px 15px 15px 15px;
}

.contacts-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: linear-gradient(250deg, var(--theme-color-2) 0%, var(--theme-color-1) 100%);
    height: 100%;
    border-radius: 12px;
    padding: 30px;
}

.contacts-card{
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contacts-icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-1);
    color: var(--font-white);
    font-size: 20px;
    margin-right: 15px;
}

.contacts-info h3{
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--heading-color1);
}

.contacts-info a{
    color: var(--font-white);
}

.contacts-heading{
    font-size: 24px;
    color: var(--font-white);
    margin-bottom: 25px;
}

.glass-shadow{
    background: rgb(255 255 255 / 25%) !important;
    box-shadow: 0 8px 32px 0 rgb(31 38 135 / 15%) !important;
    backdrop-filter: blur( 6px );
    -webkit-backdrop-filter: blur( 6px );
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
}

.feature-box-wrap.f-list-2{
    border-radius: 10px 10px 10px 10px;
    box-shadow: 6px 5px 30px 0px rgb(0 0 0 / 12%);
    background: #fff;
    padding: 30px;
}

.media{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.feature-box-icon{
    margin-right: 15px;
}

.feature-box-info h3{
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color1);
}

.feature-box-icon i {
    font-size: 42px;
}

.feature-box-icon.one i{
    color: #FF0101;
}

.feature-box-icon.two i{
    color: #1D79FB;
}

.feature-box-icon.three i{
    color: #FF7511;
}

.feature-box-icon.four i{
    color: #DC64FF;
}

.feature-box-icon.five i{
    color: #56d6e5;
}

.feature-box-icon.six i{
    color: #ff906a;
}

.howitworks .rli-wrapper{
    display: flex;
    align-items: flex-start;
}

.howitworks .rli-wrapper img{
    margin-right: 15px;
}

.howitworks .rli-wrapper h3{
    margin-top: 0;
}

.additional-features{
    background: linear-gradient(95deg,#25ddf5 40%,#53f 100%);
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.additional-features-card{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: 12px;
}

.afc-icon{
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background-color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.afc-info{
    margin-top: 20px;
}

.afc-info h3{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.afc-info p{
    color: var(--font-white);
}

.blog-card{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
}

.blog-image{
    width: 100%;
    height: 220px;
    position: relative;
    display: inline-block;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.blog-info{
    width: 100%;
    position: relative;
    display: inline-block;
}

.blog-info-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}

.blog-info-top h4{
    font-size: 14px;
    color: var(--theme-color-2);
}

.blog-info-top p{
    font-size: 12px;
}

.blog-info-body a h3{
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--heading-color1);
}

.blog-info-bottom{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: var(--border);
}

.blog-info-bottom-left{
    display: flex;
    align-items: center;
}

.bibl-img{
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 10px;
}

.bibl-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bibl-info h4{
    font-size: 14px;
    margin-bottom: 5px;
}

.bibl-info p{
    line-height: 12px;
    font-size: 12px;
}

.blog-info-bottom-right ul li{
    display: inline-block;
    margin-left: 10px;
}

.blog-info-bottom-right ul li div{
    display: flex;
    align-items: center;
}

.blog-info-bottom-right ul li div i{
    color: var(--theme-color-2);
    margin-right: 5px;
}

.blog-info-body p{
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-badge{
    background-color: #FF7511;
    color: var(--font-white);
    display: inline-block;
    padding: 0px 12px;
    border-radius: 30px;
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
}

.blogsingle-content a h3{
    font-size: 36px;
    margin-bottom: 20px;
}

.blogsingle-postinfo-img{
    width: 32px;
    height: 32px;
    min-width: 32px;
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.blogsingle-postinfo-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.blogsingle-postinfo-author ul li{
    display: inline-block;
}

.blogsingle-postinfo-author ul li::after{
    content: '•';
    position: relative;
    display: inline-block;
    margin: 0px 8px;
    color: var(--theme-color-2);
}

.blogsingle-postinfo-author ul li:last-child:after{
    display: none;
}

.blogsingle-postinfo{
    display: flex;
    align-items: center;
}


.item2{
    width: 100%;
    background: #f5f5f5;
    padding-bottom:2rem;
    margin-bottom:0rem;
}
#PWA{
    padding: 0 !important;
    margin-bottom: 0;
}
.item2 .list.l2 li,.item2 .list.l3 li{
    background-color: #ffffff;
}

.item2 .title{
    text-align: center;
}

.item2 .row > .col-4{
    width: 33.33333%;
}

.icon.featured.alt{
    background: #252122;
}

/* Icons */

.icon {
    text-decoration: none;
    position: relative;
    text-decoration: none;
}

.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

.icon.solid:before {
    font-weight: 900;
}

.icon.brands:before {
    font-family: 'Font Awesome 5 Brands';
}

.icon:before {
    line-height: inherit;
}

.icon > .label {
    display: none;
}

.icon.featured {
    position: relative;
    left:31%;
    display: inline-block;
    background-color: #e60012;
    width: 9em;
    padding: 1.75em 0 0.75em 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: 0 0 4.5em 0;
    cursor: default;
    text-align: center;
}

.icon.featured:before {
    font-size: 4.5em;
    line-height: 1em;
    color: #fff;
}

.icon.featured:after {
    content: '';
    position: absolute;
    bottom: -1.95em;
    left: 0;
    border-top: solid 2em #e60012;
    border-left: solid 4.5em transparent;
    border-right: solid 4.5em transparent;
}

.icon.featured.alt {
    background-color: #252122;
}

.icon.featured.alt:after {
    border-top-color: #252122;
}

.icon.featured.alt2 {
    background-color: #827a7c;
}

.icon.featured.alt2:after {
    border-top-color: #827a7c;
}

.item2 h2{
    font-size:1.5em;
    text-align: center;
    margin-bottom:10px;
}

ul.actions {
    list-style: none;
    padding-left: 0;
    text-align: center;
}

ul.actions li {
    display: inline-block;
    margin-left: 1em;
    padding-left: 0;
}

ul.actions li:first-child {
    margin-left: 0;
}

.button.large {
    font-size: 1.5em;
    padding: 0.75em 1.5em 0.75em 1.5em;
}

.actions .button{
    -webkit-appearance: none;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    -webkit-border-radius:5px;
    -ms-border-radius:5px;
    -o-border-radius:5px;
    -moz-border-radius:5px;
    border-radius: 5px;
    background: #e60012;
    color: #fff !important;
    font-weight: 700;
    outline: 0;
    font-size: 1.1em;
    padding: 0.65em 1.5em 0.65em 1.5em;
    text-align: center;
    -moz-transition: background-color .25s ease-in-out;
    -webkit-transition: background-color .25s ease-in-out;
    -ms-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
}

/* Intro */

#intro {
    text-align: center;
    overflow: hidden;
}

#intro section {
    margin: 3em 0;
    padding: 2.5em 0;
}

#intro h2 {
    font-size: 1.75em;
}

#intro p {
    margin: 0;
}

#TRUST .middle {
    position: relative;
    z-index: 1;
}

#TRUST .middle:before {
    content: '';
    width: 32px;
    height: 100%;
    position: absolute;
    left: -24px;
    top: 0;
    display: block;
    z-index: -1;
    box-shadow: 32px 0 0 0 #f5f5f5, 0 -32px 0 0 #f5f5f5, 0 32px 0 0 #f5f5f5, 32px 32px 0 0 #f5f5f5, 32px -32px 0 0 #f5f5f5, 0 0 32px 0 rgba(0, 0, 0, 0.15);
}

#TRUST .middle:after {
    content: '';
    width: 32px;
    height: 100%;
    position: absolute;
    right: -24px;
    top: 0;
    display: block;
    z-index: -1;
    box-shadow: -32px 0 0 0 #f5f5f5, 0 -32px 0 0 #f5f5f5, 0 32px 0 0 #f5f5f5, -32px 32px 0 0 #f5f5f5, -32px -32px 0 0 #f5f5f5, 0 0 32px 0 rgba(0, 0, 0, 0.15);
}

#intro .button {
    min-width: 12em;
}

#intro footer {
    margin: 0;
}

#TRUST section{
    padding:40px 12px;
}

.article-main-image{
    width: 100%;
    height: 400px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.article-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-contents p{
    margin-bottom: 20px;
}

.article-second-heading{
    font-size: 20px;
    color: var(--heading-color1);
    margin: 20px 0px;
}

.article-contents ul li{
    margin-bottom: 10px;
}

.article-contents ul li::before{
    content: '\f101';
    font-family: 'Fontawesome';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    color: var(--theme-color-2);
}

.blog-second-image{
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
    /* margin: 20px 0px; */
}

.blog-second-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blockquote{
    background-color: #dce3ed;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
}

.blockquote p{
    font-style: italic;
    font-size: 18px;
    margin-bottom: 10px;
}

.blockquote span{
    font-size: 12px;
}

.sharetags{
    width: 100%;
    padding: 20px 0px;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-share ul {
    margin-top: 10px;
}

.article-share ul li{
    display: inline-block;
}

.article-share ul li a{
    margin-right: 10px;
    display: inline-block;
    color: var(--theme-color-2);
}

.article-share p{
    font-size: 12px;
}

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

.article-tags ul li a{
    display: inline-block;
    width: auto;
    padding: 2px 12px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 12px;
    transition: ease-in 0.3s;
}

.article-tags ul li a:hover{
    transition: ease-in 0.3s;
    border: 1px solid var(--theme-color-2);
    color: var(--theme-color-2);
}

.article-reply {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 1.5rem;
}

.article-reply h3{
    font-size: 20px;
    margin-bottom: 5px;
}

.article-reply-form{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.article-reply-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.article-reply-input{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

@-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
    } 100% {
      opacity: 1;
      -webkit-transform: translateY(0);
    }
  }
  
  @-moz-keyframes fadeInUp {
    0% {
      opacity: 0;
      -moz-transform: translateY(20px);
    }
  
    100% {
      opacity: 1;
      -moz-transform: translateY(0);
    }
  }
  
  @-o-keyframes fadeInUp {
    0% {
      opacity: 0;
      -o-transform: translateY(20px);
    }
  
    100% {
      opacity: 1;
      -o-transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media(max-width:640px){
    .solution{padding:1rem; height:15rem;  }
    .solution .description{font-size: 1rem;}
    .from-right, .from-left{width: 100%}
    .col-6{width:100%}
    .blot-wrapper .benefit-content{min-height:213px;}
    .blot{background-image: none!important}
    .item2 .row > .col-4{width: 100%}
    .footer .col-3{width: 100%}
    .footer .col-9{width: 100%}
    .privacy p{width:100%}
  }