/* image */

/* abou us */
.imagestop {
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 150px 0;
}

.imagestop::after {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000e5;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  content: "";
}

.imagestop h1 {
  position: relative;
  z-index: 1;
}

.homepre {
  background: transparent none repeat scroll 0 0;
  border: none;
  display: inline-block;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0;
}

.homepre li {
  font-family: "Yantramanav", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0 5px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.homepre a {
  font-family: "Yantramanav", sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
}

/*About us*/
.aboutim {
  margin-top: 100px;
}

.aboutim .abou h3 span {
  font-size: 45px;
  font-weight: 700;
  color: #e62b40;
}
@media (max-width: 600px) {
  .responsiveabout {
   padding-left: 10%;
   padding-right: 10%;
  }
}
.aboutim .abou h3 {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "metropolis", sans-serif;
}

.aboutim .abou h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "Open Sans", arial;
}

.aboutim .abou p {
  margin-top: 10px;
  line-height: 28px;
  word-spacing: 2px;
  text-align: justify;
  font-size: 18px;
  font-family: "metropolis", sans-serif;
  font-weight: 400;
}

.aboutim .abou p span {
  font-weight: 700;
}

.col-12 .nav-tabs {
  border-radius: 30px;
  box-shadow: 2px 2px 5px #d4d4d4;
}

.col-12 .nav-tabs .nav-item .nav-link {
  color: #000000;
  border: none;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 470px) {
  .col-12 .nav-tabs .nav-item .nav-link {
    color: #000000;
    border: none;
    padding: 5px;
    font-size: 16px;
    font-weight: 700;
  }
}
.col-12 .nav-tabs .nav-item .nav-link:hover {
  color: #e62b40;
}

.col-12 .nav-tabs .nav-item .nav-link.active {
  background: transparent;
  color: #e62b40;
}

/*our journey*/
.road-map-main {
  margin: 50px 0 51px;
  .road-map-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 175px;
    @media (max-width: 991px) {
      margin-bottom: 25px;
      height: auto;
      display: block;
    }

    &::before {
      content: "";
      width: 100%;
      clear: both;
      display: block;
    }
    &::after {
      content: "";
      width: 100%;
      clear: both;
      display: block;
    }
    .road-map-circle {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 25px solid transparent;
      border-top-color: #e62b40;
      border-right-color: #e62b40;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      transform: rotate(45deg);
      @media (max-width: 992px) {
        position: unset;
        border: 25px solid #e62b40;
      }

      .road-map-circle-text {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background-color: #5b5b5b;
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        text-transform: capitalize;
        color: #fff;
        box-shadow: 0px 0px 10px 5px #00000021;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transform: rotate(-45deg);
      }
    }
    .road-map-card {
      width: 35%;
      background: #e62b40;
      padding: 20px 20px;
      z-index: 1;
      position: absolute;
      right: 0;
      border-radius: 5px;
      &::before {
        content: "";
        width: 25%;
        height: 20px;
        background: #e62b40;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -23%;
        z-index: -1;
      }
      @media (max-width: 991px) {
        width: 100%;
        margin-top: 0px;
        position: unset;
        &::before {
          content: "";
          width: 20px;
          height: 30%;
          top: 50%;
          transform: translateX(-50%);
          left: 50% !important;
        }
      }
      @media (max-width: 425px) {
        top: 45%;
      }
      .card-head {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin: 0 0 15px;
        color: #fff;
      }
      .card-text {
        color: #fff;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        @media (max-width: 1199px) {
          -webkit-line-clamp: 4;
        }
      }
    }
    &:nth-of-type(even) {
      .road-map-circle {
        border-bottom-color: #e62b40;
        border-left-color: #e62b40;
        border-top-color: transparent;
        border-right-color: transparent;
        @media (max-width: 991px) {
          border-color: #e62b40;
        }
      }
      .road-map-card {
        left: 0;
        &::before {
          right: -23%;
          left: unset;
          @media (max-width: 991px) {
            content: "";
            width: 20px;
            height: 30%;
            top: 50%;
            transform: translateX(-50%);
            left: 50% !important;
          }
          @media (max-width: 425px) {
            top: 45%;
          }
        }
      }
    }
  }
}


/* ADVERTISERS SERVICE CARD */
.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}
.section-header p{
  padding-left: 25%;
  padding-right: 25%;
}
@media (max-width:750px){
  .section-header p{
    padding-left: 5%;
    padding-right: 5%;
  }
}
.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333333;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}

.advertisers-service-sec span {
  color: rgb(255, 23, 131);
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
}

.advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #e62b40;
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  z-index: 3;
}
.advertisers-service-sec .howp
{
  color: #000000;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  z-index: 3;
  padding-left: 10rem;
  padding-right: 10rem;
}

.advertisers-service-sec p {
  color: #000000;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #ffffff00;
  color: #e62b40;
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #fcfcfc;
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
  font-size: 15px;
}
/* ADVERTISERS SERVICE CARD ENDED */


/*team section*/
.teamsection h2{
  color: #e62b40;
}
.profile-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.profile-card .profile-img img {
  width: 100%;
  height: 350px;
}

.profile-card:hover .profile-content:before {
  top: 20px;
  left: 20px;
}
.profile-card:hover .profile-content:after {
  bottom: 20px;
  right: 20px;
}

.profile-card .profile-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 42% 4%;
  text-align: center;
}
.profile-card .profile-content .title {
  font-size: 24px;
  color: white;
  opacity: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(-100px);
  transition: all 900ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}
.profile-card:hover .title {
  opacity: 1;
  transform: translateY(0);
}
.profile-card:hover .title::after {
  content: "";
  display: block;
  width: 0%;
  margin: 10px auto;
  border-bottom: 2px solid #222;
}
.profile-card .profile-content .title > span {
  display: block;
  margin: 5px 0;
  font-size: 14px;
  text-transform: capitalize;
}
.profile-card .profile-content .social-link {
  margin: 0px 0;
  padding: 0;
  opacity: 0;
  transform: translateY(100px);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}
.profile-card:hover .social-link {
  opacity: 1;
  transform: translateY(0);
}
.profile-card .profile-content .social-link li {
  display: inline-block;
  list-style: none;
  margin: 0 4px;
}
.profile-card .profile-content .social-link li a {
  color: #333;
  width: 30px;
  height: 25px;
  line-height: 24px;
  text-align: center;
  border-radius: 5px;
  background-color: #fff;
}
/*slider*/
.home-demo {
  text-align: center;
  border-radius: 0px;
  padding-top: 50px;
}
.home-demo h3 {
  color: #e62b40;
}
.home-demo .item img {
  border-radius: 10px;
  margin-top: 50px;
}

.home-demo .item:hover {
  margin-top: 50px;
}
