/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Urbanist';
    color: #444444;
    background-color: #FFFFFF;
}

a {
    color: #00E2E4;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Urbanist';
}

.toast {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 9999999;
}

.toast-body {
    display: flex;
    justify-content: space-between;
}

.toast-body p {
    margin: 0px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #3F4254;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #00E2E4;
    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: #ff6a40;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #00E2E4;
    border-top-color: #ffe9e3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 25px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    /* background: #FFFFFF;*/
    /* padding: 10px 0; */
}

#header .logo {
    /* font-size: 32px; */
    /* margin: 0; */
    /* padding: 0; */
    /* line-height: 1; */
    /* font-weight: 700; */
    /* letter-spacing: 2px; */
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    /* width: 173.53px; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
#header .navbar {
    margin-left: 77.47px;
}

.navbar {
    padding: 0;
    width: 100%;
}

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

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
}

.navbar>ul:nth-child(1)>li {
    margin-right: 54px;
}

.navbar>ul:nth-child(2)>li {
    margin-left: 20px;
    margin-right: 10px;
}

.navbar>ul:nth-child(2)>li:last-child {
    padding-right: 0px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    /* align-items: center; */
    /* position: relative; */
    /* justify-content: space-between; */
    padding: 0px;
    /* white-space: nowrap; */
    /* transition: 0.3s; */


    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    /* text-align: center; */
    color: #121726;
    /* order: 0; */
    /* flex-grow: 0; */
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    right: 0;
    background-color: #00E2E4;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    margin: auto;
}

.navbar>ul:nth-child(2)>li:nth-child(2)>a:before {
    left: auto;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar li a.active:before {
    visibility: visible;
    width: 32px;
}

.navbar>ul>li>.getstarted:before {
    visibility: hidden;
}

.navbar>ul>li>.call:before {
    visibility: hidden;
}

.navbar a img {
    margin-right: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #121726;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 9px 18px 9px 18px;

    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #00E2E4;

    border: 1.4px solid #00E2E4;
    box-sizing: border-box;
    border-radius: 2px;


}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #FFFFFF;
    background: #00E2E4;
    border-color: #00E2E4;
    border-radius: 2px;
}

/* start shubham 31-03-2022 */
.fs7 {
    font-size: 0.7rem !important;
    font-weight: 300 !important;
}

.fs8 {
    font-size: 0.8rem !important;
    font-weight: 300 !important;
}

.fs13 {
    font-size: 13px !important;
    font-weight: 400 !important;
}

/* end shubham 31-03-2022 */

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (max-width: 1400px) {
    .complete_finish_footer {
        position: unset !important;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  z-index:999999;
	position: absolute;
	right: 10px;
}

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

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  transition: 0.3s;
  z-index: 999;
  margin-left:0px !important;
  width:100% !important;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px !important;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  transition: 0.3s;
}
.navbar-mobile ul:nth-child(2){
  display: block;
  position: absolute;
  top: 165px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  transition: 0.3s;
}
.navbar-mobile ul li .getstarted{
	width:110px;
}
.navbar-mobile > ul:nth-child(2) > li{
	margin-left:0px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ff4a17;
}
.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: #ff4a17;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
section#hero {
    box-sizing: initial;
}

#hero {
    width: 100%;
    max-height: -webkit-fill-available;
    overflow: hidden;
    position: relative;
}

#hero:before {
    /* content: "";
  background: rgba(13, 20, 26, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;*/
}

#hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F9FBFD;
    z-index: -3;
    background-size: contain;
    box-sizing: unset !important;
    background-size: 100% 100%;
}

#hero .hero-container {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 60px 0;

}

#hero h1.my-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 116%;
    text-align: center;
    color: #121726;
    margin-top: 70px;
}

#hero h2.my-title-detail {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #595B60;
    margin-bottom: 16px;
}

.min-h-250 {
    min-height: 450px;
}

