@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
body {
    font-size: 16px;
    color: #000;
    background-color: #fff;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

a {
    color: #1c49bb;
    text-decoration: none;
    transition: all 0.5s;
    font-family: 'Poppins', sans-serif;
}

a:hover {
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {

}

p {
    margin: 0;
    line-height: 30px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

ul li{
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
}

.img-fluid {
    display: block;
    width: 100%;
    max-width: 100%;
}

.li {
    display: inline-block;
    padding: 0px 5px;
}
ul{
  list-style: none;
}

h1 {
  font-size: 80px;
  font-weight: 500;
  font-family: 'myHeadingFont';
}

h2 {
  font-size: 95px;
  font-weight: 500;
  color: #c7cad3;
  font-family: 'myHeadingFont';
}

h3 {}

h4 {}

h5 {
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

h6 {
 
}

.bg-cover{
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.gap{
  margin-bottom: 30px;
}
.mobile_header {
  display: none;
}
section{
  padding: 70px 0px;
}
/* navbar----------- */

.btn1 {
  background: #e43a2d;
  border: 1px solid #000;
  padding: 16px 0px;
  display: inline-block;
  color: #fff;
  width: 220px;
  text-align: center;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 42px;
}
.btn1:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn2 {
  background: #323873;
  border: 1px solid #fff;
  padding: 14px 0px;
  display: inline-block;
  color: #fff;
  width: 220px;
  text-align: center;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 42px;
}
.btn2 img.call-icon{
  width: 30px !important;
  margin-right: 5px;
}

.btn2:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-left-gap{
  margin-left: 15px;
}
.heading h2{
  font-size: 95px;
  font-weight: 500;
  color: #323873;
  margin-bottom: 14px;
  font-family: 'myHeadingFont';
}
.heading h3{
  font-size: 60px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 14px;
  font-family: 'myHeadingFont';
  line-height: 64px;
}
.heading p{
  font-size: 16px;
  color: #595959;
  line-height: 27px;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

@-webkit-keyframes AnimationName {
  0% {
      background-position: 0% 50%;
  }

  50% {
      background-position: 100% 50%;
  }

  100% {
      background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
      background-position: 0% 50%;
  }

  50% {
      background-position: 100% 50%;
  }

  100% {
      background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
      background-position: 0% 50%;
  }

  50% {
      background-position: 100% 50%;
  }

  100% {
      background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #234581;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #234581;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.top-bar{
  background: #e43a2d;
  width: 100%;
  height: 15px;
}

/* ....navbar...... */

@media (min-width: 1200px) {
  .container {
    max-width: 1280px !important;
  }
}

#main_header {
  padding: 20px 0;
}
#main_header .logo{
  position: absolute;
top: -28px;
}
#main_header .logo a img {
  width: 120px;
}

#main_header.fixed-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: initial !important;
  box-shadow: initial !important;
}

#main_header .nav_menu .navbar-nav li {
  margin: 0px 12px;
}

#main_header .nav_menu .navbar-nav li a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
}

#main_header .nav_menu .navbar-nav li a:hover {
  color: #e43a2d;
}

#main_header .nav_menu .navbar-nav li.active a {
  color: #e43a2d;
}

