* {
  -webkit-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease;
  outline: none;
}

/* :: Body */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #9b9b9b;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
::-moz-selection {
  background-color: #f71735;
  color: #fff;
  text-shadow: none;
}
::selection {
  background-color: #f71735;
  color: #fff;
  text-shadow: none;
}
a,
a:hover,
a:focus,
button:focus {
  text-decoration: none;
  color: #fff;
}

/* :: Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}
p {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  line-height: 25px;
}

/* :: Display Table */
.display-table {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
  min-height: 100%;
  height: 100vh;
}

/* :: My Classes */
.py-100 {
  padding: 100px 0;
}
.py-100-70 {
  padding: 100px 0 70px 0;
}
.padding-0 {
  padding: 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(11 12 38 / 0.5);
}
.btn-1 {
  text-transform: capitalize;
  position: relative;
  text-align: center;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  min-width: 180px;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  letter-spacing: 1px;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: #f71735;
  display: inline-block;
  cursor: pointer;
}
.btn-1:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0b0c26;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.btn-1:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.btn-2 {
  color: #f71735;
  background-color: #fff;
}
.btn-2:after {
  background-color: #f71735;
}
.btn-3 {
  color: #fff;
  background-color: #0b0c26;
}
.btn-3:after {
  background-color: #f71735;
}
.btn-4 {
  color: #f71735;
  background-color: #fff;
}
.btn-4:after {
  background-color: #0b0c26;
}
.sec-title {
  margin-bottom: 50px;
}
.sec-title h2 {
  color: #f71735;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 600;
}
.sec-title h3 {
  color: #0b0c26;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.sec-title p {
  text-transform: capitalize;
  font-weight: 500;
  line-height: 26px;
  font-size: 15px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}

/* :: Loading */
.loading {
  position: fixed;
  background-color: #fff;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
}
.loading .loading-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #f71735;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #f71735 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}
@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* :: Top Navbar */
.top-nav-bar {
  border-bottom: 1px solid #e9e9e9;
}
.top-nav-bar .top-nav-bar-box ul li {
  display: inline-block;
}
.top-nav-bar .top-nav-bar-box ul.info li {
  font-size: 13px;
  padding: 14px 20px;
  border-left: 1px solid #e9e9e9;
}
.top-nav-bar .top-nav-bar-box ul.info li:first-of-type {
  padding-left: 0;
  border-left: none;
}
.top-nav-bar .top-nav-bar-box ul.info li:last-of-type {
  padding-right: 0;
}
.top-nav-bar .top-nav-bar-box ul li span {
  color: #f71735;
}
.top-nav-bar .top-nav-bar-box ul li a {
  color: #0b0c26;
  font-size: 14px;
  display: inline-block;
  margin-left: 15px;
}
.top-nav-bar .top-nav-bar-box ul li a:hover {
  color: #f71735;
}