.video-box {
    position: relative;
    margin-top: -415px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.video-box-inner {
    margin-left: auto;
    margin-right: auto;
    height: 545px;
}

.video-box img {
    background: rgba(30, 54, 94, 0.05);
    border-radius: 12px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}


/*--------------------------------------------------------------
# Sections services
--------------------------------------------------------------*/
section {
    overflow: hidden;
}

section#services {
    margin-top: 80px;
}

.section-bg {
    background-color: #F6F8F9;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 170%;
    padding: 0;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    color: #00E2E4;
}

.section-title p {
    margin: 0;
    margin: 0;
    color: #111111;
    margin: 0 0 15px 0;

    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 300;
    font-size: 44px;
    line-height: 140%;
}

.section-title p strong {
    font-weight: 600;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#00E2E4 50%, #00e2e452 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #00E2E4;
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
    border-left: 15px solid #00E2E4;
    transform: scale(20);
}

.play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# steps
--------------------------------------------------------------*/
section#steps {
    box-sizing: initial;

    padding: 140px 0;
}

#steps .section-title {
    padding: 0px 20% 40px 20%;
}

.steps .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
}

.steps .icon-box i {
    color: #5c8eb0;
    font-size: 40px;
    line-height: 0;
}

.steps .icon-box h4 {
    margin: 20px 0px 10px 0px;
    color: #212121;
    line-height: 33px;

    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;

}

.steps .icon-box h4 a {
    color: #212121;
    transition: 0.3s;
}

.steps .icon-box p {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 160%;
    color: #424242;
    min-height: 112px;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

section#features {
    box-sizing: initial;
    padding-top: 120px;
}

#features {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#features::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 93%;
    background: url(../img/features-bg.png) center top no-repeat;
    z-index: -3;
    background-size: contain;
    box-sizing: unset !important;
    background-size: 100% 100%;
}

.features-container {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #FFFFFF;
    height: calc(38vh - calc(100vh - 100%));
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.features-container .top-box {
    top: 0;
    display: block;
    z-index: 999;
}

.features-container h1 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 300;
    font-size: 44px;
    line-height: 130%;

    margin-bottom: 3%;
}

.features-container h2 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    padding: 0 22% 0 22%;
    margin-top: 3%;
    margin-bottom: 3%;
}

.features-container .bottom-box {
    bottom: 0;
    display: block;
    /*position: absolute;*/
    margin-top: 100px;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
}

.features-container .bottom-box-containt {
    background: radial-gradient(131.47% 484.28% at -3.85% -25.47%, rgba(238, 242, 249, 0.5925) 0%, rgba(188, 196, 210, 0.24) 100%);
    height: auto;
    background-size: contain;
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    backdrop-filter: blur(40px);
    /*bottom: calc(114vh - calc(100vh - 100%));  
  margin-top: calc(0vh - calc(100vh - 80%));
    position: absolute;*/
    border-radius: 12px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    width: 100%;
    padding: 40px 30px 0px 30px;

}

.features-container .bottom-box-containt h1 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 130%;
    margin-top: 5%;
    margin-bottom: 3%;
}

.features-container .bottom-box-containt .box {
    width: 18%;
    margin: 20px 0px 0px 0px;
}

.features-container .bottom-box-containt .box:first-child {
    margin-left: 50px;
}

.features-container .bottom-box-containt .box:last-child {
    margin-right: 50px;
}

.features-container .bottom-box-containt .box p {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    /* or 20px */

    text-align: center;

    color: #FFFFFF;


    /* Inside auto layout */

    flex: none;
    order: 1;
    flex-grow: 0;
    margin: 12px 0px;

}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services .container {
    padding: 140px 0;
}

.services .icon-box {
    margin-bottom: 20px;
    padding: 30px 30px 10px 30px;
    border-radius: 6px;
    background: #fff;
}

.services .icon-box i {
    color: #5c8eb0;
    font-size: 40px;
    line-height: 0;
}