/* .....home-banner........ */
.home-banner{
  background: url('../image/home-bnner.jpg') no-repeat top;
  background-size: cover;
  padding: 80px 0 371px;
}
@font-face {
  font-family: 'myHeadingFont';
  src: url('../fonts/helvetica-compressed.otf');
}
.home-banner .banner-heading h1{
  font-size: 80px;
  font-weight: 500;
  line-height: 85px;
  font-family: 'myHeadingFont';
  color: #fff;
}
.home-banner .banner-heading p{
  color: #fff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 6px;
}
.home-banner .banner-heading h5{
  color: #fff;
font-size: 28px;
font-weight: 200;
margin-bottom: 32px;
font-family: 'Poppins', sans-serif;
}
.home-sec1 .content{
  text-align: center;
  background: #fafafb;
  border: 1px solid #f6beba;
  border-radius: 15px;
  padding: 40px 40px 32px 40px;
}
.home-sec1 .content:hover{
  border: 1px solid #e43a2d;
}
.home-sec1 .content .logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.home-sec1 .content .top-heading h4{
  color: #3f3f3f;
  font-size: 19px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 3px;
}
.home-sec1 .content .top-heading p{
  font-family: 'Poppins', sans-serif;
  color: #939393;
  font-size: 15px;
}
.home-sec1 .content .vs h4{
color: #000;
font-size: 35px;
font-weight: 200;
text-transform: uppercase;
}
.btn-group1 {
  background: #e43a2d;
  border: 1px solid #000;
  padding: 14px 17px;
  display: inline-block;
  color: #fff;
  width: 150px;
  text-align: left;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 45px 0 0 45px;
}
.btn-group1:hover{
  background: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-group2{
  background: #323873;
  border: 1px solid #fff;
  padding: 14px 17px;
  display: inline-block;
  color: #fff;
  width: 150px;
  text-align: right;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 0 45px 45px 0px;
}
.btn-group2:hover{
  background: #000;
  border: 1px solid #000;
  color: #fff;
}
.home-sec1 .content .btn_group{
  margin-top: 50px;
}
.home-sec1 .content .or-sty h4{
background: #1ea5df;
width: 85px;
height: 85px;
border-radius: 50%;
display: flex;
font-family: 'Poppins', sans-serif;
font-weight: 300;
color: #fff;
align-items: center;
justify-content: center;
position: absolute;
left: 50%;
top: -18px;
transform: translateX(-50%);
}
.home-sec1 .content .btn_group{
  position: relative;
}
/* ........home-sec2...... */
.home-sec2 .content.bg_color{
  background: #edfaff;
  padding: 40px;
  display: flex;
  align-items: center;
}
.home-sec2 {
  background: #edfaff;
}
.home-sec2 .content{
  width: 100%;
  height: 100%;
}
.home-sec2 .content img{
  width: 100%;
  height: 100%;
}
.home-sec2 .content .heading h6{
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
.home-sec2 .content .btn-sec{
  margin-top: 32px;
}

#play-pulse{
  position: relative;
}
#play-pulse .showcase-btns{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.showcase-btns > .play-btn > i {
  min-width: 70px;
  height: 70px;
  background: #e43a2d;
  text-align: center;
  line-height: 70px;
  border-radius: 50px;
  font-size: 35px;
  color: #fff;
  margin-right: 6px;
  box-shadow: 0 0 0 0 #e43a2d;
  animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}
.showcase-btns > .play-btn{
  cursor: pointer;
}
.showcase-btns > .play-btn{
  font-family: "Poppins", sans-serif;
  color: #444;
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}

/* ......home-sec4..... */
.home-sec4{
  background: url('../image/home-bg1.jpg') no-repeat center;
  background-size: cover;
}
.home-sec4  .content .logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.home-sec4 .content{
  text-align: center;
}
.home-sec4 .content .vs h4 {
  color:#fff;
  font-size: 35px;
  font-weight: 200;
  text-transform: uppercase;
}
.home-sec4 .content .or-sty h4 {
  background: #1ea5df;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #fff;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 167px;
  transform: translateX(-50%);
}
.home-sec4 .content .img1 img{
  width: 150px;
  margin-bottom: 10px;
}
.home-sec4 .content .img1 .img-edit{
  width: 126px !important;
}
.home-sec4 .content .img1 h4{
  color: #fff;
  font-size: 22px;
  font-weight: 300;
}
.home-sec4 .txt_cunter .cunters{
  text-align: center;
}
.home-sec4 .txt_cunter .cunters span{
  font-size: 45px;
  color: #fff;
}
.home-sec4 .txt_cunter .cunters p{
  color: #fff;
  margin-bottom: 0px;
}
.home-sec4 .txt_cunter {
  display:flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 35px;
}
.home-sec5 .scores li p{
font-weight: 600;
line-height: 15px;
}
.home-sec5 .scores li span{
  text-transform: uppercase;
  color: #17181a;
  font-size: 18px;
  font-weight: 400;
}
.home-sec5 .scores {
  margin-bottom: 50px;
}
.home-sec5 .scores li{
  margin-bottom: 20px;
}
.home-sec5 .contented{
  background:#f8cac6;
  width: 100%;
  height: 100%;
  position: relative;
}
.home-sec5 .contented .cricket-img img{
  width: 430px;
}
.home-sec5 .contented .cricket-img  {
  position: absolute;
  left: -35px;
  bottom: -99px;
}