/* :: Navbar */
.nav-bar.active {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);

  top: 0;
  z-index: 1000;
  width: 100%;
}
.nav-bar .logo .logo-nav {
  display: block;
  padding: 28px 0;
}
.nav-bar .logo .logo-nav img {
  width: 60px;
}
.nav-bar .nav-bar-link > ul > li {
  display: inline-block;
  position: relative;
}
.nav-bar .nav-bar-link ul li a {
  color: #0b0c26;
  font-size: 21px;
  font-weight: 600;
  padding: 0px 0;
  margin: 0 43px 0 0px;
  position: relative;
  display: block;
  text-transform: capitalize;
}
.nav-bar .nav-bar-link ul li a:before {
  content: '';
  background-color: #f71735;
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-bar .nav-bar-link ul li a:hover:before,
.nav-bar .nav-bar-link ul li .color-active:before {
  width: 100%;
}
.nav-bar.active .nav-bar-link ul li a {
  color: #0b0c26;
}
.nav-bar.active .nav-bar-link > ul ul li a {
  color: #9b9b9b;
}
.nav-bar .nav-bar-link ul li a:hover,
.nav-bar .nav-bar-link ul li a.color-active,
.nav-bar.active .nav-bar-link > ul ul li:hover a {
  color: #f71735;
}
.nav-bar .nav-bar-link > ul ul {
  position: absolute;
  z-index: 2;
  background-color: #fff;
  padding: 28px 0;
  top: 100%;
  left: 0;
  min-width: 240px;
  -webkit-box-shadow: 0 8px 80px rgba(40, 40, 40, 0.08);
  box-shadow: 0 8px 80px rgba(40, 40, 40, 0.08);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
}
.nav-bar .nav-bar-link > ul li:hover > ul {
  -webkit-transform: translateY(00px);
  -ms-transform: translateY(00px);
  transform: translateY(00px);
  opacity: 1;
  visibility: visible;
}
.nav-bar .nav-bar-link > ul ul li {
  position: relative;
  padding: 0 30px 0 40px;
}
.nav-bar .nav-bar-link > ul ul li a {
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1;
  padding: 8px 0;
  position: relative;
  font-weight: normal;
  text-transform: capitalize;
  display: inline-block;
}
.nav-bar .nav-bar-link > ul ul li:hover a {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.nav-bar .nav-bar-link > ul ul ul {
  left: 100%;
  top: 0;
}
.nav-bar .nav-bar-link > ul ul ul li a {
  -webkit-transform: translateX(0px) !important;
  -ms-transform: translateX(0px) !important;
  transform: translateX(0px) !important;
  color: #9b9b9b !important;
}
.nav-bar .nav-bar-link > ul ul ul li:hover a {
  -webkit-transform: translateX(10px) !important;
  -ms-transform: translateX(10px) !important;
  transform: translateX(10px) !important;
  color: #f71735 !important;
}
.nav-bar .nav-bar-link .level-1:last-of-type li a {
  padding-right: 0;
}
.nav-bar .nav-bar-link .level-1:last-of-type li:last-of-type a {
  margin: 0;
}
.nav-bar .icon li {
  display: inline-block;
}
.nav-bar .icon li .icon-item {
  color: #0b0c26;
  padding: 40px 0;
  font-size: 16px;
  margin: 0 20px 0 0px;
  position: relative;
  display: block;
}
.nav-bar .icon li:last-of-type .icon-item {
  margin-right: 0;
}
.nav-bar .icon li:hover .icon-item i {
  color: #f71735;
}
.nav-bar .icon li.cart .cart-popup {
  background-color: #fff;
  padding: 30px;
  position: absolute;
  right: 20px;
  z-index: 999;
  width: 300px;
  -webkit-box-shadow: 0 8px 80px rgba(40, 40, 40, 0.08);
  box-shadow: 0 8px 80px rgba(40, 40, 40, 0.08);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
}
.nav-bar .icon li.cart:hover .cart-popup {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.nav-bar .icon li.cart .cart-popup .item {
  position: relative;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.nav-bar .icon li.cart .cart-popup .item img {
  width: 50px;
  height: 50px;
  float: left;
}
.nav-bar .icon li.cart .cart-popup .item .item-content {
  padding-left: 65px;
  padding-right: 25px;
}
.nav-bar .icon li.cart .cart-popup .item .item-content div {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 4px;
  color: #0b0c26;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}
.nav-bar .icon li.cart .cart-popup .item .item-content span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
.nav-bar .icon li.cart .cart-popup .item .delete-item {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #0b0c26;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.nav-bar .icon li.cart .cart-popup .item .delete-item:hover {
  background-color: #f71735;
}
.nav-bar .icon li.cart .cart-popup .subtotal span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
.nav-bar .icon li.cart .cart-popup .subtotal span:last-of-type {
  float: right;
  color: #f71735;
}
.nav-bar .icon li.cart .cart-popup .button-cart {
  margin-top: 20px;
}
.nav-bar .icon li.cart .cart-popup .button-cart button {
  outline: none;
  padding: 0 22px;
}
.nav-bar .icon li.cart .cart-popup .button-cart button:first-of-type {
  margin-right: 10px;
}
.nav-bar .icon li.cart .cart-popup .button-cart a {
  min-width: 110px;
  height: 45px;
  line-height: 45px;
}
.nav-bar .icon li.cart .cart-popup .button-cart a:first-of-type {
  margin-right: 16px;
}

/* :: Search Box */
.search-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(11 12 38 / 0.9);
  z-index: 1040;
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
  display: none;
}
.search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 85%;
}
.search-box form input {
  background-color: transparent;
  width: 100%;
  padding: 10px 0;
  font-size: 35px;
  color: #fff;
  border: 0;
  border-bottom: 1px solid #fff;
}
.search-box form input:focus {
  border-bottom: 1px solid #f71735;
}
.search-box form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 65px;
  background-color: transparent;
  text-align: center;
  font-size: 25px;
  color: #f71735;
  border: 0;
  outline: none;
}
.search-box .close-search {
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}
.search-box .close-search:hover {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  color: #f71735;
}

/* :: Menu Box */
.menu-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 0.8);
  z-index: 1040;
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
  display: none;
}
.menu-box .inner-menu {
  width: 400px;
  padding: 100px 50px;
  position: absolute;
  right: -402px;
  height: 100%;
  background-color: #fff;
  overflow-y: scroll;
}
.menu-box.active .inner-menu {
  right: 0;
  -webkit-box-shadow: 0px 0px 30px rgb(0 0 0 / 0.2);
  box-shadow: 0px 0px 30px rgb(0 0 0 / 0.2);
}
.menu-box .inner-menu .website-info {
  margin-bottom: 30px;
}
.menu-box .inner-menu .website-info .logo {
  display: block;
  margin-bottom: 20px;
}
.menu-box .inner-menu .website-info p {
  text-transform: capitalize;
  font-size: 14px;
}
.menu-box .inner-menu .contact-info h4,
.menu-box .inner-menu .follow-us h4 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #0b0c26;
}
.menu-box .inner-menu .contact-info .contact-box {
  margin-bottom: 30px;
}
.menu-box .inner-menu .contact-info .contact-box i {
  color: #f71735;
  font-size: 24px;
  float: left;
  line-height: 1.4;
}
.menu-box .inner-menu .contact-info .contact-box .box {
  padding-left: 40px;
}
.menu-box .inner-menu .contact-info .contact-box .box p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 2;
  position: relative;
}
.menu-box .inner-menu .follow-us .icon-follow li {
  display: inline-block;
}
.menu-box .inner-menu .follow-us .icon-follow li a {
  background-color: #f1f1f1;
  display: inline-block;
  color: #f71735;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  margin-right: 12px;
}
.menu-box .inner-menu .follow-us .icon-follow li:hover a {
  background-color: #f71735;
  color: #fff;
}
.exit-menu-box {
  font-size: 13px;
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: #f71735;
  width: 35px;
  color: #fff;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.exit-menu-box:hover {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* :: Header */
.header .header-owl .sec-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.banner .handline {
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
  font-size: 58px;
  margin-bottom: 30px;
  color: #fff;
}
.banner .about-site {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}
.banner .buttons a:first-of-type {
  margin-right: 20px;
}
.header-owl.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  line-height: 1;
  width: 100%;
}
.header-owl.owl-theme .owl-nav [class*='owl-'] {
  margin: 0;
}
.header-owl.owl-theme .owl-nav [class*='owl-'] i {
  font-size: 50px;
  color: rgb(255, 255, 255, 0.5);
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.header-owl.owl-theme .owl-nav [class*='owl-'] i:hover {
  color: #f71735;
}
.header-owl.owl-theme .owl-nav [class*='owl-'] i.flaticon-left-arrow {
  left: 10px;
}
.header-owl.owl-theme .owl-nav [class*='owl-'] i.flaticon-right-arrow {
  right: 10px;
}
.header-owl.owl-theme:hover .owl-nav [class*='owl-'] i {
  opacity: 1;
  visibility: visible;
}
.header-owl.owl-theme .owl-dots {
  margin: 0;
  line-height: 1;
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header-owl.owl-theme .owl-dots .owl-dot {
  outline: none;
}
.header-owl.owl-theme .owl-dots .owl-dot span {
  margin: 0 5px;
  width: 20px;
  height: 6px;
  background-color: #fff;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-owl.owl-theme .owl-dots .owl-dot.active span,
.header-owl.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #f71735;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* :: Fancybox */
.fancybox .fancybox-item,
.services .services-item {
  margin-bottom: 30px;
}
.services-2 .services-item {
  padding: 40px;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
}
.fancybox-2 .fancybox-item {
  border-bottom: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
  padding: 45px;
  margin-bottom: 0;
}
.fancybox .fancybox-item i,
.services .services-item i {
  color: #0b0c26;
  line-height: 1;
  font-size: 45px;
  margin-bottom: 30px;
  display: inline-block;
}
.fancybox .fancybox-item:hover i,
.services .services-item:hover i {
  color: #f71735;
}
.fancybox .fancybox-item h4,
.services .services-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #0b0c26;
}
.fancybox .fancybox-item p,
.services .services-item p {
  margin-bottom: 0;
}

/* :: About */
.about {
  padding-bottom: 100px;
}
.about .text-box .sec-title h3 {
  margin-bottom: 25px;
}
.about .text-box .sec-title {
  margin-bottom: 20px;
}
.about .text-box ul,
.benfits {
  overflow: hidden;
}
.about .text-box ul li,
.benfits li {
  width: 50%;
  float: left;
  padding-right: 10px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: capitalize;
  color: #687076;
}
.about .text-box ul li:hover,
.benfits li:hover {
  color: #f71735;
}
.about .text-box ul li:last-of-type,
.benfits li:last-of-type {
  margin-bottom: 0;
}
.about .text-box ul li i,
.benfits li i {
  background-color: #f71735;
  color: #fff;
  width: 0;
  height: 15px;
  font-size: 10px;
  text-align: center;
  line-height: 15px;
  border-radius: 50%;
  margin-right: 0;
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.about .text-box ul li:hover i,
.benfits li:hover i {
  width: 15px;
  margin-right: 8px;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.about .text-box a.btn-1 {
  margin-top: 30px;
  display: block;
  width: 180px;
}
.about .one {
  margin-top: 28px;
}
.about-2 .img-box {
  position: relative;
  padding-bottom: 40px;
}
.about .img-box img {
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 73px 0 rgb(11 12 38 / 0.07);
  box-shadow: 0 1px 73px 0 rgb(11 12 38 / 0.07);
}
.about-2 .img-box .statistic-item {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  background-color: #f71735;
  padding: 30px;
  border-radius: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.about-2 .img-box .statistic-item i,
.about-2 .img-box .statistic-item .content .counter,
.about-2 .img-box .statistic-item .content .counter-name {
  color: #fff;
}
.about-2 .video-presentation {
  margin-top: 0;
}
.about-2 .faq .faq-box,
.faq.faq-page .faq-box,
.single-services-box .faq .faq-box {
  border: 1px solid #e9e9e9;
  margin-bottom: 20px;
}
.about-2 .faq .faq-box .question-header .click,
.about-2 .faq .faq-box .question-header .click i,
.faq.faq-page .faq-box .question-header .click,
.faq.faq-page .faq-box .question-header .click i,
.single-services-box .faq .faq-box .question-header .click,
.single-services-box .faq .faq-box .question-header .click i {
  color: #0b0c26;
}
.about-2 .faq .faq-box .answer p,
.faq.faq-page .faq-box .answer p,
.single-services-box .faq .faq-box .answer p {
  color: #9b9b9b;
  border-top: 1px solid #e9e9e9;
}

/* :: Services */
.services {
  background: #f9f9f9 url(../images/01_pattern.png);
  position: relative;
  background-position: center;
}
.services .services-item .more {
  font-size: 14px;
  color: #f71735;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 20px;
}
.services .services-item .more span {
  background-color: #f71735;
  color: #fff;
  width: 0;
  height: 15px;
  font-size: 10px;
  text-align: center;
  line-height: 15px;
  border-radius: 50%;
  margin-right: 0;
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.services .services-item .more:hover span {
  width: 15px;
  margin-right: 8px;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/* :: Provide */
.provide {
  position: relative;
  padding-top: 100px;
}
.bg-section {
  background-image: url(../images/provide/01_provide.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 75%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.bg-section .overlay {
  background-color: rgb(11 12 38 / 0.8);
}
.provide .sec-title h3,
.faq-quote .sec-title h3 {
  color: #fff;
}
.sec-title-2 h3 {
  margin-bottom: 25px;
}
.provide .sec-title p,
.faq-quote .sec-title p {
  color: #f9f9f9;
}
.provide .provide-item {
  margin-bottom: 30px;
}
.provide .provide-item i {
  color: #fff;
  line-height: 1;
  font-size: 40px;
  float: left;
}
.provide .provide-item .content {
  padding-left: 60px;
}
.provide .provide-item .content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #fff;
}
.provide .provide-item .content p {
  margin-bottom: 0;
  color: #fff;
}

/* :: Video Presentation */
.video-presentation {
  position: relative;
  background-image: url(../images/video-presentation/01_video-presentation.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 70px;
  width: 100%;
  height: 450px;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 20px rgb(11 12 38 / 0.2);
  box-shadow: 0px 5px 20px rgb(11 12 38 / 0.2);
}
.video-presentation .presentation-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.video-presentation .presentation-box .pulse {
  background-color: #f71735;
  width: 60px;
  height: 60px;
  font-size: 14px;
  line-height: 62px;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
  display: block;
  -webkit-animation: video-pulse-presentation 2s linear infinite;
  animation: video-pulse-presentation 2s linear infinite;
}
@-webkit-keyframes video-pulse-presentation {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 23, 53, 0.7),
      0 0 0 0 rgba(247, 23, 53, 0.7);
    box-shadow: 0 0 0 0 rgba(247, 23, 53, 0.7), 0 0 0 0 rgba(247, 23, 53, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 23, 53, 0),
      0 0 0 0 rgba(247, 23, 53, 0.7);
    box-shadow: 0 0 0 0 rgba(247, 23, 53, 0), 0 0 0 0 rgba(247, 23, 53, 0.7);
  }
  80% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 23, 53, 0),
      0 0 0 30px rgba(247, 23, 53, 0);
    box-shadow: 0 0 0 0 rgba(247, 23, 53, 0), 0 0 0 30px rgba(247, 23, 53, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 23, 53, 0),
      0 0 0 30px rgba(247, 23, 53, 0);
    box-shadow: 0 0 0 0 rgba(247, 23, 53, 0), 0 0 0 30px rgba(247, 23, 53, 0);
  }
}
@keyframes video-pulse-presentation {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 23, 53, 0.7),
      0 0 0 0 rgba(247, 23, 53, 0.7);
    box-shadow: 0 0 0 0 rgba(247, 23, 53, 0.7), 0 0 0 0 rgba(247, 23, 53, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 23, 53, 0),
      0 0 0 0 rgba(247, 23, 53, 0.7);
    box-shadow: 0 0 0 0 rgba(247, 23, 53, 0), 0 0 0 0 rgba(247, 23, 53, 0.7);
  }
  80% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 23, 53, 0),
      0 0 0 30px rgba(247, 23, 53, 0);
    box-shadow: 0 0 0 0 rgba(247, 23, 53, 0), 0 0 0 30px rgba(247, 23, 53, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 23, 53, 0),
      0 0 0 30px rgba(247, 23, 53, 0);
    box-shadow: 0 0 0 0 rgba(247, 23, 53, 0), 0 0 0 30px rgba(247, 23, 53, 0);
  }
}
.video-presentation .presentation-box .pulse i {
  color: #fff;
  font-size: 14px;
}

/* :: Statistic */
.statistic {
  padding: 60px 0 30px 0;
  border-bottom: 1px solid #e9e9e9;
}
.statistic-item {
  margin-bottom: 30px;
  overflow: hidden;
}
.statistic-item i {
  font-size: 50px;
  line-height: 50px;
  float: left;
  color: #0b0c26;
}
.statistic-item:hover i {
  color: #f71735;
}
.statistic-item .content {
  padding-left: 65px;
}
.statistic-item .content .counter {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  color: #0b0c26;
  font-family: 'Montserrat', sans-serif;
}
.statistic-item .content .counter-name {
  color: #0b0c26;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* :: Case Study */
.case-study-2 {
  background-color: #f9f9f9;
}
.case-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.case-study-2 .case-item {
  margin-bottom: 30px;
}
.case-item:hover img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  transition: all 2s ease-out;
}
.case-item .text-box {
  position: absolute;
  background: rgb(11 12 38 / 0.6);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.case-item:hover .text-box {
  opacity: 1;
  visibility: visible;
}
.case-item .text-box .tags {
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
  -o-transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
  transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
}
.case-item:hover .text-box .tags {
  opacity: 1;
  visibility: visible;
}
.case-item .text-box .tags li {
  display: inline-block;
}
.case-item .text-box .tags li a {
  display: inline-block;
  font-size: 13px;
  text-transform: capitalize;
}
.case-item .text-box .tags li:hover a,
.case-item .text-box .content-text h4:hover,
.case-item .text-box .content-text h4:hover a,
.case-item .text-box .content-text a.more:hover {
  color: #f71735;
}
.case-item .text-box .content-text h4 {
  font-size: 21px;
  line-height: 1.1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
  -o-transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
  transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
}
.case-item:hover .text-box .content-text h4 {
  opacity: 1;
  visibility: visible;
}
.case-item .text-box .content-text h4 a {
  display: inline-block;
}
.case-item .text-box .content-text p {
  color: #f9f9f9;
  margin-bottom: 0;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
  -o-transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
  transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
}
.case-item:hover .text-box .content-text p {
  opacity: 1;
  visibility: visible;
}
.case-item .text-box .content-text a.more {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
  -o-transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
  transition-timing-function: cubic-bezier(0.37, 0.04, 0.76, 0.99);
}
.case-item:hover .text-box .content-text a.more {
  opacity: 1;
  visibility: visible;
}
.case-item .text-box .content-text a.more span {
  background-color: #f71735;
  color: #fff;
  width: 0;
  height: 15px;
  font-size: 10px;
  text-align: center;
  line-height: 15px;
  border-radius: 50%;
  margin-right: 0;
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.case-item .text-box .content-text a.more:hover span {
  width: 15px;
  margin-right: 8px;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.owl-case-study.owl-theme .owl-nav,
.owl-testimonial.owl-theme .owl-nav {
  display: none;
}
.owl-case-study.owl-theme .owl-dots,
.owl-testimonial.owl-theme .owl-dots {
  margin: 0;
  line-height: 1;
  margin-top: 30px;
}
.owl-case-study.owl-theme .owl-dots .owl-dot,
.owl-testimonial.owl-theme .owl-dots .owl-dot {
  outline: none;
}
.owl-case-study.owl-theme .owl-dots .owl-dot span,
.owl-testimonial.owl-theme .owl-dots .owl-dot span {
  margin: 0 5px;
  width: 20px;
  height: 6px;
  background-color: #0b0c26;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-case-study.owl-theme .owl-dots .owl-dot.active span,
.owl-case-study.owl-theme .owl-dots .owl-dot:hover span,
.owl-testimonial.owl-theme .owl-dots .owl-dot.active span,
.owl-testimonial.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #f71735;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.case-study-list .list-name-case {
  margin-bottom: 45px;
  display: inline-block;
}
.case-study-list .list-name-case li {
  display: inline-block;
  font-size: 13px;
  color: #0b0c26;
  text-transform: capitalize;
  padding: 0 20px;
  line-height: 40px;
  border-radius: 3px;
  letter-spacing: 0.25px;
  position: relative;
  text-align: center;
  font-weight: 600;
  border: 1px solid #e9e9e9;
  margin: 0 8px 5px 0;
  cursor: pointer;
}
.case-study-list .list-name-case li.active {
  background-color: #f71735;
  color: #fff;
  border: 1px solid #f71735;
}
.case-study-list .list-name-case li:last-of-type {
  margin: 0;
}
.mix {
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
}

/* :: Team */
.team {
  background-color: #f9f9f9;
}
.team-about {
  background-color: transparent;
}
.team .team-item {
  margin-bottom: 30px;
  position: relative;
}
.team .team-item .img-box {
  overflow: hidden;
  border-radius: 3px;
}
.team .team-item:hover .img-box img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  transition: all 2s ease-out;
}
.team .team-item .text-box {
  padding: 0 15px;
}
.team .team-item .text-box h5 {
  color: #0b0c26;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 25px;
}
.team .team-item .text-box span {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #f71735;
  display: inline-block;
}
.team .team-item .text-box ul li {
  display: inline-block;
  margin-right: 15px;
}
.team .team-item .text-box ul li:last-of-type {
  margin-right: 0;
}
.team .team-item .text-box ul li a {
  color: #0b0c26;
  font-size: 16px;
}
.team .team-item .text-box ul li:hover a {
  color: #f71735;
}

/* :: FAQs And Quote */
.faq-quote {
  position: relative;
  padding-top: 100px;
  background-color: #f9f9f9;
}
.faq-quote-services {
  background-color: transparent;
}
.faq-quote .bg-section {
  height: 80%;
}

/* :: FAQs */
.faq .sec-title h3 {
  margin-bottom: 25px;
}
.faq .faq-box {
  padding: 18px;
  margin-bottom: 25px;
  border-radius: 3px;
  border: 1px solid #fff;
}
.faq .faq-box:last-of-type {
  margin-bottom: 0;
}
.faq .faq-box .question-header {
  line-height: 1;
}
.faq .faq-box .question-header .click {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 25px;
  text-transform: capitalize;
  position: relative;
  width: 100%;
  text-align: left;
  padding-right: 20px;
}
.faq .faq-box .question-header .click i {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 20px;
  text-align: center;
}
.faq .faq-box .question-header .click[aria-expanded='true'] i {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.faq .faq-box .answer p {
  margin-top: 18px;
  margin-bottom: 0;
  color: #f9f9f9;
  border-top: 1px solid #f9f9f9;
  padding-top: 18px;
  letter-spacing: 0.3px;
}

/* :: Quote */
.quote {
  padding: 30px;
  background-color: #fff;
  border-radius: 3px;
}
.quote .sec-title {
  margin-bottom: 30px;
}
.quote .sec-title h3 {
  color: #0b0c26;
}
.quote .quote-item {
  background-color: #f9f9f9;
  margin-bottom: 30px;
  padding: 15px;
  position: relative;
  border-radius: 3px;
}
.quote .quote-item:last-of-type {
  margin-bottom: 0;
  padding: 0;
  background-color: transparent;
}
.quote .quote-item label {
  display: block;
  line-height: 1.1;
  margin-bottom: 0px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #343434;
}
.quote .quote-item input,
.quote .quote-item textarea {
  width: 100%;
  color: #9b9b9b;
  background-color: transparent;
  font-size: 13px;
  padding: 10px 0 0 0;
  text-transform: capitalize;
  letter-spacing: 0.25px;
  position: relative;
  border: 0px solid transparent;
  font-family: 'Raleway', sans-serif;
}
.quote .quote-item textarea {
  height: 115px;
  display: block;
}
.quote .quote-item i {
  position: absolute;
  color: #f71735;
  top: 15px;
  right: 15px;
}

/* :: Contact */
.contact .quote {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
.contact .quote .quote-item:last-of-type {
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f9f9f9;
}

/* :: Pricing */
.pricing {
  margin-top: 100px;
}
.pricing-2 {
  margin-top: 0px;
}
.pricing-item {
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 73px 0 rgb(11 12 38 / 0.07);
  box-shadow: 0 1px 73px 0 rgb(11 12 38 / 0.07);
  padding: 50px 40px;
  border-radius: 3px;
}
.pricing-item .item-top {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e9e9e9;
}
.pricing-item .item-top h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 50px;
  text-transform: capitalize;
  color: #0b0c26;
}
.pricing-item.active .item-top h4 {
  color: #f71735;
}
.pricing-item .item-top .price-number h5 {
  color: #0b0c26;
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  position: relative;
  padding-left: 18px;
}
.pricing-item .item-top .price-number h5:before {
  content: '$';
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
}
.pricing-item .item-top .price-number span {
  font-size: 13px;
  font-weight: 500;
  color: #0b0c26;
  text-transform: capitalize;
}
.pricing-item .item-top p {
  margin: 12px 0 0 0;
}
.pricing-item .item-last ul li {
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.pricing-item .item-last ul li:last-of-type {
  margin-bottom: 0;
}
.pricing-item .item-last ul li:hover {
  color: #f71735;
}
.pricing-item .item-last ul li i {
  font-size: 11px;
  line-height: 1.5;
  margin-right: 25px;
  color: #f71735;
}
.pricing-item .item-last a {
  width: 100%;
  margin-top: 50px;
}

/* :: Testimonial */
.testimonial {
  background-color: #f9f9f9;
  padding: 70px 0 100px 0;
}
.testimonial-2,
.testimonial-about {
  padding: 100px 0;
}
.icon-quote {
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.icon-quote i {
  font-size: 42px;
  line-height: 1;
  color: #f71735;
}
.owl-testimonial .testimonial-item .text-box {
  position: relative;
  font-size: 30px;
  line-height: 45px;
  font-weight: 600;
  color: #0b0c26;
  font-family: 'Montserrat', sans-serif;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.owl-testimonial .testimonial-item .text-box:after,
.owl-testimonial .testimonial-item .text-box:before {
  content: ' " ';
}
.owl-testimonial .testimonial-item .item-name img {
  width: 70px;
  border-radius: 50%;
  margin: auto;
  border: 3px solid #f71735;
  padding: 4px;
}
.owl-testimonial .testimonial-item .item-name h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 8px;
  text-transform: capitalize;
  color: #0b0c26;
  text-align: center;
}
.owl-testimonial .testimonial-item .item-name span {
  display: block;
  line-height: 15px;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}

/* :: Map */
.map .map-box iframe {
  border: 0;
  background-color: #fff;
  width: 100%;
  height: 550px;
  display: block;
}

/* :: Blog */
.blog-services {
  padding-top: 70px;
}
.blog-item {
  margin-bottom: 30px;
}
.blog-item .img-box {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.blog-item:hover .img-box .open-post img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 1.5s ease-in-out;
  -o-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}
.blog-item .img-box ul {
  position: absolute;
  bottom: 0;
  left: 30px;
  background-color: #f71735;
  padding: 2px 15px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.blog-item .img-box ul li {
  display: inline-block;
}
.blog-item .img-box ul li a {
  font-size: 13px;
  text-transform: capitalize;
}
.blog-item .img-box ul li:hover a {
  color: #0b0c26;
}
.blog-item .text-box {
  padding: 30px 0px 0px 30px;
}
.blog-item .text-box .title-blog {
  display: block;
}
.blog-item .text-box h5 {
  position: relative;
  font-size: 21px;
  line-height: 29px;
  margin: 15px 0;
  font-weight: 600;
  color: #0b0c26;
}
.blog-item .text-box .title-blog:hover,
.blog-item .text-box h5:hover {
  color: #f71735;
}

.blog-item .text-box .link {
  font-size: 14px;
  color: #f71735;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
}
.blog-item .text-box .link span {
  background-color: #f71735;
  color: #fff;
  width: 0;
  height: 15px;
  font-size: 10px;
  text-align: center;
  line-height: 15px;
  border-radius: 50%;
  margin-right: 0;
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.blog-item .text-box .link:hover span {
  width: 15px;
  margin-right: 8px;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/* :: Footer */
.footer {
  background-color: #0b0c26;
  padding-top: 100px;
}
.footer .logo,
.footer .links,
.footer .newsletter {
  margin-bottom: 30px;
}
.footer .logo img {
  width: 150px;
}
.footer .logo p {
  margin: 30px 0 20px 0;
  color: #f9f9f9;
}
.footer .logo ul li {
  display: inline-block;
}
.footer .logo ul li a {
  width: 35px;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #09091f;
  color: #fff;
  font-size: 13px;
  margin-right: 5px;
  border-radius: 50%;
}
.footer .logo ul li:hover a {
  background-color: #fff;
  color: #f71735;
}
.footer-title h4 {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 25px;
}
.footer .links li a {
  display: inline-block;
  position: relative;
  color: #f4f4f4;
  font-size: 14px;
  line-height: 32px;
}
.footer .links li:hover a {
  color: #f71735;
}
.footer .newsletter {
  background-color: #09091f;
  padding: 30px;
  border-radius: 3px;
}
.footer .newsletter h5 {
  color: #f71735;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 20px;
}
.footer .newsletter p {
  color: #f4f4f4;
  margin-bottom: 26px;
  font-size: 15px;
}
.footer .newsletter form {
  position: relative;
}
.footer .newsletter form input {
  width: 100%;
  color: #9b9b9b;
  background-color: transparent;
  font-size: 13px;
  text-transform: capitalize;
  padding: 0 15px;
  line-height: 44px;
  border-radius: 3px;
  letter-spacing: 0.25px;
  position: relative;
  border: 1px solid rgb(204 204 204 / 0.1);
}
.footer .newsletter form input:focus {
  border-color: #f71735;
}
.footer .newsletter form a {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  background-color: #f71735;
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 3px;
}
.copyright {
  margin-top: 70px;
  padding: 40px 0;
  background-color: #09091f;
  overflow: hidden;
}
.copyright p {
  margin: 0;
  color: #f4f4f4;
  float: left;
}
.copyright p a {
  color: #f71735;
}
.copyright ul {
  float: right;
}
.copyright ul li {
  display: inline-block;
  margin-left: 10px;
}
.copyright ul li:hover a {
  color: #f71735;
}

/* :: Scroll Up */
.scroll-up {
  position: fixed;
  z-index: 100;
  bottom: 30px;
  right: 30px;
  -webkit-box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 40px 4px rgba(0, 0, 0, 0.05);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.scroll-up.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.scroll-up a {
  background-color: #f71735;
  font-size: 16px;
  color: #fff;
  line-height: 42px;
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  border: 1px solid #f71735;
  border-radius: 3px;
  outline: none;
}
.scroll-up:hover a {
  background-color: #0b0c26;
  border: 1px solid #0b0c26;
}

/* :: Breadcrumb Header */
.breadcrumb-header {
  padding: 120px 0;
  background-image: url(../images/header/04_header.jpg);
  color: #fff;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.breadcrumb-header .banner h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.breadcrumb-header .banner ul li {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #f9f9f9;
  text-transform: capitalize;
}
.breadcrumb-header .banner ul li:hover a {
  color: #f71735;
}

/* :: Single Services */
.services-head h4 {
  font-size: 24px;
  line-height: 1.1;
  color: #0b0c26;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 30px;
}
.services-list li a {
  color: #9b9b9b;
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  border-bottom: 1px solid #e9e9e9;
}
.services-list li:last-of-type a {
  margin-bottom: 0;
}
.services-list li.active a,
.services-list li:hover a {
  color: #f71735;
}
.services-list li a i {
  float: right;
}
.brochures {
  padding: 40px;
  background-color: #f9f9f9;
  margin: 30px 0;
}
.brochures h5,
.single-services-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #0b0c26;
  font-size: 18px;
}
.brochures a {
  width: 100%;
}
.call-back {
  padding: 40px;
  background-color: #f71735;
  margin: 30px 0;
  text-align: center;
}
.call-back i {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  display: inline-block;
}
.call-back h5 {
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #fff;
  font-size: 18px;
}
.call-back p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 2;
  position: relative;
  color: #fff;
}
.call-back a {
  width: 100%;
  margin-top: 16px;
}
.single-services-box h3 {
  font-size: 32px;
  line-height: 1.2;
  color: #0b0c26;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}
.single-services-box h4 {
  margin-top: 50px;
  margin-bottom: 20px;
}
.single-services-box .img-box-chart img {
  width: 100%;
}

/* :: Careers */
.item-careers {
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  padding: 40px;
  margin-bottom: 30px;
}
.item-careers h4 a {
  display: block;
  position: relative;
  font-size: 21px;
  line-height: 29px;
  margin: 0px 0 15px 0;
  font-weight: 600;
  color: #0b0c26;
}
.item-careers h4:hover a {
  color: #f71735;
}
.item-careers ul li {
  display: inline-block;
  font-weight: 500;
  margin-right: 10px;
}
.item-careers ul li.active {
  background-color: #f71735;
  padding: 2px 15px;
  color: #fff;
  border-radius: 3px;
}
.item-careers p {
  margin: 15px 0;
}
.item-careers a {
  font-size: 14px;
  color: #f71735;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
}
.item-careers a span {
  background-color: #f71735;
  color: #fff;
  width: 0;
  height: 15px;
  font-size: 10px;
  text-align: center;
  line-height: 15px;
  border-radius: 50%;
  margin-right: 0;
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.item-careers a:hover span {
  width: 15px;
  margin-right: 8px;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/* :: Shop */
.shop-item {
  margin-bottom: 30px;
}
.shop-item .item-img {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.shop-item .item-img .box-more {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(11 12 38 / 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.shop-item:hover .item-img .box-more {
  opacity: 1;
  visibility: visible;
}
.shop-item .item-img .box-more a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.shop-item .item-text .open-item-shop h4 {
  font-size: 16px;
  line-height: 24px;
  margin: 16px 0 12px 0;
  color: #0b0c26;
}
.shop-item .item-text span {
  color: #f71735;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

/* :: Single Product */
.shop.area .text-box-details .title-product {
  font-size: 20px;
  line-height: 1.2;
  color: #0b0c26;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.shop.area .text-box-details .item-review span {
  display: inline-block;
  font-size: 14px;
  color: #a5a5a5;
}
.shop.area .text-box-details .item-review span i.active {
  color: #f71735;
}
.shop.area .text-box-details .item-review span.reviews {
  margin-left: 40px;
}
.shop.area .text-box-details .item-review span.spance-span {
  margin: 0 5px;
}
.shop.area .text-box-details .item-review span a {
  font-size: 14px;
  color: #a5a5a5;
}
.shop.area .text-box-details .item-review span a:hover {
  color: #f71735;
}
.shop.area .text-box-details .item-price {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #f71735;
  margin-top: 15px;
  margin-bottom: 25px;
}
.shop.area .text-box-details .btn-3 {
  margin-bottom: 25px;
}
.shop.area .text-box-details .list-details li {
  line-height: 2;
  font-size: 16px;
}
.shop.area .text-box-details .list-details li span {
  font-weight: bold;
  color: #0b0c26;
  min-width: 120px;
  display: inline-block;
}
.shop.area .text-box-details .list-details li a {
  color: #0b0c26;
  margin-right: 20px;
}
.shop.area .text-box-details .list-details li a:hover {
  color: #f71735;
}
.shop.area .description {
  margin-top: 50px;
}
.shop.area .description ul li {
  display: inline-block;
  margin-right: 5px;
}
.shop.area .description p {
  margin: 25px 0 0 0;
}

/* :: 404 Page */
.page-404-area {
  padding: 150px 0;
}
.page-404-area h2 {
  font-size: 250px;
  color: #0b0c26;
  font-weight: bold;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 30px;
}
.page-404-area h2 span {
  color: #f71735;
}
.page-404-area p {
  text-transform: capitalize;
  font-weight: 500;
  line-height: 26px;
  font-size: 15px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}
.page-404-area a {
  margin-top: 30px;
}

/* :: Pagination */
.pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.pagination.one {
  width: auto;
}
.pagination-blog-area .pagination li {
  display: inline-block;
  text-align: center;
  color: #0b0c26;
  font-weight: 600;
  font-size: 14px;
  width: 44px;
  height: 44px;
  line-height: 42px;
  margin-right: 2px;
  border: 1px solid #eaeaea;
  cursor: pointer;
}
.pagination-blog-area .pagination li:last-of-type {
  margin-right: 0;
}
.pagination-blog-area .pagination li.active {
  background-color: #f71735;
  color: #fff;
  border-color: #f71735;
}

/* :: Widget */
.widget {
  margin-bottom: 40px;
}
.widget .widget-title {
  padding-bottom: 25px;
}
.widget .widget-title h3 {
  line-height: 1.2;
  text-transform: capitalize;
  color: #0b0c26;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.widget .widget-body .search {
  position: relative;
}
.widget .widget-body .search input {
  position: relative;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  padding: 10px;
  width: 100%;
  color: #a5a5a5;
  font-size: 13px;
}
.widget .widget-body .search input:focus {
  border-color: #f71735;
}
.widget .widget-body .search button.click {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  outline: none;
  font-size: 13px;
  background-color: transparent;
  color: #f71735;
  border: none;
}
.widget .widget-body .instagram ul {
  overflow: hidden;
}
.widget .widget-body .instagram ul li {
  float: left;
  display: inline-block;
  margin: 4px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.widget .widget-body .instagram ul li img {
  width: 60px;
  height: 60px;
}
.widget .widget-body .instagram ul li a {
  background-color: #f71735;
  color: #fff;
  font-size: 14px;
  line-height: 58px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.widget .widget-body .instagram ul li:hover a {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.widget .widget-body .follow .icon li {
  display: inline-block;
  margin: 0 4px 4px 0;
}
.widget .widget-body .follow .icon li a {
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #f71735;
  font-size: 13px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #f71735;
  border-radius: 2px;
}
.widget .widget-body .follow .icon li:hover a {
  background-color: #0b0c26;
  border-color: #0b0c26;
}
.widget .categories ul li {
  border-bottom: 1px solid #eaeaea;
}
.widget .categories ul li:last-of-type {
  border-bottom: none;
}
.widget .categories ul li a {
  font-size: 14px;
  padding: 15px 0;
  display: block;
  line-height: 15px;
  text-transform: capitalize;
  color: #a5a5a5;
}
.widget .categories ul li:first-of-type a {
  padding-top: 0;
}
.widget .categories ul li:last-of-type a {
  padding-bottom: 0;
}
.widget .categories ul li a i {
  margin-right: 5px;
}
.widget .categories ul li a span {
  float: right;
}
.widget .categories ul li:hover a {
  color: #f71735;
  padding-left: 10px;
}
.widget .widget-body .tags ul li {
  display: inline-block;
}
.widget .widget-body .tags ul li a {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 5px 5px 0;
  border: 1px solid #f9f9f9;
  background-color: #f9f9f9;
  font-size: 13px;
  font-weight: 600;
  color: #a5a5a5;
  border-radius: 3px;
}
.widget .widget-body .tags ul li:hover a {
  background-color: #f71735;
  color: #fff;
  border: 1px solid #f71735;
}

/* :: News Item */
.news-item {
  margin-bottom: 22px;
  overflow: hidden;
}
.news-item:last-of-type {
  margin-bottom: 0px;
}
.news-item img {
  float: left;
  height: 60px;
  width: 60px;
  border-radius: 3px;
}
.news-item .item-content {
  padding-left: 70px;
}
.news-item .item-content span a {
  color: #f71735;
  line-height: 0.8;
  display: block;
  padding-bottom: 8px;
}
.news-item .item-content a.title-blog {
  display: block;
}
.news-item .item-content a.title-blog h5 {
  color: #b4b4b4;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}
.news-item .item-content a.title-blog:hover,
.news-item .item-content a.title-blog:hover h5 {
  color: #f71735;
}

/* :: Single Blog */
.blog.area .blog-item .text-box {
  padding-left: 0;
}
.blog .share-post {
  overflow: hidden;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding-top: 25px;
  margin-top: 25px;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.blog .share-post span {
  font-size: 15px;
  font-weight: 600;
  color: #0b0c26;
  margin: 4px 0;
  display: inline-block;
}
.blog .share-post ul {
  float: right;
}
.blog .share-post ul li {
  display: inline-block;
  margin: 0 4px 0px 0;
}
.blog .share-post ul li a {
  display: inline-block;
  text-align: center;
  color: #0b0c26;
  background-color: #f9f9f9;
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #f9f9f9;
  border-radius: 2px;
}
.blog .share-post ul li:hover a {
  background-color: #f71735;
  border-color: #f71735;
  color: #fff;
}
.blog.area .item-comments {
  margin-bottom: 30px;
}
.blog.area .item-comments .title h4,
.blog.area .add-comments .title h4 {
  line-height: 14px;
  text-transform: capitalize;
  color: #223645;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.blog.area .item-comments .inner-comments .comments-box {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}
.blog.area .item-comments .inner-comments .comments-box:last-of-type {
  padding: 0;
  margin: 0;
  border: none;
}
.blog.area .item-comments .inner-comments .comments-box.reply,
.blog.area .item-comments .inner-comments .comments-box .text-box {
  margin-left: 90px;
}
.blog.area .item-comments .inner-comments .comments-box .img-box {
  height: 70px;
  width: 70px;
  display: block;
  margin-right: 20px;
  float: left;
  position: relative;
}
.blog.area .item-comments .inner-comments .comments-box .img-box img {
  border-radius: 50%;
}
.blog.area .item-comments .inner-comments .comments-box .text-box h5 {
  display: block;
  color: #223645;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.blog.area .item-comments .inner-comments .comments-box .text-box .time {
  line-height: 20px;
  margin-bottom: 5px;
  font-size: 12px;
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  color: #f71735;
}
.blog.area .item-comments .inner-comments .comments-box .text-box p {
  margin-bottom: 15px;
}
.blog.area .item-comments .inner-comments .comments-box .text-box a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #f9f9f9;
  background-color: #f9f9f9;
  font-size: 13px;
  font-weight: 600;
  color: #7a8a9e;
  border-radius: 3px;
}
.blog.area .item-comments .inner-comments .comments-box .text-box a:hover {
  color: #fff;
  border: 1px solid #f71735;
  background-color: #f71735;
}
.blog.area .add-comments .inner-add-comments-box input,
.blog.area .add-comments .inner-add-comments-box textarea {
  position: relative;
  border: 1px solid #e9e9e9;
  padding: 10px;
  width: 100%;
  color: #a5a5a5;
  font-size: 13px;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
  border-radius: 3px;
}
.blog.area .add-comments .inner-add-comments-box input:focus,
.blog.area .add-comments .inner-add-comments-box textarea:focus {
  border-color: #f71735;
}
.blog.area .add-comments .inner-add-comments-box textarea {
  height: 100px;
  display: block;
}

.topheader {
  background-color: #f71735;
}
.topheader p {
  color: #fff;
}
body {
  top: 0px !important;
}
.goog-te-banner-frame {
  display: none;
}
a.goog-logo-link {
  display: none;
}
.skiptranslate.goog-te-gadget {
  color: #ffffff !important;
}
.goog-te-combo {
  border-radius: 5px;
  padding: 5px;
}

.topheader p {
  padding: 10px 0px;
  margin-bottom: 0px;
}
.skiptranslate {
  margin-top: 2px;
}
.topheader {
  height: 40px;
}

/*-----media query----*/

@media screen and (min-width: 320px) and (max-width: 767px) {
  .phone-1 {
    display: none;
  }

  .skiptranslate.goog-te-gadget {
    margin-top: -44px;
  }

  .nav-bar .nav-bar-link ul li.has-menu > a:after {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* Page Builder */
.db-banner {
  background-image: url('../images/designbuilder/banner.webp');
  background-size: cover;
  min-height: 320px;
}
.hero-content {
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
  padding-top: 110px;
}
.vertical-center {
  height: 100%;
  width: 100%;
  display: table;
}
.vertical-center > .inner {
  vertical-align: middle;
  display: table-cell;
}
.hero h1 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.3px;
  line-height: 1.2;
  color: #fff;
}
.hero h1 small.secondary {
  color: inherit;
  display: block;
  font-size: 13.5px;
  letter-spacing: 2px;
  margin: 10px 0;
  line-height: 1.6;
  font-weight: 600;
}
.designbuilder-logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: -100px;
  margin-bottom: 15px;
}
.db-content {
  padding: 100px 0 10px 0;
}
.db-content a {
  color: #f71735;
}