.services .icon-box h4 {
    margin: 10px 0px 10px 0px;
}

.services .icon-box h4 a {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    /* identical to box height, or 150% */


    color: #212121;
    transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
    color: #212121;
}

.services .icon-box p {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;

    /* #424242 */

    color: #424242;
    min-height: 63px;
    margin: 0px;
}

.services .icon-box:hover h4 a {
    color: #212121;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

section#ceo-message {
    box-sizing: initial;
    padding-top: 0px;
    overflow: initial !important;
    margin-top: 140px;
}

#ceo-message {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

#ceo-message::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 93%;
    background: url(../img/ceo-bg.png) center top no-repeat;
    z-index: -3;
    background-size: contain;
    box-sizing: unset !important;
    background-size: 100% 100%;
}

.ceo-container {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #FFFFFF;
    height: 100%;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.ceo-container .top-box {
    top: 0;
    display: block;
    z-index: 999;
    margin-top: -120px;
}

.ceo-container .bottom-box {
    bottom: 0;
    display: block;
    margin-top: auto;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0px;
}

.ceo-container .bottom-box-containt {
    background: radial-gradient(131.47% 484.28% at -3.85% -25.47%, rgba(238, 242, 249, 0.5925) 0%, rgba(188, 196, 210, 0.24) 100%);
    height: auto;
    background-size: contain;
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    backdrop-filter: blur(40px);
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    padding: 40px 38px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

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

.testimonials .testimonial-item .testimonial-img {
    width: 192px;
    border-radius: 50%;
    margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

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

.testimonials .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials p {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 140%;
    color: #FFFFFF;
    text-align: left;
}

.testimonials span {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 170%;
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 10px;
}

.testimonials span i {
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #e5edf3;
    border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #00E2E4;
}

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

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.portfolio .portfolio-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: #00E2E4;
    padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: white;
    transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #ffc1b0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 15px;
}

.portfolio .portfolio-item:hover img {
    top: -30px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f0f4f8;
    min-height: 40px;
    margin-top: 78px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #263d4d;
    content: "/";
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #1E365E;
    padding: 15px 0 15px 0;
    color: #99A9C4;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
}

#footer .copyright span {
    /*padding: 6px;*/
}

#footer ul {
    display: flex;
    justify-content: space-evenly;
}

#footer ul li {
    list-style: none;
}

#footer ul li a {
    color: #99A9C4;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 0px;
}

#footer ul li a:hover,
#footer ul li a:focus {
    color: #00E2E4;
}

.t-btn-f {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
    background: #00E2E4;
    border-radius: 2px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
}

.t-btn-f:hover {
    background: #00E2E4;
    color: #FFFFFF;
}

.t-btn-f:not(.no-hover):hover {
    background: #1E365E;
    color: #FFFFFF;
}

.t-btn {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #00E2E4;
    flex: none;
    order: 0;
    flex-grow: 0;
    border: 1.4px solid #00E2E4;
    box-sizing: border-box;
    border-radius: 2px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;

}

.t-btn:hover {
    color: #00E2E4;

}

.t-btn:not(.no-hover):hover {
    background: #00E2E4;
    border-color: #00E2E4;
    color: #FFFFFF;

}

.pb-60 {
    padding-bottom: 60px;
}

.bottom-step {}

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

@media only screen and (max-width: 1200px) {

    #hero h1,
    .features-container h1,
    .testimonials p {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2,
    .features-container h2 {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 14px;
    }

    .section-title p {
        font-size: 28px;
    }

    .breadcrumbs {
        margin-top: 52px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }

    section#features {
        padding-top: 60px;
    }

    .features-container .bottom-box-containt .box {}

    .features-container .bottom-box-containt .box:first-child {
        margin-left: 0px !important;
    }

    .features-container .bottom-box-containt .box:last-child {
        margin-right: 0px !important;
    }
}

