
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
  --primary-color:#fd8405;
  --secondary-color:#000f47;
  --white-color:#fff;
  --gray-color:#303030;
  --bg-light-gary:#eeeff4;
}

/* --- Selection Colors --- */

::-webkit-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* ------------------------------
  button
---------------------------------*/
body{
 font-family: "Poppins", sans-serif;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
  text-decoration: none;
 -webkit-transition: all 0.3s;
 transition: all 0.3s;
}
.ast-theme-btn {
  padding: 12px 20px;
  background-color: #ffffff;
  color: #0a0a0a;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
  transition: 0.2s;
}

.btn-second {
  background: #0a0a0a;
  color: #ffffff;
}

.ast-theme-btn:hover,
.ast-theme-btn:focus {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.section{
  position: relative;
  padding: 100px 0;
}
.bg-gray-light{
  background-color:var(--bg-light-gary);
}
.heading-default h2 {
  position: relative;
  z-index: 0;
  font-weight: 800;
  font-size: 36px;
  color: var(--secondary-color);
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0.94rem;
}

/* ------------------------------
  navbar
---------------------------------*/
.main-header {
  background: #ffff;
  padding: 10px 0;
  position: relative;
  width: 100%;
  z-index: 99;
  text-align: center;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0);
}
.main-header .navbar-brand img {
  height: 60px;
  width: auto;
}
.main-header .navbar-brand:hover {
  color: #0a0a0a;
}
.main-header .navbar-toggler {
  padding: 0;
}
.main-header .navbar-toggler:focus {
  box-shadow: none;
}
.main-header .navbar-collapse {
  position: relative;
  width: 40%;
  flex-grow: 0;
}
.main-header .navbar-nav li {
  padding: 0 10px;
}
.main-header .navbar-nav li a {
  color: var(--secondary-color);
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.main-header .navbar-nav li a:hover,
.main-header .navbar-nav li a:focus,
.main-header .navbar-nav li a.active {
  color: var(--primary-color);
}
.main-header .navbar-nav li .button {
  color: #fff;
  margin-top: -3px;
  display: inline-block;
  margin-right: -15px;
}
.main-header .button-navbar {
  float: right;
  margin: 0;
  padding: 0;
  text-align: right;
}
.main-header .button-navbar li {
  display: inline-block;
  margin-left: 15px;
}
.main-header .ast-theme-btn, .main-footer .ast-theme-btn{
 background-color: var(--primary-color);
 color: #fff;
}
.navbar-fixed {
  position: fixed;
  -webkit-animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0);
}


