
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Roboto+Serif:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #130f40;
    position: relative;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.42857143;
}


ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none;
    outline: none;
}

a,
button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

button {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

a {
    color: #2c3e50;
    font-size: 16px;
}

h1 {
    font-size: 70px;
    line-height: 80px;
    color: #fff;
}

h2 {
    font-size: 45px;
    line-height: 55px;
    color: #fff;
}

h3 {
    font-size: 24px;
    line-height: 34px;
    color: #fff;
}

h4 {
    font-size: 22px;
    line-height: 32px;
     color: #fff;
}

h5 {
    font-size: 18px;
    line-height: 28px;
}

h6 {
    font-size: 16px;
    line-height: 26px;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #c8c5c5;
}

/*======================================================================================*/
/* banner  */
/*======================================================================================*/

.banner-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 110px;
  position: relative;
  z-index: 1;
}
.banner-section::before {
    background: black;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
}
.banner-content{
  text-align: start;
  z-index: 1;
}
.banner-content h2 {
    color: #f60;
    font-weight: bold;
    font-size: 52px;
    line-height: 65px;
    padding-top: 10px;
}
.demo-button {
    margin-top: 20px;
}
.demo-button a {
    background:#FF6600;
    color: #fff;
    padding: 20px 36px;
    font-size: 21px;
    display: inline-block;
    border-radius: 10px;
}
.banner-section .banner-content .useful-brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 22px;
}
 .banner-content .useful-brand .brand-item-inner {
  margin: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
.brand-item-inner img {
  border-radius: 10px;
  max-width: 100px;
  width: 100%;
  height: auto;
}
.demo-section{
  padding: 80px 0;
  background:#212428;;
}
.demo-header {
  text-align: center;
}
.demo-header h2{
  color:#FF6600;
  font-weight: 600;
}
.demo-single {
    padding: 10px;
    background: #fff;
    margin-bottom: 22px;
}
.demo-single2 {
    background: #e3dddd;
}
.demo-single .img a img{
    width: 100%;
}
.demo-inner{
    text-align: center;
    padding-top: 10px;
}
.demo-inner h3 a{
    color:#FF6600;
    font-weight: 600;
}
.demo-inner .inner-button a {
    background: #FF6600;
    color: #fff;
    padding: 12px 42px;
    font-size: 21px;
    display: inline-block;
    border-radius: 30px;
    position: relative;
}

.inner-button a::after {
    width: 15px;
    height: 15px;
    background: #f9f7f7;
    position: absolute;
    content: '';
    border-radius: 50%;
    left: 21px;
    top: 20px;
    animation: iconPulse 2s linear infinite;
}

@keyframes iconPulse{
0% {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}
}

.footer-area{
    background: black;
    padding: 20px 0;
}

@media all and (max-width:991px){
.banner-section {
    background-position: 50%;
    padding-block: 90px;
}
}

@media all and (max-width:767px){
.banner-content h2 {
    color: #fff;
    font-weight: bold;
    font-size: 37px;
    line-height: 49px;
    padding-top: 10px;
}
.brand-item-inner img {
    max-width: 55px;
}
.demo-button a {
    background: #FF6600;
    color: #fff;
    padding: 11px 19px;
    font-size: 19px;
    display: inline-block;
    border-radius: 10px;
}
}

@media all and (max-width:570px){
    .banner-content {
    text-align: center;
}
.banner-section {
    background-position: 36%;
    padding-block: 60px;
}
.brand-item-inner img {
    max-width: 37px;
}
.banner-section .banner-content .useful-brand {
    margin-top: 15px;
    justify-content: center;
}
.banner-content h2 {
    color: #f60;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    padding-top: 10px;
}
.demo-section {
    padding: 36px 0;
    background: #212428;
}
.demo-header h2 {
    color: #FF6600;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
}
}