@media (max-width: 992px) {

    .navbar .getstarted,
    .navbar .getstarted:focus {
        margin: 0px;
    }

    .navbar>ul>li {
        padding: 8px 10px;
    }

    .navbar>ul:nth-child(2)>li {
        padding: 8px 0px;
    }

    .container,
    .container-fluid,
    .container-md,
    .container-sm {
        padding: 0px;
    }

    #hero .hero-container {
        padding: 0px;
    }

    #hero h1,
    .features-container h1,
    .testimonials p {
        font-size: 22px;
        line-height: 36px;
    }

    #hero h2,
    .features-container h2 {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .section-title h2 {
        font-size: 14px;
    }

    .section-title p {
        font-size: 22px;
    }

    .breadcrumbs {
        margin-top: 52px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }

    section#features {
        padding-top: 30px;
    }

    .features-container .bottom-box-containt .box {}

    .features-container .bottom-box-containt .box:first-child {
        margin-left: 0px !important;
    }

    .features-container .bottom-box-containt .box:last-child {
        margin-right: 0px !important;
    }
}

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

    .navbar ul {
        display: none;
    }

    #hero::after {}
}

.box-shadow {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));

}

.buble-box {
    background: radial-gradient(163.21% 1608.63% at -3.85% -25.47%, rgba(149, 162, 183, 0.5925) 0%, rgba(188, 196, 210, 0.465) 100%);
    backdrop-filter: blur(40px);
    border-radius: 6px;
    padding: 20px 30px;
}

.buble-box-conetnt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.buble-box-1 {
    width: 403px;
    height: 106px;
    position: absolute;
    top: 594px;
}

.buble-box-1 i {
    color: #FFDFA3;
    font-size: 12.67px;
    margin: 1.33px;
}

.buble-box-1 .box-1 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 145%;
    /* or 20px */


    color: #FFFFFF;
}

.buble-box-1 .box-2 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 155%;
    /* or 22px */
    color: #FFFFFF;
}

.buble-box-2 {
    width: 294px;
    height: 78px;
    position: absolute;
    top: 970px;
    padding: 14px 16px;
    background: radial-gradient(131.47% 484.28% at -3.85% -25.47%, rgba(215, 224, 238, 0.5025) 0%, rgba(215, 222, 234, 0.1125) 100%);
    backdrop-filter: blur(40px);
}

.buble-box-2 .i-box {
    width: 44.45px;
    height: 46px;
    background: #FFFFFF;
    opacity: 1.5;
    border-radius: 4px;
    margin-right: 10px;
    align-items: center !important;
    display: grid;
    text-align: center;
}

.buble-box-2 .i-box i {
    color: #00E2E4;
    font-size: 25px;
}

.buble-box-2 .box-1 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 145%;
    /* or 20px */


    color: #FFFFFF;
}

.buble-box-2 .box-2 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 155%;
    /* or 22px */
    color: #FFFFFF;
}

.buble-box-3 {
    width: 284px;
    height: 78px;
    position: absolute;
    top: 850px;
    margin-left: 1035px;
    padding: 18 28px;
    background: radial-gradient(163.21% 1608.63% at -3.85% -25.47%, rgba(238, 255, 255, 0.3) 0%, rgba(223, 255, 255, 0.1575) 100%);
    backdrop-filter: blur(40px);
    border-radius: 6px;
}

.buble-box-3 .i-box {
    margin-right: 10px;
}

.buble-box-3 .box-1 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 145%;
    /* or 20px */


    color: #FFFFFF;
}

.buble-box-3 .box-2 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 155%;
    /* identical to box height, or 22px */


    color: #FFFFFF;
}

section#contact {
    margin-top: 60px;
    margin-bottom: 60px;
}

section#contact .card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 0px;
}

.text-sub-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #424242;
    opacity: 0.8;
}

.text-main-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #111111;
    margin-top: 24px;
    margin-bottom: 6px;
}

#kt_contact_submit_button {
    border: 0px;
}

