@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
:root {
  --theme-color2: #ff3838;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
}

/*** Services Section ***/

.services-section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}
.services-section .row {
  margin: 0 -8px;
}

/* oai */
.services-section .row {
  display: flex;
  flex-wrap: wrap;
}

.services-section .row > div {
  padding: 0 8px;
}
.services-section .bottom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.services-section .bottom-box .text {
  line-height: 28px;
  padding: 15px 30px;
  background-color: var(--bg-theme-color3);
}
.services-section .bottom-box .theme-btn {
  margin-left: 10px;
}

.service-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
/* oai */
.service-block {
  display: flex;
  flex-direction: column;
}
.service-block .inner-box {
  position: relative;
  background-color: #ffffff;
	color: #000;
  border: 1px solid #e2e2e2;
  padding: 45px 25px 50px 50px;
  padding: 25px 25px 30px 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 10px;
  overflow: hidden;
}
/* oai */
.service-block .inner-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-block .inner-box::before {
  position: absolute;
  width: 124px;
  height: 121px;
  left: 0;
  top: 0;
  background-image: url(../images/icons/dots.png);
  content: "";
}
.service-block .inner-box:hover {
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
.service-block .inner-box:hover .icon-box {
  background-color: var(--bg-theme-color2);
	color: white; /* hover state of fa icon */
}

.service-block .inner-box:hover .read-more i {
  color: #ffffff;
  background-color: var(--bg-theme-color2);
}

.icon {
font-family: "Flaticon" !important;
}
.icon-box i { font-size: 400%; margin-top: 20px;}

.service-block .icon-box {
  position: absolute;
  right: -52px;
  bottom: -52px;
  height: 210px;
  width: 210px;
  background: #f3f3f3;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 40px 50px;
  border-radius: 50%;
	color: red; /* normal state of fa icon */
}
.service-block .icon-box .icon {
  color: var(--theme-color2);
  font-size: 72px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .title {
  font-weight: 800;
  margin-bottom: 14px;
}

.service-block .title a {
	color: red;
}

.service-block .title:hover {
  color: var(--theme-color2);
}
.service-block .text {
  position: relative;
  margin-bottom: 60px;
}
/* oai */
.service-block .text {
  flex-grow: 1;
}

.service-block .read-more {
	z-index: 10;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  color: #6a6a6a;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}
.service-block .read-more i {
  margin-right: 20px;
  height: 52px;
  width: 52px;
  font-size: 16px;
  color: var(--theme-color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-block a ,
.service-block .read-more a {
	color: red !important;
}



/*** 

====================================================================
    Services Section Two
====================================================================

***/
.services-section-two {
  position: relative;
  padding: 120px 0 120px;
  background-color: #191825;
}
.services-section-two .outer-box {
  margin-left: -190px;
  margin-right: -190px;
}
.services-section-two .upper-box {
  margin-bottom: 40px;
}
.services-section-two .video-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 30px;
}
.services-section-two .video-box .image {
  position: relative;
  margin-bottom: 0;
}
.services-section-two .video-box .image img {
  border-radius: 5px;
}
.services-section-two .video-box .play-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 52px;
  width: 52px;
  font-size: 12px;
  background-color: var(--bg-theme-color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  padding-left: 2px;
  border-radius: 50%;
}
.services-section-two .bottom-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 15px;
}
.services-section-two .bottom-box .text {
  font-size: 18px;
  line-height: 34px;
  color: #8f8f8f;
  font-weight: 400;
}
.services-section-two .bottom-box .theme-btn {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 5px 20px;
  background-color: var(--bg-theme-color2);
  margin-left: 30px;
  border-radius: 20px;
  letter-spacing: 0.2em;
  font-weight: 400;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.services-section-two .bottom-box .theme-btn:hover {
  background-color: #ffffff;
  color: #000;
}

.service-block-two {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.service-block-two .inner-box {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 35px 40px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-image: url(../images/icons/dots-4.png);
  background-position: right bottom;
  background-repeat: no-repeat;
}
.service-block-two .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/icons/dots-4-light.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}
.service-block-two .inner-box:hover {
  background-image: none;
  background-color: var(--bg-theme-color2);
  border: 1px solid var(--border-theme-color2);
}
.service-block-two .inner-box:hover::before {
  opacity: 1;
}
.service-block-two .inner-box:hover .icon,
.service-block-two .inner-box:hover .text,
.service-block-two .inner-box:hover .title {
  color: #ffffff;
}
.service-block-two .inner-box:hover .count {
  color: rgba(255, 255, 255, 0.2);
}
.service-block-two .inner-box:hover .count::before {
  opacity: 0;
}
.service-block-two .inner-box:hover .count:after {
  opacity: 1;
}
.service-block-two .count {
  position: absolute;
  right: 0;
  top: 40px;
  height: 65px;
  width: 140px;
  font-size: 51px;
  font-weight: 700;
  color: rgba(200, 199, 199, 0.34);
  line-height: 65px;
  z-index: 2;
  padding-left: 15px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-two .count::after, .service-block-two .count::before {
  position: absolute;
  right: 0;
  top: 0px;
  height: 65px;
  width: 140px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#f3f3f3), to(transparent));
  background: linear-gradient(to right, #f3f3f3, transparent);
  content: "";
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-two .count::after {
  opacity: 0;
  background: -webkit-gradient(linear, left top, right top, from(#e42b2b), to(transparent));
  background: linear-gradient(to right, #e42b2b, transparent);
}
.service-block-two .icon-box {
  position: relative;
  margin-bottom: 15px;
}
.service-block-two .icon-box .icon {
  color: var(--theme-color2);
  font-size: 68px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-two .title {
  font-weight: 800;
  margin-bottom: 14px;
}
.service-block-two .text {
  position: relative;
  margin-bottom: 0px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*** 

====================================================================
    Services Section Three
====================================================================

***/
.services-section-three {
  position: relative;
  padding: 120px 0 70px;
  z-index: 1;
  counter-reset: count;
}

.service-block-three {
  position: relative;
  margin-bottom: 70px;
  z-index: 1;
}
.service-block-three .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-three .inner-box:hover {
  background-color: var(--bg-theme-color2);
}
.service-block-three .inner-box:hover .text,
.service-block-three .inner-box:hover .title,
.service-block-three .inner-box:hover .icon {
  color: #ffffff;
}
.service-block-three .inner-box:hover .icon-box:before {
  color: #fd6667;
}
.service-block-three .inner-box:hover .read-more i {
  color: #ffffff;
  background-color: #e42b2b;
}
.service-block-three .content {
  position: relative;
  padding: 40px 35px 70px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}
.service-block-three .content::before {
  position: absolute;
  right: -60px;
  top: -100px;
  height: 230px;
  width: 230px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.08;
  content: "";
}
.service-block-three .content::after {
  position: absolute;
  left: -60px;
  top: -100px;
  height: 230px;
  width: 230px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.08;
  content: "";
}
.service-block-three .icon-box {
  position: relative;
  margin-bottom: 25px;
}
.service-block-three .icon-box:before {
  position: absolute;
  right: -10px;
  top: 20px;
  font-size: 52px;
  color: #edf0f5;
  counter-increment: count;
  content: "0" counter(count);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-three .icon-box .icon {
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: var(--theme-color2);
  font-size: 64px;
}
.service-block-three .title {
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 30px;
}
.service-block-three .title:hover {
  color: var(--theme-color2);
}
.service-block-three .text {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 0px;
}
.service-block-three .read-more {
  position: absolute;
  left: 35px;
  bottom: -32px;
}
.service-block-three .read-more i {
  background-color: #ffffff;
  height: 64px;
  width: 64px;
  font-size: 18px;
  color: var(--theme-color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

