/*================================================
Template name: Doesi
Version: 1.0.0
Author: SITLBD
Author url: https://www.sitlbd.com/
Developer: Najmul Huda Eimon
Coordinator: Asif Mahmud

[Table of Content]

01. General CSS
    1.1: Button style
    1.2: Section title
    1.3: Padding Margin
02: Preloader
03: Sticky header.blade.php
04: Scroll to top button
05: header.blade.php-top
06: menubar
07: banner
08: offer
09: count
10: about
11: service
12: team
13: project
14: client
15: brand
16: blog
17: connect
18: footer
    18.1: footer-top
    18.2: footer-bottom
19: Home version 2
    19.1: menubar
    19.2: banner
    19.3: about
    19.4: newsletter
    19.5: offer
    19.6: pricing
    19.7: client
    19.8: counter
    19.9: contact
20: About page
    20.1: menubar
    20.2: banner
    20.3: service
21: team page
22: team details page
23: service details page
24: blog details page
    24.1: blog detail
    24.2: blog sidebar
25: contact page
26: error page

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

/*===========================================================
01. General CSS
=============================================================*/
@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
}
:root {
  --light-blue: red;
  --dark-blue: red;
  --primary-color: red;
  --reverse-primary: linear-gradient(to bottom, #2a3bd8, #5075ef);
  --main-blue: red;
  --main-dark: #151a33;
  --light-grey: #172541;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

button {
  outline: none;
  border: 0;
  cursor: pointer;
  background: transparent;
}

button:focus {
  outline: none;
}

.clearfix {
  clear: both;
  display: block;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

::-moz-selection {
  background: var(--main-blue);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--main-blue);
  color: #fff;
  text-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

textarea {
  resize: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

h1 {
  font-size: 74px;
  line-height: 103px;
}

h2 {
  font-size: 40px;
  line-height: 53px;
}

h3 {
  font-size: 27px;
  line-height: 37px;
}

h4 {
  font-size: 24px;
  line-height: 27px;
}

h5 {
  font-size: 22px;
  line-height: 32px;
}

h6 {
  font-size: 20px;
  line-height: 28px;
}
p {
  font-size: 16px;
  line-height: 28px;
  color: var(--light-grey);
  font-family: "Heebo", sans-serif;
  font-weight: 400;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* select::-ms-expand {
    display: none;
} */

/* 1.1: Button style */

.btn-style {
  display: inline-block;
  text-transform: capitalize;
  width: 165px;
  height: 55px;
  text-align: center;
  position: relative;
}
.btn-style:after,
.btn-style:before {
  content: "";
  position: absolute;
  background: transparent;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.btn-style:after {
  top: -6px;
  left: -6px;
  width: 50px;
  height: 40px;
  border-top: 2px solid var(--main-blue);
  border-left: 2px solid var(--main-blue);
}
.btn-style:before {
  bottom: -6px;
  right: -6px;
  width: 50px;
  height: 40px;
  border-bottom: 2px solid var(--main-blue);
  border-right: 2px solid var(--main-blue);
}
.btn-style span {
  display: block;
  height: 100%;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 55px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.btn-style span:before,
.btn-style span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.btn-style span:before {
  background: var(--primary-color);
  z-index: -2;
}
.btn-style span:after {
  background-color: red;
  opacity: 0;
  z-index: -1;
}

.btn-style:hover span:after {
  opacity: 1;
}
.btn-style:hover:before,
.btn-style:hover:after {
  height: 121%;
  width: 107%;
}

.bg-blue {
  background: #f7fafe;
}

/* 1.2: Section title */

.section-title {
  padding-bottom: 55px;
  margin-top: -18px;
}
.section-title h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 53px;
    color: red;
  -webkit-background-clip: text;
  /*-webkit-text-fill-color: transparent;*/
}
.section-title h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: var(--main-dark);
}
.section-title p {
  padding-top: 18px;
}

/* 1.3: Padding Margin */

.p-100 {
  padding: 100px 0;
}
.p-120 {
  padding: 120px 0;
}
.pb-120 {
  padding-bottom: 120px;
}
.pt-120 {
  padding-top: 120px;
}
.pt-90 {
  padding-top: 90px;
}
.pb-90 {
  padding-bottom: 90px;
}
.m-120 {
  margin: 120px 0;
}

.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-110 {
  margin-top: 110px;
}
.mt-120 {
  margin-top: 120px;
}
.mb-120 {
  margin-bottom: 120px;
}
.common-shadow {
  box-shadow: 2px 0 39px rgba(0, 0, 0, 0.06);
}
/*=========================================================
    02: Preloader
===========================================================*/
.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #fff;
  position: fixed;
  z-index: 99999;
}
.main-circle {
  width: 150px;
  height: 150px;
  border: 4px solid var(--main-blue);
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  position: relative;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate 2s infinite;
}

.green-circle {
  animation: rotate 2s infinite 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border: 4px solid var(--light-blue);
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  transform: rotate(-20deg);
  border-radius: 50%;
  position: relative;
}

.brown-circle {
  animation: rotate 2s infinite 0.6s;
  width: 80px;
  height: 80px;
  border: 4px solid var(--main-blue);
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  transform: rotate(-20deg);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
@keyframes rotate {
  from {
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*=========================================================
    03: Sticky header.blade.php
===========================================================*/
.menubar.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  background: #fff;
  z-index: 999;
  animation: mymove 0.4s linear;
  -webkit-box-shadow: 0 5px 50px 0 hsla(0, 0%, 13%, 0.2);
  box-shadow: 0 5px 50px 0 hsla(0, 0%, 13%, 0.2);
}
@keyframes mymove {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.index2 .menubar.sticky {
  background: var(--main-dark);
  border-bottom: 0;
}
/*=========================================================
    04: Scroll to top button
===========================================================*/

.top-btn {
  height: 45px;
  width: 45px;
  line-height: 45px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  background: var(--primary-color);
  position: fixed;
  right: 40px;
  bottom: 40px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  outline: none;
  -webkit-transition: all linear 0.4s;
  -moz-transition: all linear 0.4s;
  -ms-transition: all linear 0.4s;
  -o-transition: all linear 0.4s;
  transition: all linear 0.4s;
  cursor: pointer;
}
.top-btn i {
  font-size: 14px;
  color: #fff;
}
.top-btn:hover i {
  font-size: 16px;
}
.top-btn.show {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

/*=========================================================
    05: header.blade.php-top
===========================================================*/
.header-top {
  background: #49494D;
}
.header-top ul li {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}
.header-top ul li i {
  padding-right: 10px;
}
.header-top .left-list li {
  padding-right: 34px;
}
.header-top .left-list li:last-child {
  padding-right: 0;
}
.header-top .right-list li {
  padding-left: 34px;
}
.header-top .right-list li:first-child {
  padding-left: 0;
}
.header-top ul li form {
  position: relative;
}
.header-top ul li .input-search {
  width: 100px;
  border: 0;
  outline: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.header-top ul li .input-search::placeholder {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
}
.header-top ul li form button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}
.header-top ul li form button i {
  color: #fff;
}

/*=========================================================
    06: menubar
===========================================================*/
.menubar {
  background: #fff;
}

.menubar .right-part {
    position: absolute;
    right: -40px;
    z-index: 99;
    display: none;
}
.menubar .right-part button {
    height: 40px;
    width: 40px;
    background-color: red;
    text-align: center;
    border-radius: 10px;
}
.menubar .right-part button i {
  color: #fff;
  font-size: 24px;
  line-height: 40px;
}
.menubar .right-part:hover>ul{
    display: block;
}
.menubar .right-part>ul{
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background: black;
    opacity: 0.8;
    padding: 5px;
    line-height: 35px;
}
.menubar .right-part li{
    padding: 5px 8px;
}
.menubar .right-part>ul>li{
    width: 130px;
    /*height: 30px;*/
    text-align: center;
    /*display: flex;*/
}
.menubar .right-part>ul>li:hover ul{
    display: block;
}
.menubar .right-part>ul>li>ul{
    display: none;
    position: absolute;
    left: -130px;
    background: black;
    opacity: 0.8;
    padding: 5px;
    line-height: 35px;
    width: 130px;
}
/*=========================================================
    07: banner
===========================================================*/
.banner {
  padding-top: 200px;
  padding-bottom: 210px;
  position: relative;
}
.banner .banner-text {
  padding-right: 20px;
}

.banner p {
  font-size: 20px;
  line-height: 32px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #fff;
  padding-right: 75px;
}
.banner h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 15px 0;
}
.banner ul {
  margin-top: 60px;
  margin-left: 8px;
}
.banner ul li {
  padding-right: 40px;
}
.banner ul li:last-child {
  padding-right: 0;
}
.banner ul li a {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
  position: relative;
}
.banner ul li .btn-style:after,
.banner ul li .btn-style:before {
  border-color: #fff;
}
.banner ul li .special-btn {
  padding-right: 12px;
}
.banner ul li a .vid-btn {
  height: 61px;
  width: 61px;
  padding: 9px;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 12px;
}
.banner ul li a .vid-btn:before {
  content: "";
  height: 61px;
  width: 61px;
  -webkit-border-radius: 99px;
  border-radius: 99px;
  border: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.banner ul li a .btn-inner {
  display: block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: #fff;
  border-radius: 50%;
}
.banner ul li a .btn-inner i {
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner ul li a:hover .vid-btn:before {
  width: 100%;
}

.banner .line {
  height: 100%;
  width: 6px;
  background: transparent;
  position: absolute;
  top: 0;
  overflow: hidden;
}

.banner .line1 {
  left: 13%;
}
.banner .line2 {
  left: 39%;
}
.banner .line3 {
  right: 39%;
}
.banner .line4 {
  right: 13%;
}
.banner .line:after {
  content: "";
  height: 100%;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.15);
  position: absolute;
  top: 0;
  left: 3px;
  z-index: 2;
}
.banner .line:before {
  content: "";
  height: 20px;
  width: 6px;
  background: #fff;
  position: absolute;
  top: -20px;
  left: 0;
  animation-name: run;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes run {
  from {
    top: -20px;
  }
  to {
    top: 100%;
  }
}
.banner .line1:before {
  animation-delay: 0s;
}
.banner .line2:before {
  animation-delay: 1s;
}
.banner .line3:before {
  animation-delay: 3s;
}
.banner .line4:before {
  animation-delay: 2s;
}

/*=========================================================
    08: offer
===========================================================*/

.offer .item {
  position: relative;
  padding: 40px 30px;
  -webkit-box-shadow: 2px 0 40px hsla(0, 0%, 0%, 0.06);
  box-shadow: 2px 0 40px hsla(0, 0%, 0%, 0.06);
  border-radius: 7px;
}
.offer .item .icon {
  height: 100px;
  width: 100px;
  line-height: 100px;
  background: #fff;
  text-align: center;
  margin-bottom: 25px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 40px hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 40px hsla(0, 0%, 0%, 0.1);
}
.offer .item .icon i {
  text-align: center;
  background: var(--primary-color);
  font-size: 60px;
  line-height: 100px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.offer .item h3 {
  color: var(--main-dark);
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding-bottom: 15px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.offer .item ul li {
  font-size: 16px;
  line-height: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 5px;
  color: black;
  padding-left: 20px;
  position: relative;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.offer .item ul li:last-child{
  margin-bottom: 0;
}
.offer .item ul li:before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--main-dark);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.offer .item ul li:nth-child(even):before {
  background: red;
}

.offer .item a {
  margin-top: 40px;
  margin-left: 8px;
  margin-bottom: 8px;
}
.offer .item a span:before {
  background: var(--main-dark);
}
.offer .item a span:after {
  background: var(--primary-color);
}

.offer .item .number {
  display: inline-block;
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: hsla(230, 42%, 14%, 0.3);
  position: absolute;
  top: 55px;
  right: 55px;
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.offer .item:hover .number {
  opacity: 1;
}

/*=========================================================
    09: count
===========================================================*/
.count {
  padding-bottom: 145px;
}
.count .count-item .circle {
  height: 190px;
  width: 190px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  -webkit-box-shadow: 19px 0 54px hsla(0, 0%, 0%, 0.05);
  box-shadow: 19px 0 54px hsla(0, 0%, 0%, 0.05);
  position: relative;
  background: #fff;
  margin: auto;
}
.count .count-item .circle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 120px;
  width: 120px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #eaeaea;
}
.count .count-item .circle .chart {
  position: relative;
  width: 190px;
  height: 190px;
  margin: auto;
  text-align: center;
  color: var(--main-blue);
  font-size: 22px;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  line-height: 190px;
}
.count .count-item .circle canvas {
  position: absolute;
  top: 10px;
  left: 10px;
}
.count .count-item h5 {
  text-transform: capitalize;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  color: var(--main-dark);
  padding-top: 25px;
}

/*=========================================================
    10: about
===========================================================*/
.about .section-title {
  padding-bottom: 20px;
}

.about .text-part ul li,
.about .author .name p {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  color: var(--light-grey);
  font-size: 16px;
  line-height: 28px;
}
.about .text-part ul {
  padding-top: 30px;
}
.about .text-part ul li {
  padding-left: 35px;
  position: relative;
  padding-bottom: 12px;
}
.about .text-part ul li i {
  position: absolute;
  top: 5px;
  left: 0;
  color: red;
}
.about .author {
  padding-top: 25px;
}
.about .author .image {
  height: 90px;
  width: 90px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid var(--main-blue);
  padding: 10px;
  margin-right: 20px;
}
.about .author .image img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.about .author .name {
  padding-right: 30px;
  position: relative;
}
.about .author .name:before {
  content: "";
  height: 100%;
  width: 4px;
  background: #ddd;
  position: absolute;
  top: 0;
  right: 0;
}
.about .author h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--main-dark);
  text-transform: capitalize;
}
.about .author .sign {
  padding-left: 40px;
}
.about .all-img {
  position: relative;
}
.about .all-img .bg img {
  height: 100%;
  width: 100%;
}
.about .all-img .bg1 {
  height: 360px;
  width: 81%;
}
.about .all-img .bg2 {
  height: 279px;
  width: 48%;
  -webkit-box-shadow: 0 0 8px hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 8px hsla(0, 0%, 0%, 0.1);
  position: absolute;
  bottom: 0;
  right: 0;
}
.about .all-img .bg3 {
  width: 51.7%;
  height: 145px;
  margin-top: 10px;
  padding: 20px 18px;
}
.about .all-img .bg3 span {
  display: inline-block;
  font-size: 45px;
  line-height: 50px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.about .all-img .bg3 h3 {
  font-size: 26px;
  line-height: 50px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
}
.about .all-img .shape {
  height: 340px;
  width: 160px;
  padding: 5px;
  background: var(--primary-color);
  position: absolute;
  top: 35px;
  right: 60px;
  z-index: -1;
}
.about .all-img .shape .inner {
  height: 100%;
  width: 100%;
  background: #fff;
}

/*=========================================================
    11: service
===========================================================*/

.service .item {
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.service .item .img-part {
  overflow: hidden;
}
.service .item .img-part img {
  width: 100%;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.service .item:hover .img-part img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.service .item .content {
  background: #fff;
  padding: 20px;
  padding-top: 40px;
  position: relative;
}
.service .item .content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--main-blue);
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.service .item .icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--main-dark);
  position: absolute;
  top: -30px;
  left: 20px;
  z-index: 0;
}
.service .item .icon i {
  font-size: 32px;
  color: #fff;
  line-height: 50px;
}
.service .item .icon:after {
  content: "";
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.service .item:hover .icon:after {
  opacity: 1;
}
.service .item h4 {
  color: var(--main-dark);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 10px;
}
.service .item a {
  width: fit-content;
  font-size: 16px;
  line-height: 28px;
  color: var(--light-grey);
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 10px;
}
.service .item a i {
  padding-left: 7px;
}
.service .item a:hover {
  color: var(--main-blue);
}
.service .item:hover {
  -webkit-box-shadow: 0 0 95px hsla(0, 0%, 0%, 0.22);
  box-shadow: 0 0 95px hsla(0, 0%, 0%, 0.22);
}
.service .item:hover .content:after {
  width: 50%;
}

/*=========================================================
    12: team
===========================================================*/

.team {
  padding-bottom: 200px;
}
.team .item .image {
  height: 347px;
  width: 286px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 20px;
  margin-left: 55px;
  position: relative;
  z-index: 9;
}
.team .item .image img {
  width: 100%;
}
.team .item .image .overlay {
  height: 100%;
  width: 100%;
  background: hsla(0, 0%, 0%, 0.15);
  position: absolute;
  top: 0;
  left: 0;
}
.team .item .image .overlay ul {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.team .item .image .overlay ul li {
  padding: 0 8px;
}
.team .item .image .overlay ul li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 40px;
  z-index: 1;
  position: relative;
}
.team .item .image .overlay ul li a i {
  color: #192fab;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.team .item .image .overlay ul li a:before {
  content: "";
  height: 100%;
  width: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.team .item .image .overlay ul li a:hover:before {
  opacity: 1;
}
.team .item .image .overlay ul li a:hover i {
  color: #fff;
}
.team .item:hover .image .overlay ul {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.team .item .shape {
  height: 450px;
  width: 215px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 40px;
}
.team .item .shape .text {
  position: absolute;
  bottom: 15px;
  left: 40px;
}
.team .item .shape a {
  text-transform: capitalize;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
}
.team .item .shape span {
  display: block;
  text-transform: capitalize;
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/*=========================================================
    13: project
===========================================================*/

.project .item {
  position: relative;
  overflow: hidden;
}
.project .item:after {
  content: "";
  height: 100%;
  width: 100%;
  background: hsla(0, 0%, 0%, 0.34);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  opacity: 0;
}
.project .item img {
  width: 100%;
}
.project .item .action {
  height: 100px;
  width: 290px;
  background: var(--primary-color);
  padding: 20px 30px;
  position: absolute;
  left: 0;
  bottom: -100px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: 9;
}
.project .item:hover .action {
  bottom: 0;
}
.project .item:hover:after {
  opacity: 1;
}
.project .item .action span {
  display: inline-block;
  font-family: "Heebo", sans-serif;
  text-transform: capitalize;
  color: #fff;
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
}
.project .item .action h6 {
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  padding-top: 5px;
}
.project .item .action a {
  display: inline-block;
  height: 35px;
  width: 40px;
  line-height: 35px;
  background: #fff;
  color: var(--main-blue);
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}
.project .item .action a:hover {
  background: var(--main-blue);
  color: #fff;
}

/*=========================================================
    14: client
===========================================================*/
.client .section-title{
  padding-bottom: 55px;
}
.client .item-wrapper {
  padding-bottom: 45px;
}
.client .item {
  -webkit-box-shadow: 0 0 90px hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 90px hsla(0, 0%, 0%, 0.1);
  padding: 40px 20px 80px 20px;
  position: relative;
  background: #fff;
}
.client .item span {
  position: relative;
}
.client .item span:after {
  content: "";
  position: absolute;
  top: 0;
  left: -18px;
  width: 36px;
  height: 28px;
  background: url(../images/home1/client/quote-black.png) no-repeat center;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.client .item span:before {
  content: "";
  position: absolute;
  top: 0;
  left: -18px;
  width: 36px;
  height: 28px;
  background: url(../images/home1/client/quote-blue.png) no-repeat center;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  opacity: 0;
}
.client .item h3 {
  text-transform: capitalize;
  font-size: 26px;
  line-height: 44px;
  color: var(--main-dark);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding-top: 50px;
  padding-bottom: 10px;
}
.client .item ul {
  padding-top: 10px;
}
.client .item ul li {
  padding: 0 5px;
}
.client .item ul li i {
  color: #ecc026;
  font-size: 20px;
}
.client .item .client-img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  padding: 2px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.client .item .client-img:after {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: -1;
}
.client .item .client-img .border-style {
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  padding: 4px;
}
.client .item .client-img .border-style img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.client .swiper-slide-active .item span:after,
.client .item:hover span:after {
  opacity: 0;
}
.client .swiper-slide-active .item span:before,
.client .item:hover span:before {
  opacity: 1;
}
.client .swiper-slide-active .item .client-img:after,
.client .item:hover .client-img:after {
  opacity: 1;
}

/*=========================================================
    15: brand
===========================================================*/
.brand {
  background: var(--primary-color);
}

/*=========================================================
    16: blog
===========================================================*/

.blog .item {
  width: 100%;
  height: 200px;
}
.blog .item .overlay {
  height: 100%;
  width: 100%;
  padding: 25px 150px 15px 30px;
  background: hsla(0, 0%, 0%, 0.4);
  position: relative;
  z-index: 1;
}
.blog .item-big {
  width: 100%;
  height: 640px;
}
.blog .item-big .overlay {
  padding-right: 30px;
  padding-top: 405px;
  padding-bottom: 40px;
}
.blog .item .overlay:after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to bottom,
    hsla(226, 83%, 63%, 0.9),
    hsla(234, 69%, 51%, 0.9)
  );
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.blog .item:hover .overlay:after {
  opacity: 1;
}
.blog .item .time i {
  font-size: 20px;
  padding-right: 15px;
  color: #fff;
}
.blog .item .time span {
  display: inline-block;
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 45px;
}
.blog .item .title a {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 30px;
  line-height: 45px;
  padding-top: 5px;
  padding-bottom: 20px;
}
.blog .item .more a {
  display: inline-block;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 20px;
  line-height: 35px;
  text-transform: capitalize;
  text-decoration: underline;
}


/*=========================================================
    17: connect
===========================================================*/
.connect .section-title {
  margin-top: 0;
}
.connect .bg {
  padding: 50px 60px 50px 70px;
  background: #fff;
  -webkit-box-shadow: 4px 0 94px hsla(0, 0%, 0%, 0.15);
  box-shadow: 4px 0 94px hsla(0, 0%, 0%, 0.15);
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.connect .bg:before {
  content: "";
  height: 100%;
  width: calc(100% - 44px);
  background: hsla(0, 0%, 100%, 0.7);
  border-radius: 6px;
  position: absolute;
  top: 16px;
  left: 22px;
  z-index: 0;
}
.connect .bg .section-title {
  padding: 0;
}

/*=========================================================
    18: footer
===========================================================*/
footer {
  margin-top: -55px;
}
footer .overlay {
  padding-top: 180px;
  background: hsla(0, 0%, 0%, 0.7);
}
/*=========================================================
    18.1: footer-top
===========================================================*/
.footer-top {
  padding-bottom: 70px;
}
.footer-top .title {
  padding-bottom: 30px;
}
.footer-top .title h4 {
  color: #fff;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.footer-top p {
  color: #fff;
}
.footer-top .more {
  padding: 20px 0;
}
.footer-top ul li a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
}
.footer-top .more a {
  text-transform: uppercase;
  color: #fff;
}

.footer-top .more a i {
  padding-left: 15px;
  font-size: 12px;
}
.footer-top .more a:hover {
  color: var(--main-blue);
}
.footer-top .social {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}
.footer-top .social ul li {
  padding-right: 20px;
}
.footer-top .social ul li:last-child {
  padding-right: 0;
}
.footer-top .social ul li a i {
  font-size: 16px;
  color: #fff;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.footer-top .social ul li a:hover i {
  color: var(--main-blue);
}

.footer-top .info ul li {
  padding-bottom: 10px;
  padding-left: 15px;
}
.footer-top .info ul li a,
.footer-top .service-list ul li a {
  text-transform: capitalize;
  position: relative;
}
.footer-top .info ul li a:before {
  content: "";
  height: 5px;
  width: 5px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: -15px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.footer-top .info ul li a:hover,
.footer-top .service-list ul li a:hover {
  color: var(--main-blue);
}
.footer-top .info ul li a:hover:before {
  background: var(--main-blue);
}

.footer-top .service-list ul li {
  padding-bottom: 10px;
}
.footer-top .news {
  display: grid;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-columns: auto auto auto;
}
.footer-top .news .news-item {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.footer-top .news .news-item img {
  width: 100%;
}

.footer-top .news .news-item .overlay {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 50%;
  display: block;
  background: hsla(211, 100%, 50%, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.footer-top .news .news-item .overlay a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 4;
}

.footer-top .news .news-item:hover .overlay {
  opacity: 1;
}

/*=========================================================
    18.2: footer-bottom
===========================================================*/
.footer-bottom .footer-bottom-content {
  padding: 30px 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.35);
}
.footer-bottom .copyright p,
.footer-bottom .footer-menu ul li a {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
}
.footer-bottom .copyright p a {
  color: var(--main-blue);
}
.footer-bottom .footer-menu ul li a:hover {
  color: var(--main-blue);
}
.footer-bottom .footer-menu ul li {
  padding-left: 30px;
}
.footer-bottom .footer-menu ul li:first-child {
  padding-left: 0;
}

/*=========================================================
    19: Home version 2
===========================================================*/
/*=========================================================
    19.1: menubar
===========================================================*/
.index2 .menubar {
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 5px 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.5);
}

/*=========================================================
    19.2: banner
===========================================================*/
.index2 .banner {
  padding: 0;
}
.index2 .banner .overlay {
  padding-top: 300px;
  padding-bottom: 200px;
  background: hsla(0, 0%, 0%, 0.5);
}

.index2 .banner .line {
  height: 89.4%;
  top: auto;
  bottom: 0;
}
/*=========================================================
    19.3: about
===========================================================*/

.index2.about .all-img {
  position: relative;
  padding-bottom: 100px;
}
.index2.about .all-img .bg img {
  height: 100%;
  width: 100%;
}
.index2.about .all-img .bg1 {
  height: 435px;
  width: 80%;
}
.index2.about .all-img .bg2 {
  height: 425px;
  width: 325px;
  border: 0;
  box-shadow: none;
  position: absolute;
  bottom: 0;
  right: 0;
}

.index2.about .all-img .shape {
  height: 340px;
  width: 170px;
  background: transparent;
  border: 5px solid var(--dark-blue);
  position: absolute;
  top: 23px;
  left: 155px;
  z-index: 1;
}
/*=========================================================
    19.4: newsletter
===========================================================*/
.newsletter .overlay {
  background: linear-gradient(
    to bottom,
    hsla(226, 83%, 63%, 0.57),
    hsla(234, 69%, 51%, 0.57)
  );
}
.newsletter .section-title {
  padding-bottom: 15px;
}
.newsletter .section-title h2 {
  color: #fff;
}
.newsletter p {
  font-family: "Roboto", sans-serif;
  color: #fff;
  padding: 0 100px;
}
.newsletter form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.newsletter form .input-email {
  width: 380px;
  height: 50px;
  border: 0;
  background: #fff;
  outline: none;
  padding: 0 20px;
}
.newsletter form .input-email::placeholder {
  color: #8e8585;
  font-size: 16px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
}
.newsletter form button {
  text-transform: capitalize;
  width: 150px;
  height: 50px;
}
.newsletter form button span {
  line-height: 50px;
}
.newsletter form button:after,
.newsletter form button:before {
  display: none;
}

/*=========================================================
    19.5: offer
===========================================================*/
.index2.offer .item {
  -webkit-border-radius: 7px;
  border-radius: 7px;
  overflow: hidden;
  padding: 0;
}
.index2.offer .item .overlay {
  padding: 40px 30px;
  background: hsla(0, 0%, 0%, 0.5);
  position: relative;
  z-index: 4;
}
.index2.offer .item .overlay:before {
  content: "";
  height: 100%;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.index2.offer .item:hover .overlay:before {
  opacity: 0;
}
.index2.offer .item:hover .icon i {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index2.offer .item .number {
  color: hsla(0, 0%, 100%, 0.3);
}
.index2.offer .item:hover .icon {
  background: hsla(0, 0%, 100%, 0.48);
}
.index2.offer .item:hover a span:before {
  background: var(--primary-color);
}
.index2.offer .item a span:after {
  background: var(--reverse-primary);
}
.index2.offer .item:hover h3,
.index2.offer .item:hover ul li {
  color: #fff;
}
.index2.offer .item:hover ul li:before {
  background: #fff;
}

/*=========================================================
    19.6: pricing
===========================================================*/

.pricing .item {
  -webkit-box-shadow: 2px 0 39px hsla(0, 0%, 0%, 0.06);
  box-shadow: 2px 0 39px hsla(0, 0%, 0%, 0.06);
  padding-top: 22px;
  padding-bottom: 45px;
  position: relative;
  overflow: hidden;
}
.pricing .item .adv {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 35px;
  width: 111px;
  -webkit-border-top-right-radius: 17px;
  border-top-right-radius: 17px;
  -webkit-border-bottom-right-radius: 17px;
  border-bottom-right-radius: 17px;
  color: #fff;
  text-transform: capitalize;
  background: var(--primary-color);
  position: absolute;
  top: 40px;
  left: -111px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.pricing .item.active .adv,
.pricing .item:hover .adv {
  left: 0;
}
.pricing .item .image {
  width: 170px;
  margin: auto;
  margin-bottom: 10px;
}
.pricing .item h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: var(--main-dark);
  text-transform: capitalize;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.pricing .item ul {
  padding-top: 25px;
  padding-bottom: 30px;
}
.pricing .item ul li {
  color: var(--light-grey);
  font-size: 16px;
  line-height: 40px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
}

.pricing .item a span:before {
  background: var(--main-dark);
}
.pricing .item a span:after {
  background: var(--primary-color);
}
.pricing .item.active h3,
.pricing .item:hover h3 {
  color: var(--main-blue);
}
.pricing .item.active a span:before,
.pricing .item:hover a span:before {
  background: var(--primary-color);
}

.pricing .item a span:after {
  background: var(--reverse-primary);
}

/*=========================================================
    19.7: client
===========================================================*/
.index2.client{
  background-attachment: fixed !important;
}
.index2.client .overlay {
  background: hsla(0, 0%, 0%, 0.6);
  padding-bottom: 220px;
}
.index2.client .section-title h6 {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index2.client .section-title h2,
.index2.client .section-title p {
  color: #fff;
}
.index2.client .item .client-img {
  background: transparent;
}
.index2.client .item .client-img:after {
  display: none;
}
.index2.client .item .client-img .border-style {
  background: transparent;
  border: 2px solid transparent;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.index2.client .swiper-slide-active .item .border-style,
.index2.client .item:hover .client-img .border-style {
  border-color: var(--dark-blue);
}

/*=========================================================
    19.8: counter
===========================================================*/
.index2.count {
  padding-bottom: 0;
  background: transparent;
  margin-top: -100px;
}
.index2.count .bg {
  background: var(--primary-color);
  padding: 0 70px;
}
.index2.count .item {
  position: relative;
}
.index2.count .item .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.index2.count .item .icon i {
  color: #fff;
  font-size: 45px;
}
.index2.count .item .text {
  padding-left: 60px;
}
.index2.count .item h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 44px;
  color: #fff;
}
.index2.count .item h6 {
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 36px;
  color: #fff;
  text-transform: capitalize;
}

/*=========================================================
    19.9: contact
===========================================================*/
.contact form label {
  margin: 0;
  width: 100%;
}
.contact form .inputs {
  height: 40px;
  width: 100%;
  border: 0;
  background: #fff;
  border-bottom: 1px solid #c6c7c9;
  margin-bottom: 35px;
  outline: none;
}
.contact form .inputs:focus,
.contact form .inputs:hover {
  border-color: var(--main-blue);
}
.contact form .inputs::placeholder {
  font-family: "Heebo", sans-serif;
  color: #6c7c93;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.contact form textarea.inputs {
  height: 140px;
  border: 1px solid #c6c7c9;
  padding: 15px;
}
.contact form button {
  margin-left: 6px;
  margin-bottom: 6px;
}
.contact .image {
  margin-left: 55px;
}

/*=========================================================
    20: About page
===========================================================*/

/*=========================================================
    20.1: menubar
===========================================================*/
.about-page .menubar {
  border-bottom: 0;
}
.about-page .menubar .right-part button {
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.about-page .menubar .right-part button i {
  font-size: 18px;
  line-height: 40px;
}
.modal-backdrop {
  z-index: 980;
}
.modal-title {
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--main-dark);
}
.modal-header .close {
  padding: 0;
  margin: 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: var(--primary-color);
  opacity: 1;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  text-shadow: none;
  font-size: 18px;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  color: #fff;
}
.modal-body form {
  width: 100%;
  position: relative;
}
.modal-body .input-search {
  width: 100%;
  height: 40px;
  border: 1px solid var(--main-blue);
  border-radius: 4px;
  padding: 0 20px;
  outline: none;
}
.modal-body .input-search::placeholder {
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--light-grey);
}
.modal-body button {
  height: 36px;
  width: 36px;
  border-radius: 3px;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  position: absolute;
  top: 2px;
  right: 2px;
}

/*=========================================================
    20.2: banner
===========================================================*/
.about-page .banner {
  background-position-y: 0 !important;
}
.about-page .banner h1 {
  text-transform: capitalize;
  font-size: 50px;
  line-height: 80px;
  padding: 0;
}
.about-page .banner .overlay {
  padding-top: 200px;
  padding-bottom: 150px;
  background: hsla(234, 69%, 51%, 0.4);
}
.about-page .banner .line {
  height: 100%;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.breadcrumb .breadcrumb-item {
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
}
.breadcrumb .breadcrumb-item a {
  color: #fff;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--main-blue);
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: hsla(0, 0%, 100%, 0.8);
}

/*=========================================================
    20.3: service
===========================================================*/
.about-page.service {
  background: transparent;
}

/*=========================================================
    21: team page
===========================================================*/
.team-page.team .reverse .image {
  margin-left: 25px;
}
.team-page.team .reverse .shape {
  left: auto;
  right: 30px;
}

/*=========================================================
    22: team details page
===========================================================*/
.team-detail .inner-shadow {
  -webkit-box-shadow: 19px 0 109px hsla(0, 0%, 0%, 0.06);
  box-shadow: 19px 0 109px hsla(0, 0%, 0%, 0.06);
}
.team-detail .team-inner img {
  width: 100%;
}
.team-detail .team-inner .fig-detail {
  padding: 30px;
  padding-top: 15px;
}
.team-detail .team-inner .fig-detail h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 48px;
  text-transform: capitalize;
  color: var(--main-dark);
}
.team-detail .team-inner .social {
  padding-top: 15px;
}
.team-detail .team-inner .social ul li {
  padding: 0 12px;
}
.team-detail .team-inner .social ul li a i {
  font-size: 16px;
  color: #626262;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.team-detail .team-inner .social ul li a:hover i {
  color: var(--main-blue);
}

.team-detail .team-inner .single-item .item-title {
  padding-bottom: 30px;
}
.team-detail .team-inner .single-item .item-title h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
  color: var(--main-dark);
  text-transform: capitalize;
  position: relative;
}
.team-detail .team-inner .single-item .item-title h4:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--main-blue);
}
.team-detail .team-inner .single-item ul li {
  padding-bottom: 5px;
}
.team-detail .team-inner .single-item ul li p {
  padding-left: 85px;
  position: relative;
}
.team-detail .team-inner .single-item ul li p span {
  position: absolute;
  top: 0;
  left: 0;
}
.team-detail .right-part {
  padding-left: 30px;
}
.table th,
.table td {
  padding: 0;
  border: 0;
}
.table thead th {
  border: 0;
  padding-bottom: 5px;
}
.table thead th p{
  text-transform: uppercase;
  font-weight: 500;
}
.table thead p {
  text-transform: capitalize;
}
.table tbody td {
  text-transform: capitalize;
  padding-top: 10px;
}
.table tbody td:first-child {
  text-transform: uppercase;
}
.team-detail .team-inner .single-item.personal-info {
  margin-top: 30px;
  padding: 30px;
}
/*=========================================================
    23: service details page
===========================================================*/
.service-detail .details-inner h3 {
  font-size: 22px;
  line-height: 28px;
  color: var(--main-dark);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding: 25px 0;
}
.service-detail .details-inner p {
  padding-bottom: 30px;
}
.service-detail .details-bottom {
  padding-top: 5px;
}
.service-detail .details-bottom img {
  float: left;
  padding-right: 34px;
  padding-bottom: 25px;
}
.service-detail .single-item {
  padding-bottom: 30px;
}
.service-detail .single-item .item-title {
  padding-bottom: 35px;
}
.service-detail .single-item.ab .item-title {
  padding-bottom: 25px;
}
.service-detail .single-item.time .item-title {
  padding-bottom: 10px;
}
.service-detail .single-item .item-title h4,
.service-detail .single-item h5 {
  font-size: 22px;
  line-height: 28px;
  color: var(--main-dark);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
}
.service-detail .single-item .all h4:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--main-blue);
}

.service-detail .single-item ul li {
  border-bottom: 1px solid #ddd;
}
.service-detail .single-item ul li p {
  line-height: 50px;
  text-transform: capitalize;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.service-detail .single-item ul li a:hover p {
  color: var(--main-blue);
}
.service-detail .time {
  padding: 15px;
  border: 6px solid #ddd;
  margin-bottom: 30px;
}
.service-detail .time ul li {
  display: flex;
  justify-content: space-between;
}
.service-detail .time a {
  display: inline-block;
  border-radius: 5px;
  line-height: 50px;
  padding: 0 25px;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #fff;
  background: var(--primary-color);
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.service-detail .time a i {
  padding-left: 15px;
}
.service-detail .time a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  background: var(--reverse-primary);
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: -1;
}
.service-detail .time a:hover:after {
  opacity: 1;
}
.service-detail .single-item h5 {
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 5px;
}
/*=========================================================
    24: blog details page
===========================================================*/

/* 24.1: blog detail */

.blog-detail .detail-inner h4,
.blog-detail .detail-inner h3 {
  font-size: 32px;
  line-height: 48px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: var(--main-dark);
  padding: 20px 0 10px;
}
.blog-detail .detail-inner h4 {
  font-size: 30px;
}
.blog-detail .detail-inner p {
  padding-bottom: 25px;
}
.blog-detail .blog-meta {
  margin-bottom: 25px;
}
.blog-detail .blog-meta .author {
  margin-right: 45px;
}
.blog-detail .blog-meta .author img {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
.blog-detail .blog-meta .meta-list li:not(:last-child) {
  margin-right: 40px;
}
.blog-detail .blog-meta .author p,
.blog-detail .blog-meta .meta-list li p {
  padding: 0;
}
.blog-detail .blog-meta .meta-list li i {
  color: #666;
  margin-right: 6px;
}
.blog-detail .detail-inner blockquote {
  padding: 30px;
  background: var(--primary-color);
  text-align: center;
}
.blog-detail .detail-inner blockquote p {
  padding-bottom: 0;
}
.blog-detail .detail-inner blockquote i {
  font-size: 60px;
  margin-bottom: 25px;
  color: #fff;
}

.blog-detail .detail-inner blockquote p {
  color: #fff;
}
.blog-detail .detail-inner .share-blog {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  margin-top: 50px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  padding: 24px 0 19px;
}
.blog-detail .detail-inner .share-blog .media-body {
  display: inline-block;
  vertical-align: middle;
}
.blog-detail .detail-inner .share-blog span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--main-dark);
}
.blog-detail .detail-inner .share-blog .social li {
  padding: 0 15px;
}
.blog-detail .detail-inner .share-blog .social li a i {
  color: var(--main-dark);
  font-size: 20px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.blog-detail .detail-inner .share-blog .social li a:hover i {
  color: var(--main-blue);
}

.blog-detail .detail-inner .comments li {
  position: relative;
}
.blog-detail .detail-inner .comments li.single-comment li.single-comment {
  margin-left: 60px;
}
.blog-detail .detail-inner .comments li.single-comment {
  margin: 35px 0;
}
.blog-detail .detail-inner .comments li img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-detail .detail-inner .comments li .comment-body {
  padding-left: 100px;
}
.blog-detail .detail-inner .comments li .comment-body {
  padding-top: 5px;
  padding-bottom: 0;
}
.blog-detail .detail-inner .comments li .comment-author li {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--main-dark);
  text-transform: capitalize;
}
.blog-detail
  .detail-inner
  .comments
  li
  .comment-author
  li:not(:last-child):after {
  content: "|";
  position: relative;
  margin: 0 12px;
  color: var(--main-blue);
}
.blog-detail .detail-inner .comments li .comment-author li:last-child {
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Heebo", sans-serif;
  color: var(--light-grey);
}
.blog-detail .detail-inner .comments li .comment-author a {
  display: inline-block;
  color: #666;
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.blog-detail .detail-inner .comments li .comment-author a:hover,
.blog-detail .detail-inner .comments li .comment-author a i {
  color: var(--main-blue);
}
.blog-detail .detail-inner .leave-reply h3 {
  padding-bottom: 40px;
}
.blog-detail .detail-inner .leave-reply .input-reply {
  width: 100%;
  height: 44px;
  padding-left: 20px;
  background: #f8f8f8;
  border: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
}
.blog-detail .detail-inner .leave-reply .input-reply:hover,
.blog-detail .detail-inner .leave-reply .input-reply:focus {
  border-color: var(--main-blue);
}
.blog-detail .detail-inner .leave-reply textarea.input-reply {
  height: 120px;
  padding-top: 10px;
}
.blog-detail .detail-inner .leave-reply .input-reply::placeholder {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #a7a7a7;
}

/* 24.2: blog sidebar */

.blog-detail .blog-sidebar .single-item {
  padding: 22px;
  border-radius: 8px;
}
.blog-detail .blog-sidebar .single-item form {
  position: relative;
}
.blog-detail .blog-sidebar .single-item label {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
.blog-detail .blog-sidebar .single-item input {
  border: 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 45px;
  padding-left: 20px;
  width: 100%;
  outline: none;
}
.blog-detail .blog-sidebar .single-item input::placeholder {
  color: #666;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.blog-detail .blog-sidebar .single-item form button {
  position: absolute;
  right: 0;
  padding: 0 20px;
  height: 45px;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: var(--primary-color);
  color: #fff;
  z-index: 1;
}
.blog-detail .blog-sidebar .single-item form button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  background: var(--reverse-primary);
  z-index: -1;
  opacity: 0;
}
.blog-detail .blog-sidebar .single-item form button:hover:before {
  opacity: 1;
}

.blog-detail .blog-sidebar .item-title h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--main-dark);
  margin-bottom: 20px;
  width: fit-content;
  position: relative;
}
.blog-detail .blog-sidebar .item-title h5:after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--main-blue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
}
.blog-detail .blog-sidebar .recent-post {
  padding: 25px 30px;
}
.blog-detail .blog-sidebar .recent-post ul li:not(:last-child) {
  margin-bottom: 20px;
}
.blog-detail .blog-sidebar .recent-post ul li img {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  margin-right: 20px;
}
.blog-detail .blog-sidebar .recent-post ul li span {
  display: block;
  text-transform: uppercase;
  font-family: "Heebo", sans-serif;
  font-size: 12px;
  line-height: 24px;
  color: var(--light-grey);
}
.blog-detail .blog-sidebar .recent-post ul li a {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--main-dark);
}
.blog-detail .blog-sidebar .recent-post ul li a:hover {
  color: var(--main-blue);
}
.blog-detail .blog-sidebar .category ul li a {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--main-dark);
  text-transform: capitalize;
}
.blog-detail .blog-sidebar .category ul li:not(:last-child) {
  padding-bottom: 20px;
}
.blog-detail .blog-sidebar .category ul li a i {
  margin-right: 10px;
}
.blog-detail .blog-sidebar .category ul li a:hover {
  color: var(--main-blue);
}
.blog-detail .blog-sidebar .tags .tag-items a {
  display: inline-block;
  font-size: 14px;
  line-height: 32px;
  color: var(--light-grey);
  padding: 0 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  border-radius: 5px;
  background: transparent;
  text-transform: capitalize;
  margin-right: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.blog-detail .blog-sidebar .tags .tag-items a:after {
  content: "";
  height: 100%;
  width: 100%;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: var(--primary-color);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: -1;
}
.blog-detail .blog-sidebar .tags .tag-items a:hover {
  color: #fff;
}
.blog-detail .blog-sidebar .tags .tag-items a:hover:after {
  opacity: 1;
}

/*=========================================================
    25: contact page
===========================================================*/
.contact-page .contact .right-part {
  padding: 0 70px;
}
.contact-page .contact ul li {
  padding-top: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.contact-page .contact ul li:first-child {
  padding-top: 0;
}
.contact-page .contact ul li:last-child {
  padding-bottom: 0;
  border: 0;
}
.contact-page .contact ul li .icon {
  padding-right: 25px;
}
.contact-page .contact ul li .icon i {
  font-size: 30px;
  color: var(--main-dark);
}
.contact-page .contact .media h4 {
  text-transform: capitalize;
  color: var(--main-dark);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding-bottom: 5px;
}
.contact-page .contact .media p {
  font-weight: 600;
}

.contact-page .location #map {
  width: 100%;
  height: 560px;
}

/*=========================================================
    26: error page
===========================================================*/
footer.error-page {
  margin-top: 0;
}
.error-page .banner .overlay {
  background: hsla(0, 0%, 0%, 0.3);
}
.error-page .banner h1 {
  font-size: 220px;
  line-height: 200px;
}
.error-page .banner h3 {
  color: #fff;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding-top: 30px;
}
.error-page .banner p {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding: 0 60px;
  padding-top: 10px;
  padding-bottom: 30px;
}