input.t-input,
textarea.t-input {
    background: #F6F8F9;
    border-radius: 4px;
    height: 42px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #424242;
    border: none;
    outline: none;
    /*filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));*/
    margin-bottom: 10px;
}

input.t-input:focus,
select.form-select,
textarea.t-input:focus {
    outline: none;
    border: 0;
    outline: none;
    box-shadow: none;
    color: #424242;
    background-color: #F6F8F9;
}

input.t-input::placeholder,
textarea.t-input:placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #424242;
    opacity: 0.8;
    /* Firefox */
}

input.t-input::-ms-input-placeholder,
textarea.t-input::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #424242;
    opacity: 0.8;
}

input.t-input::-ms-input-placeholder,
textarea.t-input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #424242;
    opacity: 0.8;
}

input.t-input:focus::placeholder,
textarea.t-input:focus::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #424242;
    opacity: 0.8;
    /* Firefox */
}

input.t-input:focus::-ms-input-placeholder,
textarea.t-input:focus::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #424242;
    opacity: 0.8;
}

input.t-input:focus::-ms-input-placeholder,
textarea.t-input:focus::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #424242;
    opacity: 0.8;
}

textarea.t-input {
    height: 120px;
}

.text-head-title {
    font-size: 16px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    color: #111111;
}

.fv-help-block {
    font-size: 12px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    color: #ed1f1f;
}

.softdocs-precedents-document-name {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #121726;
}

.softdocs-precedents-document-list ul li {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 175%;
    color: #424242;
    opacity: 0.8;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin: 0px 10px;
    list-style-image: url('../img/svg/list-circle.svg');
}

.p-btn-f {
    background: #1E365E;
    border-radius: 6px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    border: 0px;
    box-shadow: none;
    padding: 11px;
}

.p-btn-f:hover {
    border: 0px;
    box-shadow: none;
    color: #FFFFFF;
}

.p-card-shadow {
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgb(22 22 24 / 3%), 0px 0.500862px 7.76336px rgb(22 22 24 / 3%);
    border-radius: 8px;
    margin-bottom: 30px;
}

section#solutions {
    margin-top: 140px;
    margin-bottom: 60px;
}

section#solutions .l-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 130%;
    color: #121726;
    margin-bottom: 20px;
    padding-right: 67px;
}

section#solutions .l-subtitle {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    color: #424242;
    opacity: 0.8;
    margin-bottom: 23px;
    padding-right: 25px;
}

section#solutions ul.l-list {
    padding: 0;
    padding-right: 135px;
}

section#solutions ul.l-list li {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    list-style: none;
    margin-bottom: 46px;
}

section#solutions ul.l-list li h1 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #111111;
    margin-left: 22px;
    margin-bottom: 8px;
}

section#solutions ul.l-list li h2 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #424242;
    opacity: 0.8;
    margin-left: 22px;
    margin-bottom: 0px;
}

#solution-features {
    box-sizing: initial;
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#solution-features::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F9FBFD;
    z-index: -3;
    background-size: contain;
    box-sizing: unset !important;
    background-size: 100% 100%;
}

.solution-features-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.solution-features-container .top-box h1 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: bold;
    font-size: 44px;
    line-height: 130%;
    text-align: center;
    color: #121726;
    margin-bottom: 20px;
}

.solution-features-container .top-box h2 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    text-align: center;
    color: #121726;
    margin-bottom: 87px;
}

.container {
    width: 1180px;
    padding: 0px;
    /* margin: 0px; */
}

.copyright img {
    margin-right: 24px;
}

.t-alert {
    height: 44px;
    left: 0px;
    top: 0px;
    background: #242527;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-alert span.closebtn {
    position: absolute;
    right: 1.67%;
}

.navbar-mobile ul:nth-child(2) {
    display: block;
    position: absolute;
    top: 165px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    transition: 0.3s;
}

/* responsive css Tim*/