/* ------------------------------
  intro
---------------------------------*/
.intro {
  background: var(--primary-color);
  position: relative;
  text-align: center;
}
.hero-img img{
  width: 100%;
  height: auto;
}
.main-content{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro p {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 28px;
}

.intro-image {
  padding: 0 16%;
  margin: -215px 0 0 0;
}
.intro-image img {
  padding: 0 5px;
}
.intro h2 {
  font-size: 80px;
  line-height: 94px;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  color: #ffffff;
}
.intro h2 span{
  color: var(--secondary-color);
}

/*feature Section*/

.feature-item {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 10px 30px 0px #d2d2d2;
  box-shadow: 0px 10px 30px 0px #d2d2d2;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  border-radius: 8px;
  height: 100%;
}

.feature-item .icon{
 font-size: 24px;
 color: #fff;
 margin:auto;
 margin-bottom: 12px;
 width: 50px;
 height: 50px;
 line-height: 50px;
 border-radius: 8px;
 background-color: var(--primary-color);
}
.feature-item .icon img{
  width: 35px;
  height: 35px;
}
.feature-item h5{
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.feature-item p{
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 400;
  color: var(--gray-color);
}
/* ------------------------------
  install-app
---------------------------------*/
.install-app {
  background: var(--primary-color);
  color: #ffffff;
}
.install-app h2 {
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.install-app ul {
  margin-top: 20px;
}
.install-app ul li {
  display: inline-block;
  margin-right: 15px;
}
.install-app ul li i {
  font-size: 20px;
  margin-right: 8px;
  position: relative;
  top: 3px;
}
.install-app .image1 {
  width: 100%;
  position: relative;
}



/*===== 26. Our Timeline =====*/

.timeline-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.timeline {
  margin-top: 50px;
  padding-bottom: 0;
  position: relative;
  z-index: 0;
}
.timeline::before {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 50%;
  width: 0;
  border-left: 10px solid var(--secondary-color);
  height: 100%;
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline h5 {
  display: block;
}

.timeline h5 a {
  text-decoration: none;
}

.timeline h5 a:not(:hover):not(:focus) {
  color: var(--secondary-color);
}

.timeline-item p {
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--gray-color);
}
.timeline-item p a{
  color: #024dbc;
  font-weight: 600;
  text-decoration: underline;
}
.timeline h5 a:hover{
  color: var(--primary-color);
}

.timeline-item .timeline-date {
  color: #fff;
  font-size: 1.5625rem;
  font-weight: 700;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}

.timeline-item:hover .timeline-date {
  color: var(--primary-color);
}

.timeline-content {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -5.15%;
  padding: 1.45rem;
  z-index: 1;
  box-shadow: 0px 0px 8.5px 1.5px rgba(33, 33, 33, 0.15);
}

.timeline-content:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  background-color: inherit;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 5px;
  z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content:after {
  right: -12px;
  box-shadow: 4px -4px 4px 0 rgba(0, 0, 0, 0.065);
}

.timeline-item:nth-child(even) .timeline-content:after {
  left: -12px;
  box-shadow: -4px 4px 4px 0 rgba(0, 0, 0, 0.065);
}
.timeline-content:before{
  content: "\f111";
  font-family:"FontAwesome";
  font-weight: 900;
  width: 30px;
  height: 30px;
  line-height: 22px;
  font-size: 0.55rem;
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
  display: block;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  background-color: var(--primary-color);
  color: #fff;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.timeline-item:nth-child(odd) .timeline-content:before {
  right: -20%;
  transform: translateX(50%);
}

.timeline-item:nth-child(even) .timeline-content:before {
  left: -20%;
  transform: translateX(-50%);
}
.timeline-content .timeline-description img{
  width: 100%;
  height: auto;
}

.timeline-item:nth-child(odd) h5,
.timeline-item:nth-child(odd) p {
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-date {
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-date {
  text-align: right;
}

.timeline-number {
  position: relative;
  width: 90px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 10px 10px;
  background-color: var(--primary-color);
  margin-top: -2.5rem;
  margin-right: 1.125rem;
  flex-shrink: 0;
  z-index: 0;
}

.timeline-number:after, .timeline-number:before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: var(--primary-color);
  border-top-color: transparent;
}

.timeline-number:before {
  border-left-color: transparent;
  left: -15px;
}

.timeline-number:after {
  border-right-color: transparent;
  right: -15px;
}

.timeline-item .timeline-number h5 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.75px;
}


/*===== // =====*/

/* ------------------------------
  footer
---------------------------------*/

.main-footer {
  background:var(--bg-light-gary);
  color: var(--gray-color);
  padding: 70px 0 60px;
}
.footer-widget{
  position: relative;
  margin-bottom: 20px;
}
.main-footer img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}
.main-footer h2 {
  color: #344767;
}
.main-footer .footer-widget .title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}
.main-footer ul {
  margin-top: 20px;
}
.main-footer ul li {
  padding: 6px 0;
}
.main-footer ul li a:hover,
.main-footer ul li a:focus{
  color: var(--primary-color);
  text-decoration: underline;
}
.ast_app_link a img {
  width: 100%;
  max-width: 170px;
  height: 60px;
  margin-right: 20px;
}
.footer-row{
  justify-content: space-between;
}
.mobile-btn{
  display: none;
}

/*Api Section*/

.api-item {
  align-items: center;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  background-color: var(--white-color);
  padding: 25px 20px;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.api-item .api-logo {
  flex-shrink: 0;
  height: 45px;
  margin-right: 15px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.api-item .api-logo img{
width: 100%;
height: auto;
}
.api-item .api-content h4{
color: var(--secondary-color);
font-size: 16px;
text-transform: capitalize;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0;
}
.api-item .api-content p {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 400;
  color: var(--gray-color);
}