/* ......skills-bar.... */
.skills-bar .bar {
  margin: 25px 0;
}

.skills-bar .bar .info span {
  font-size: 1rem;
  font-weight: 500;
}

.skills-bar .bar .info {
  margin-bottom: 8px;
  color: #1d1d1d;
}

.skills-bar .bar .progress-line {
  position: relative;
  height: 10px;
  width:100%;
  background: #f0f0f0;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.bar .progress-line span {
  position: absolute;
  background: #e43a2d;
  height: 100%;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  text-transfrom = uppercase;
  animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}

.progress-line .html {
  width: 95%;
}
.progress-line .css {
  width: 92%;
}
.progress-line .bootstrap {
  width: 97%;
}
.progress-line .javascript {
  width: 89%;
}
.progress-line .c {
  width: 97%;
}

.bar .progress-line span::before {
  position: absolute;
  content: "";
  height: 0;
  right: 0;
  top: -14px;
  width: 0;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-style: #f0f0f0;
  
}

.bar .progress-line span::after {
  position: absolute;
  right: 0;
  top: -28px;
  color: #595959;
  font-size: 16px;
  font-weight: 400;
  padding: 1px 8px;
  border-radius: 3px;
}


.progress-line .html::after {
  content: "95%";
}
.progress-line .css::after {
  content: "92%";
}
.progress-line .bootstrap::after {
  content: "97%";
}
.progress-line .javascript::after {
  content: "89%";
}
.progress-line .c::after {
  content: "97%";
}

/* ////........Media Query........//// */

@media (max-width: 700px) {
    .skills{
        width: 100%;
    }

    .skills-bar .bar .progress-line{
        width: 100%;
    }
}      

/* .....home-sec6...... */
.home-sec6{
  background: #e43a2d;
  padding:40px 0;
  position: relative;
  z-index: 400;
}
.home-sec6 .heading h2{
  color: #ee837a;
}
.home-sec6 .heading p{
  color: #fff;
}
.home-sec6 .heading h5{
  color: #fff;
}

/* ......home-blog-sec..... */
.home-blog-sec .contents{
  position: relative;
}
.home-blog-sec .contents .botom{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
}
.home-blog-sec .contents .botom-time{
  position: absolute;
  right: 29px;
  bottom: 51px;
  width: 100%;
  text-align: right;
}
.home-blog-sec .contents .botom h5{
  color: #fff;
  font-size: 35px;
}
.home-blog-sec .contents .botom p{
  color: #fff;
}
.home-blog-sec .contents .botom-time p{
  color: #fff;
}
.home-blog-sec .contents .botom-time p a{
  text-decoration: underline;
}
.row-below{
  margin-top: 15px;
}
.row-gap{
  margin-bottom: 50px;
}
.blog-content .botom{
  margin: 20px 0;
}
.blog-content .botom h4{
  color: #000000;
  font-size: 19px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.blog-content .botom p{
  color: #939393;
}
.blog-content .botom p a{
  text-decoration: underline;
}


/* .....footer....... */
footer{
  background:#000000;
  padding:70px 0;
}
footer .ft-logo img{
  width: 105px;
}
footer .ft-call{
  text-align: right;
}
footer .ft-call ul li img {
  margin-right: 10px;
}
footer .ft-call ul li a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  font-weight: 600;
}
footer .ft-call ul li{
  display: flex;
  align-items: center;
  justify-content: right;
}
footer .ft-links li a{
color: #fff;
}
footer .ft-links li a:hover{
  color: #e43a2d;
}
footer .ft-links{
  margin: 25px 0;
}
footer .ft-links li{
 display: inline-block;
 padding-right: 35px;
}
footer h4{
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
}
footer .ft-border{
  width: 100%;
  height: 1px;
  background: #e43a2d;
}
footer p{
  color: #fff;
}
footer .ft-mail p{
  text-align: right;
}
footer .ft-mail p a{
  color: #fff;
}
footer .ft-gap{
  margin-top: 25px;
}
.this {
    padding-top: 59px;
}