/* mobile */

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    z-index: 999999;
    position: absolute;
    right: 10px;
}

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

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    transition: 0.3s;
    z-index: 999;
    margin-left: 0px !important;
    width: 100% !important;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 25px !important;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    transition: 0.3s;
}
.navbar-mobile ul:nth-child(2){
  display: block;
  position: absolute;
  top: 210px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  transition: 0.3s;
}

.navbar-mobile ul li .getstarted {
    width: 110px;
}

.navbar-mobile>ul:nth-child(2)>li {
    margin-left: 0px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #ff4a17;
}

.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: #ff4a17;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px){
	.login-page-card{
		width: 94vw !important;
	}
	.t-btn-f, .t-btn{
		width: 100%;
		margin-bottom: 15px;
		margin-left: auto;
		margin-right: auto;
	}
	.navbar-mobile .dropdown ul{
		margin:0px !important;
		right:0 !important;
		left:unset !important;
		overflow-y: initial !important;
		overflow-x: initial !important;
	}
	.navbar-mobile ul{
		overflow-y: initial !important;
		overflow-x: initial !important;
	}
	.fixed-top{
		background: #F9FBFD !important;
	}
	.m-flex{
		display: flex !important;
		flex-direction: column !important;
	}
	.container , .fixed-top .container{
		max-width: 560px !important;
		margin-left:auto !important;
		margin-right:auto !important;
		width: 94vw !important;
		padding:0px !important;
	}
	#hero h1.my-title {
		font-size: 28px !important;
		width:100% !important;
	}
	#hero h2.my-title-detail{
		font-size: 18px !important;
		width:100% !important;
	}
	#footer{
		display: flex;
		flex-direction: column;
		align-items: center;
		align-content: center;
	}
	#footer .copyright{
		display: flex;
		flex-direction: column;
		align-items: center;
		align-content: center;
	}
	#footer ul {
		display: flex;
		flex-direction: column;
		align-content: center;
		align-items: center;
	}
	.navbar-mobile li a:hover:before, .navbar-mobile li:hover>a:before, .navbar-mobile li a.active:before{
		visibility:hidden !important;
	}
	.no-margin-mobile{
		margin:0px !important;
	}
	.no-padding-mobile{
		padding:0px !important;
	}
	#hero::after{
		height:20% 
	}
	#hero .hero-container{
		padding:0px !important;
		height: 87% !important;
	}
	.login_body #hero{
		height:100vh !important;
	}
	.mobile-text-center{
		text-align:center !important;
	}
	.softdocs-precedents-document-list{
		margin-top:20px;
	}
	.t-btn-f, .t-btn {
		width: 100%;
		margin-bottom: 15px;
		margin-left: auto;
		margin-right: auto;
	}
	.mobile-fullwidth{
		width: 100%;
	}
	section#solutions{
		margin-top:60px !important;
	}
	#solution-features{
		padding-top:0px !important;
	}
	#steps.bottom-step{
		padding-top:0px !important;
	}
	.softdocs-precedents-document-list ul{
		padding-left:0px !important;
	}
	.softdocs-precedents-document-list ul li{
		text-align:left !important;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px){
	.login-page-card{
		width: 94vw !important;
	}
	.t-btn-f, .t-btn{
		width: 100%;
		margin-bottom: 15px;
		margin-left: auto;
		margin-right: auto;
	}
	.navbar-mobile .dropdown ul{
		margin:0px !important;
		right:0 !important;
		left:unset !important;
		overflow-y: initial !important;
		overflow-x: initial !important;
	}
	.navbar-mobile ul{
		overflow-y: initial !important;
		overflow-x: initial !important;
	}
	.navbar-mobile li a:hover:before, .navbar-mobile li:hover>a:before, .navbar-mobile li a.active:before{
		visibility:hidden !important;
	}
	.fixed-top{
		background: #F9FBFD !important;
	}
	.m-flex{
		display: flex !important;
		flex-direction: column !important;
	}
	.container , .fixed-top .container{
		max-width: 100% !important;
		margin-left:auto !important;
		margin-right:auto !important;
		width: 94vw !important;
		padding:0px !important;
	}
	#hero h1.my-title {
		font-size: 28px !important;
		width:100% !important;
	}
	#hero h2.my-title-detail{
		font-size: 18px !important;
		width:100% !important;
	}
	#footer{
		display: flex;
		flex-direction: column;
		align-items: center;
		align-content: center;
	}
	#footer .copyright{
		display: flex;
		flex-direction: column;
		align-items: center;
		align-content: center;
	}
	#footer ul {
		display: flex;
		flex-direction: column;
		align-content: center;
		align-items: center;
	}
	.no-margin-mobile{
		margin:0px !important;
	}
	.no-padding-mobile{
		padding:0px !important;
	}
	#hero::after{
		height:20% 
	}
	#hero .hero-container{
		padding:0px !important;
		height: 87% !important;
	}
	.login_body #hero{
		height:100vh !important;
	}
	.mobile-text-center{
		text-align:center !important;
	}
	.softdocs-precedents-document-list{
		margin-top:20px;
	}
	.t-btn-f, .t-btn {
		width: 100%;
		margin-bottom: 15px;
		margin-left: auto;
		margin-right: auto;
	}
	.mobile-fullwidth{
		width: 100%;
	}
	section#solutions{
		margin-top:60px !important;
	}
	#solution-features{
		padding-top:0px !important;
	}
	#steps.bottom-step{
		padding-top:0px !important;
	}
}
@media only screen and (min-width: 768px) and (max-width: 959px){
	.login-page-card{
		width: 94vw !important;
	}
	.t-btn-f, .t-btn{
		width: 100%;
		margin-bottom: 15px;
		margin-left: auto;
		margin-right: auto;
	}
	.navbar-mobile li a:hover:before, .navbar-mobile li:hover>a:before, .navbar-mobile li a.active:before{
		visibility:hidden !important;
	}
	.navbar-mobile .dropdown ul{
		margin:0px !important;
		right:0 !important;
		left:unset !important;
		overflow-y: initial !important;
		overflow-x: initial !important;
	}
	.navbar-mobile ul{
		overflow-y: initial !important;
		overflow-x: initial !important;
	}
	.fixed-top{
		background: #F9FBFD !important;
	}
	.m-flex{
		display: flex !important;
		flex-direction: column !important;
	}
	.container , .fixed-top .container{
		max-width: 100% !important;
		margin-left:auto !important;
		margin-right:auto !important;
		width: 94vw !important;
		padding:0px !important;
	}
	#hero h1.my-title {
		font-size: 28px !important;
		width:100% !important;
	}
	#hero h2.my-title-detail{
		font-size: 18px !important;
		width:100% !important;
	}
	#footer{
		display: flex;
		flex-direction: column;
		align-items: center;
		align-content: center;
	}
	#footer .copyright{
		display: flex;
		flex-direction: column;
		align-items: center;
		align-content: center;
	}
	#footer ul {
		display: flex;
		flex-direction: column;
		align-content: center;
		align-items: center;
	}
	.no-margin-mobile{
		margin:0px !important;
	}
	.no-padding-mobile{
		padding:0px !important;
	}
	#hero::after{
		height:20% 
	}
	#hero .hero-container{
		padding:0px !important;
		height: 87% !important;
	}
	.login_body #hero{
		height:100vh  !important;
	}
	.mobile-text-center{
		text-align:center !important;
	}
	.softdocs-precedents-document-list{
		margin-top:20px;
	}
	.t-btn-f, .t-btn {
		width: 100%;
		margin-bottom: 15px;
		margin-left: auto;
		margin-right: auto;
	}
	.mobile-fullwidth{
		width: 100%;
	}
	section#solutions{
		margin-top:60px !important;
	}
	#solution-features{
		padding-top:0px !important;
	}
	#steps.bottom-step{
		padding-top:0px !important;
	}
}
