@charset "UTF-8";
/* ==============
Template name : Conskip - Construction and Renovation HTML5 Template
Author : Egens Lab
Version : 1.0.0
Created : 
Last update : 
================= */
/* CSS Index 
-----------------------------------
1. Global CSS
2. Navbar area
3. Topbar area 
4. Main slider area 
5. About area 
6. Service area 
7. Achievement area 
8. Features area
9. Review area 
10. Portfolio area
11. Pricing area 
12. Team area 
13. Blog area 
14. Client area
15. Newslatter area 
16. Footer area
17. Service page css
18. Blog page css
19. Shop page css
20. Error page css
21. Contact page css
22. Portfolio Page css

*/
/*====================
    1. Global CSS
======================*/
/*google fonts*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*--- Color ---*/
/*--- Fonts ---*/
* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* common class's*/
.pt-100 {
  padding-top: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-30 {
  margin-top: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-30 {
  padding-bottom: 30px;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Rubik", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

p {
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
}

p.regular-text {
  line-height: 2.5rem;
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none !important;
}

input {
  padding: 8px 15px;
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid #707070;
  border-radius: 2px;
  height: 45px;
}

input:focus {
  outline: none !important;
  border: 1px solid #00bfff;
}

input[type=submit], button[type=submit] {
  display: inline-block;
  width: auto;
  padding: 10px 50px;
  border: 1px solid transparent;
  border-radius: 5px;
  text-transform: capitalize;
  margin-bottom: 0;
  color: #fff;
  transition: all 0.3s;
  background: #00bfff;
}
input[type=submit]:hover, button[type=submit]:hover {
  background: #27272B;
  color: #fff;
  border: 1px solid #27272B;
}

input[type=submit]:focus {
  outline: none;
}

textarea {
  padding: 8px 10px;
  background: #FFFFFF;
  border-radius: 5px;
  display: block;
  width: 100%;
  border: 1px solid #707070;
  transition: all 0.4s ease;
}

textarea:focus {
  outline: none !important;
  border: 1px solid #00bfff;
}

select {
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  display: block;
  width: 100%;
  transition: all 0.4s ease;
  margin-bottom: 10px;
  height: 45px;
}
select:focus {
  outline: none;
  border: 1px solid #FF5235;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

table tbody tr td,
table tbody tr th,
table thead tr td,
table thead tr th,
table tfoot tr td,
table tfoot tr th {
  border: 1px solid #eee;
  padding: 10px;
}

.section-head h5 {
  font-weight: 500;
  font-size: 18px;
  color: #00bfff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-head h5::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  background: #00bfff;
}
.section-head h5::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  background: #00bfff;
}
.section-head h2 {
  font-weight: 700;
  font-size: 52px;
  line-height: 62px;
  color: #19194F;
  text-transform: capitalize;
}

.btn-common {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: block;
  color: #FFFFFF;
  padding: 12px 30px;
  background: #00bfff;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  display: inline-flex;
  transition: all 100ms linear;
}
.btn-common i {
  margin-left: 8px;
}
.btn-common:hover {
  color: #fff;
}
.btn-common::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 20px;
  background: rgba(243, 243, 243, 0.5);
  filter: blur(1px);
  opacity: 0.9;
  top: -30px;
  transition: 0.7s;
  transform: rotate(-20deg) translateX(-60px);
}

.btn-common:hover:before {
  transform: rotate(-20deg) translate(140px, 70px);
}

.btn-sm {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  background: #00bfff;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.btn-sm:hover {
  border: 1px solid #00bfff;
  color: #00bfff;
  background: #fff;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9;
  animation: 500ms ease-in-out 0s fadeInDown;
  animation: 500ms ease-in-out;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

/*owl carousel css*/
.main-slider.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.main-slider.owl-carousel .owl-nav button i {
  color: #CACACA;
  font-size: 25px;
}
.main-slider.owl-carousel .owl-nav button.owl-prev {
  left: 30px;
}
.main-slider.owl-carousel .owl-nav button.owl-next {
  right: 30px;
}

.review-slider.owl-carousel .owl-nav button {
  height: 30px;
  width: 30px;
  background: #00bfff;
  border-radius: 50%;
  text-align: center;
  margin-top: -25px;
}
.review-slider.owl-carousel .owl-nav button i {
  color: #fff;
  font-size: 14px;
  line-height: 36px;
}
.review-slider.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.review-slider.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.review-bg {
  text-align: center;
}

/*Breadcrumb area*/
.breadcrumb-area {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.breadcrumb-area::before {
  position: absolute;
  content: "";
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(39, 39, 43, 0.9);
}
.breadcrumb-area .breadcrumb-content {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 10;
}
.breadcrumb-area .breadcrumb-content h3 {
  font-weight: 700;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
  text-transform: capitalize;
}
.breadcrumb-area .breadcrumb-content h5 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  margin: 10px 0 30px 0;
}
.breadcrumb-area .breadcrumb-content ul.breadcrumb-links {
  display: flex;
  justify-content: center;
}
.breadcrumb-area .breadcrumb-content ul.breadcrumb-links li {
  font-size: 1rem;
  margin: 0 12px;
  text-transform: capitalize;
  position: relative;
  line-height: 12px;
}
.breadcrumb-area .breadcrumb-content ul.breadcrumb-links li:first-child::before {
  position: absolute;
  top: 0;
  right: -12px;
  content: "";
  height: 12px;
  width: 2px;
  background: #fff;
}
.breadcrumb-area .breadcrumb-content ul.breadcrumb-links li a {
  color: #00bfff;
}

/*back to top btn*/
.back-to-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background: #00bfff;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  display: none;
  z-index: 9999;
}
.back-to-top-btn i {
  color: #fff;
}
.back-to-top-btn i::before {
  vertical-align: middle;
}

/* pagination*/
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.pagination ul {
  display: flex;
}
.pagination ul li {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.1);
  text-align: center;
  margin: 0 10px;
  transition: all 0.2s;
}
.pagination ul li:hover {
  background: #00bfff;
}
.pagination ul li:hover a, .pagination ul li:hover i {
  color: #fff;
}
.pagination ul li a {
  font-weight: 700;
  font-size: 1rem;
  color: #00bfff;
  line-height: 52px;
  transition: all 0.2s;
}
.pagination ul li i {
  line-height: 56px;
  color: #00bfff;
  transition: all 0.2s;
  cursor: pointer;
}

/*preloader css start*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #ecebeb;
  top: 0;
  left: 0;
  font-size: 30px;
  vertical-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-cube-grid {
  width: 60px;
  height: 60px;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #00bfff;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
/*Preloader CSS END */
/* =============================
         Global CSS end
==============================*/
/* =============================
    2. Navbar area start 
==============================*/
/*======= 3. header-area ========= */
.main-nav .inner-btn {
  display: none;
}
.main-nav .inner-btn a {
  font-size: 14px;
}

.main-nav .inner-logo {
  display: none;
}

header .header-area .main-nav {
  float: right;
}

header .header-area .main-nav ul {
  margin: 0;
  list-style: none;
}

header .header-area .main-nav ul li {
  display: inline-block;
  position: relative;
  padding: 0 20px;
}

header .header-area .main-nav ul li:hover > a {
  color: #D21756;
}

header .header-area .main-nav ul li:hover > a::before {
  opacity: 1;
  background: #D21756;
}

header .header-area .main-nav ul li a {
  display: block;
  color: #27272B;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  padding: 35px 0;
  position: relative;
  font-family: "Rubik", sans-serif;
}
header .header-area .main-nav ul li a:hover::before {
  width: 20px;
}

header .header-area .main-nav ul li a::before {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 0px;
  height: 3px;
  border-radius: 100px;
  content: "";
  background-color: #00bfff;
  opacity: 0;
  transition: all 200ms linear;
}

header .header-area .main-nav ul li ul.sub-menu > li {
  padding: 0;
  border-bottom: 1px solid #eee;
}
header .header-area .main-nav ul li ul.sub-menu > li:last-child {
  border-bottom: none;
}

header .header-area .main-nav ul li ul.sub-menu > li a {
  display: block;
  padding: 12px 10px;
  color: #27272B;
  font-family: "Rubik", sans-serif;
  line-height: 1;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

header .header-area .main-nav ul li ul.sub-menu > li a:hover {
  background: transparent;
  color: #00bfff !important;
  transform: translateX(10px);
}

header .header-area .main-nav ul li ul.sub-menu > li a:hover::before {
  opacity: 0;
}

header > .header-area .nav-right {
  float: right;
  height: 100%;
  display: flex;
  align-items: center;
}

header .header-area .nav-right ul li a.search-btn i:before {
  font-size: 18px;
  font-weight: 600;
  color: #707070;
  vertical-align: middle;
}

header .header-area .main-nav > ul > li > a.active {
  color: #00bfff;
}

header .header-area .main-nav > ul > li > a.active:before {
  opacity: 1;
  background-color: #D21756;
}

.request-btn a.btn-common {
  font-size: 14px;
}

/*===== Main Menu CSS =====*/
.main-nav ul li .sub-menu {
  position: absolute;
  left: 0;
  top: auto;
  right: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transform: translateY(20px);
  transition: all 0.3s;
  border-top: 3px solid #00bfff;
  box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.05);
}

.main-nav ul li .sub-menu li .sub-menu {
  right: -200px;
  left: inherit;
  top: 0;
}

.main-nav ul li .sub-menu > li {
  display: block;
  margin: 0;
  position: relative;
}

.main-nav ul > li a:hover {
  color: #00bfff !important;
}

.main-nav .fl {
  width: 30px;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 0;
  z-index: 999;
  display: none;
  cursor: pointer;
}

.main-nav .fl:before {
  font-size: 14px;
  text-align: center;
  line-height: 35px;
}

.main-nav > ul > li + li > .sub-menu {
  left: 15px;
}

.main-nav > ul > li:hover > .sub-menu,
.main-nav ul li .sub-menu li:hover > .sub-menu,
.main-nav ul li .sub-menu li .sub-menu li:hover > .sub-menu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.slideInUp {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.is-active .slideInUp {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slideInUp2 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.header-area .header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

header .header-area .main-nav ul li.has-child-menu:after {
  position: absolute;
  right: -5px;
  color: #262339;
  top: 33px;
  font-family: "boxicons";
  content: "";
  font-size: 18px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}

/*=====sticky menu=====*/
.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0;
  animation: 500ms ease-in-out 0s normal none 1 running;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.1);
  background: #FFF;
  background-repeat: no-repeat;
  background-size: cover;
}

/* =============================
      Navbar area end 
==============================*/
/* =============================
   3. Topbar area start
==============================*/
.topbar-area {
  background: #27272B;
  color: #fff;
  padding: 9px 0;
}
.topbar-area .topbar-contact ul {
  display: flex;
  align-items: center;
}
.topbar-area .topbar-contact ul li {
  font-size: 13px;
  color: #fff;
  margin-right: 30px;
}
.topbar-area .topbar-contact ul li a {
  color: #fff;
}
.topbar-area .topbar-contact ul li i {
  margin-right: 8px;
}
.topbar-area .topbar-contact ul li:last-child {
  margin-right: 0;
}
.topbar-area .topbar-social {
  float: right;
}
.topbar-area .topbar-social ul {
  display: flex;
  gap: 15px;
}
.topbar-area .topbar-social ul li {
  height: 22px;
  width: 22px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  line-height: 20px;
  transition: all 0.3s ease;
}
.topbar-area .topbar-social ul li:hover {
  background: #00bfff;
  border-color: #00bfff;
}
.topbar-area .topbar-social ul li a i {
  font-size: 10px;
  color: #fff;
}

/* =============================
    Topbar area end
==============================*/
/* =============================
   4. Main slider area start
==============================*/
.main-slider.owl-carousel .owl-item .slider-item .slider-content {
  transform: translateY(100px);
  opacity: 0;
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
}
.main-slider.owl-carousel .owl-item.active .slider-item .slider-content {
  transform: translateY(0px);
  opacity: 1;
}
.main-slider.owl-carousel .owl-item.active .slider-one-img-layer {
  transform: scale(1.15);
}

.slider-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/banner/banner-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.slider-item .slider-content {
  position: relative;
  z-index: 12;
}
.slider-item .slider-content h5.main-slider-sub-title {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.slider-item .slider-content h2.main-slider-title {
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
  font-weight: 700;
  max-width: 680px;
  padding: 30px 0 20px 0;
  text-transform: capitalize;
}
.slider-item .slider-content p.main-slider-info {
  line-height: 30px;
  max-width: 592px;
  padding-bottom: 50px;
  color: #fff;
}

.slider-item.slider-item-one h5.main-slider-sub-title::before {
  position: absolute;
  bottom: -12px;
  left: 0;
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 4px;
  background: #fff;
}

.slider-item.slider-item-two {
  text-align: center;
}
.slider-item.slider-item-two h5.main-slider-sub-title::before {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 4px;
  background: #fff;
}
.slider-item.slider-item-two h2.main-slider-title {
  margin: 0 auto;
  max-width: 900px;
}
.slider-item.slider-item-two p.main-slider-info {
  max-width: 720px;
  margin: 0 auto;
}

.slider-item.slider-item-three h5.main-slider-sub-title::before {
  position: absolute;
  bottom: -12px;
  left: 0;
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 4px;
  background: #fff;
}

.slider-one-img-layer {
  background: linear-gradient(rgba(39, 39, 43, 0.65) 100%, rgba(39, 39, 43, 0.65) 100%), url(../images/banner/banner-item-three.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  transition: transform 7000ms ease;
}

.slider-item-one {
  min-height: 720px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 80px 0;
}

.slider-item-two {
  background: linear-gradient(rgba(39, 39, 43, 0.65) 100%, rgba(39, 39, 43, 0.65) 100%), url(../images/banner/banner-item-two.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 80px 0;
}

.slider-item-three {
  background: linear-gradient(rgba(39, 39, 43, 0.65) 100%, rgba(39, 39, 43, 0.65) 100%), url(../images/banner/banner-item-one.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 80px 0;
}

/* =============================
     Main slider area end
==============================*/
/* =============================
    5. About area start
==============================*/
.about-content.section-head h5::before {
  display: none;
}

.about-img-wrap img {
  border-radius: 5px;
}
.about-img-wrap .about-img-xl {
  margin-left: 18px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}
.about-img-wrap .about-img-xl::before {
  position: absolute;
  content: "";
  left: -20px;
  top: -20px;
  background: url(../images/shapes/about-s1.png);
  height: 60px;
  width: 66px;
}
.about-img-wrap .about-img-l {
  float: right;
  margin-right: 18px;
  margin-top: -286px;
  position: relative;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}
.about-img-wrap .about-img-l::before {
  position: absolute;
  content: "";
  right: -20px;
  bottom: -20px;
  background: url(../images/shapes/about-s2.png);
  height: 60px;
  width: 66px;
}
.about-img-wrap .about-img-l .about-img-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  border-radius: 5px;
  left: 0;
  background: rgba(39, 39, 43, 0.7);
}
.about-img-wrap .about-img-l .about-img-overlay .about-video {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: #fff;
  color: #00bfff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.about-img-wrap .about-img-l .about-img-overlay .about-video span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: video-pulse 3s linear infinite;
  animation-delay: calc(-0.5s * var(--i));
}
@keyframes video-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.about-img-wrap .about-img-l .about-img-overlay .about-video a i {
  font-size: 30px;
  position: absolute;
  color: #00bfff;
  left: 50%;
  top: 50%;
  transform: translate(-46%, -46%);
}

.about-content-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.about-content-wrap .about-content p.qoute-text {
  margin-top: 20px;
  color: #707070;
  line-height: 30px;
  padding-left: 20px;
  position: relative;
}
.about-content-wrap .about-content p.qoute-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 80%;
  transform: translateY(-50%);
  width: 3px;
  background: #00bfff;
}
.about-content-wrap .about-content ul.about-feature {
  margin: 35px 0 45px 0;
}
.about-content-wrap .about-content ul.about-feature li {
  font-size: 1rem;
  line-height: 30px;
  color: #19194F;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-content-wrap .about-content ul.about-feature li:last-child {
  margin-bottom: 0;
}
.about-content-wrap .about-content ul.about-feature li i {
  margin-right: 12px;
  color: #00bfff;
}
.about-content-wrap .about-content ul.about-feature li i::before {
  vertical-align: middle;
}

.about-info-card.about-info-card-right {
  text-align: -webkit-right;
}

.about-info-card {
  background: #FFFFFF;
  border: 1px solid #FCFCFC;
  box-sizing: border-box;
  box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 0 30px 25px 30px;
  margin-top: 50px;
}
.about-info-card .about-info-icon {
  margin-top: -24px;
  height: 66px;
  width: 66px;
  background: linear-gradient(180deg, #00bfff 0%, #FFA000 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-info-card .about-info-icon i {
  font-size: 45px;
  color: #fff;
  line-height: 0.8;
}
.about-info-card .about-info-content {
  margin-top: 20px;
}
.about-info-card .about-info-content h4 {
  font-weight: 500;
  font-size: 20px;
  color: #27272B;
}
.about-info-card .about-info-content p.blog-info-texts {
  font-size: 1rem;
  line-height: 26px;
  color: #707070;
  margin: 15px 0 25px 0;
}
.about-info-card .about-info-content .about-info-btn a {
  font-weight: 500;
  font-size: 16px;
  color: #707070;
  transition: all 0.2s ease;
}
.about-info-card .about-info-content .about-info-btn a:hover {
  color: #00bfff;
}
.about-info-card .about-info-content .about-info-btn a:hover i {
  color: #00bfff;
}
.about-info-card .about-info-content .about-info-btn a i {
  margin: 0 8px;
}
.about-info-card .about-info-content .about-info-btn a i::before {
  vertical-align: middle;
}

.about-info-btn {
  text-align: end;
}

.about-info-btn.leftbtn {
  text-align: start;
}

.about-discription-wrap {
  padding-top: 50px;
  background: linear-gradient(180deg, #FFF8ED 0%, rgba(255, 255, 255, 0) 100%);
}

/* =============================
     About area end
==============================*/
/* =============================
    6. Service area start
==============================*/
.service-head {
  text-align: center;
  margin: 0 auto;
  max-width: 580px;
}
.service-head h5 {
  font-weight: 500;
  font-size: 18px;
  color: #00bfff;
}
.service-head h2 {
  font-size: 52px;
  color: #19194F;
  font-weight: 700;
  line-height: 65px;
}

.service-card {
  margin-top: 20px;
  background: #FFFFFF;
  box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  text-align: center;
  padding: 30px 25px;
}
.service-card:hover .service-btn a {
  color: #00bfff;
}
.service-card .service-icon i {
  font-size: 55px;
  color: #00bfff;
}
.service-card h5 {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  margin: 10px 0 15px 0;
}
.service-card p {
  color: #707070;
  line-height: 22px;
}
.service-card .service-btn a {
  margin-top: 20px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 22px;
  color: #707070;
  display: inline-block;
  transition: all 0.2s;
}
.service-card .service-btn a:hover {
  color: #00bfff;
}
.service-card .service-btn a:hover i {
  color: #00bfff;
}
.service-card .service-btn a i {
  font-size: 1rem;
  margin-left: 6px;
  color: #707070;
}
.service-card .service-btn a i::before {
  vertical-align: middle;
}

.service-intro {
  margin-top: 20px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  background: url(../images/service/service-intro.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.service-intro .service-intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 43, 0.7);
  text-align: center;
  padding: 0 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-intro .service-intro-overlay h3 {
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
}
.service-intro .service-intro-overlay h3 span {
  font-size: 35px;
  font-weight: 700;
}
.service-intro .service-intro-overlay p {
  line-height: 22px;
  padding: 10px 0 35px 0;
}
.service-intro .service-intro-overlay .service-btn a {
  display: inline-block;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  padding: 10px 30px;
  border: 2px solid #fff;
  border-radius: 100px;
  background: transparent;
  transition: all 0.3s;
}
.service-intro .service-intro-overlay .service-btn a:hover {
  background: #00bfff;
  border: 2px solid #00bfff;
}

/* =============================
     Service area end
==============================*/
/* =============================
     7. Achievement area start
==============================*/
.achievement-area {
  background: linear-gradient(rgba(39, 39, 43, 0.8) 100%, rgba(39, 39, 43, 0.8) 100%), url(../images/achievement/achievement-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0 80px 0;
}

.achievement-card {
  margin-top: 30px;
  background: #fff;
  text-align: center;
  padding: 35px 30px;
  border-radius: 5px;
}
.achievement-card .achievement-icon {
  height: 78px;
  width: 78px;
  border-radius: 0px 30px;
  background: #FFE0DF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.achievement-card .achievement-icon i {
  font-size: 50px;
  color: #00bfff;
}
.achievement-card .achievement-icon i::before {
  vertical-align: middle;
}
.achievement-card h3 {
  font-weight: 600;
  font-size: 45px;
  color: #19194F;
  margin: 15px 0 5px 0;
}
.achievement-card h5 {
  font-size: 20px;
  color: #19194F;
}

/* =============================
     Achievement area end
==============================*/
/* =============================
    8. Features area start
==============================*/
.features-area .feature-content-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.features-area .feature-content h2 {
  font-weight: 700;
  font-size: 52px;
  line-height: 62px;
  color: #19194F;
}
.features-area .feature-content p {
  line-height: 30px;
  color: #707070;
  margin: 25px 0 45px 0;
}
.features-area .feature-xl-img img {
  width: 100%;
}
.features-area .feature-bottom-img {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.features-area .feature-bottom-img .feature-sm-img {
  width: 30%;
}
.features-area .feature-bottom-img .feature-sm-img img {
  width: 100%;
  border-radius: 5px;
}

.sd-accordion .accordion-item, .feature-accordion .accordion-item, .faq-accordion .accordion-item {
  margin-bottom: 15px;
  box-shadow: 0px 0px 20px rgba(103, 103, 103, 0.05);
  border-radius: 5px;
  border: none;
}
.sd-accordion .accordion-item:last-child, .feature-accordion .accordion-item:last-child, .faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.sd-accordion .accordion-item .accordion-button:not(.collapsed), .feature-accordion .accordion-item .accordion-button:not(.collapsed), .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: #fff;
  color: #19194F;
}
.sd-accordion .accordion-item button.accordion-button, .feature-accordion .accordion-item button.accordion-button, .faq-accordion .accordion-item button.accordion-button {
  padding: 15px 20px;
  font-size: 18px;
  color: #19194F;
  display: flex;
  justify-content: space-between;
}
.sd-accordion .accordion-item button.accordion-button span, .feature-accordion .accordion-item button.accordion-button span, .faq-accordion .accordion-item button.accordion-button span {
  display: flex;
  align-items: center;
}
.sd-accordion .accordion-item button.accordion-button i.accordion-dropicon, .feature-accordion .accordion-item button.accordion-button i.accordion-dropicon, .faq-accordion .accordion-item button.accordion-button i.accordion-dropicon {
  height: 22px;
  min-width: 22px;
  background: #00bfff;
  border-radius: 50%;
  text-align: center;
  margin-left: 20px;
  font-size: 13px;
  color: #fff;
  line-height: 25px;
}
.sd-accordion .accordion-item button.accordion-button span i, .feature-accordion .accordion-item button.accordion-button span i, .faq-accordion .accordion-item button.accordion-button span i {
  color: #00bfff;
  margin-right: 12px;
}
.sd-accordion .accordion-item button.accordion-button span i::before, .feature-accordion .accordion-item button.accordion-button span i::before, .faq-accordion .accordion-item button.accordion-button span i::before {
  vertical-align: middle;
}
.sd-accordion .accordion-item button.accordion-button:after, .feature-accordion .accordion-item button.accordion-button:after, .faq-accordion .accordion-item button.accordion-button:after {
  display: none;
}
.sd-accordion .accordion-item button.accordion-button:focus, .feature-accordion .accordion-item button.accordion-button:focus, .faq-accordion .accordion-item button.accordion-button:focus {
  box-shadow: none;
}
.sd-accordion .accordion-item .accordion-body, .feature-accordion .accordion-item .accordion-body, .faq-accordion .accordion-item .accordion-body {
  padding: 20px;
  color: #707070;
  position: relative;
}
.sd-accordion .accordion-item .accordion-body::before, .feature-accordion .accordion-item .accordion-body::before, .faq-accordion .accordion-item .accordion-body::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 50%;
  width: 3px;
  background: #00bfff;
  border-radius: 100px;
}

/* =============================
     Features area end
==============================*/
/* =============================
    9. Review area start
==============================*/
.review-slider {
  padding: 20px 20px;
  text-align: center;
}

.review-box {
  padding: 25px 25px;
  box-shadow: 0px 4px 20px rgba(255, 95, 88, 0.03);
  border-radius: 10px;
}
.review-box p {
  font-size: 1rem;
  color: #707070;
}
.review-box h5 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #19194F;
  margin: 18px 0 6px 0;
}
.review-box p.reviewer-status {
  color: #00bfff;
  letter-spacing: 0.1em;
}
.review-box ul.review-rating {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
  color: #FFA000;
}

/* =============================
     Review area end
==============================*/
/* =============================
    10. Portfolio area start
==============================*/
.portfolio-area {
  background: linear-gradient(180deg, #FFF8F4 0%, rgba(255, 251, 249, 0.52) 100%);
  padding: 75px 0;
}
.portfolio-area .more-portfolio-btn {
  text-align: center;
  margin-top: 70px;
}

.portfolio-head {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.portfolio-card {
  margin-top: 30px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.portfolio-card:hover .portfolio-overlay {
  transform: rotateX(0deg);
}
.portfolio-card .portfolio-img img {
  width: 100%;
}
.portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(25, 25, 79, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 0 45px;
  transform: rotateX(90deg);
  transition: transform 500ms ease;
  perspective: 400px;
}
.portfolio-card .portfolio-overlay p {
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
}
.portfolio-card .portfolio-overlay h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #FFFFFF;
  margin: 10px 0 25px 0;
}
.portfolio-card .portfolio-overlay .portfolio-btn a {
  display: inline-block;
  font-weight: 500;
  font-size: 1rem;
  color: #FFF;
  padding: 10px 30px;
  border: 2px solid #fff;
  border-radius: 100px;
  transition: all 0.3s;
}
.portfolio-card .portfolio-overlay .portfolio-btn a:hover {
  background: #00bfff;
  border: 2px solid #00bfff;
}

/* =============================
     Portfolio area end
==============================*/
/* =============================
    11. Pricing area start
==============================*/
.pricing-head {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.pricing-card {
  margin-top: 30px;
  background: #FFFFFF;
  border: 1px solid #FAFAFA;
  padding: 40px 25px;
  position: relative;
  box-shadow: 0px 4px 50px rgba(255, 184, 181, 0.08);
}
.pricing-card::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/shapes/pricing-shape.png);
  z-index: 0;
  opacity: 0;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-size: cover;
}
.pricing-card:hover::before {
  opacity: 1;
}
.pricing-card:hover a.btn-pricing {
  background: #00bfff;
  border: 1px solid #00bfff;
  color: #fff;
}
.pricing-card .card-label {
  position: absolute;
  right: 0;
  top: 20px;
  font-weight: 500;
  font-size: 1rem;
  color: #27272B;
  background: #F4F4F4;
  border-radius: 100px 0 0 100px;
  padding: 3px 10px;
}
.pricing-card .p-card-head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  position: relative;
  z-index: 10;
}
.pricing-card .p-card-head .p-card-icon i {
  font-size: 48px;
  color: #00bfff;
  margin-right: 25px;
}
.pricing-card .p-card-head .p-card-info h5 {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  margin-bottom: 5px;
}
.pricing-card .p-card-head .p-card-info h3 {
  font-weight: 400;
  font-size: 18px;
  color: #19194F;
}
.pricing-card .p-card-head .p-card-info h3 span {
  font-weight: 700;
  font-size: 40px;
}
.pricing-card .p-card-features {
  margin: 50px 0;
  position: relative;
  z-index: 10;
}
.pricing-card .p-card-features ul {
  margin-left: 20px;
}
.pricing-card .p-card-features ul li {
  color: #707070;
  font-size: 1rem;
  margin-bottom: 15px;
}
.pricing-card .p-card-features ul li:last-child {
  margin-bottom: 0;
}
.pricing-card .p-card-features ul li i {
  margin-right: 15px;
  color: #00bfff;
}
.pricing-card .p-card-btn {
  position: relative;
  z-index: 10;
  text-align: center;
}

a.btn-pricing {
  padding: 10px 24px;
  font-weight: 400;
  font-size: 18px;
  color: #27272B;
  border: 1px solid #27272B;
  border-radius: 100px;
  transition: all 0.3s;
}

a.btn-pricing-fill {
  padding: 10px 24px;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  border-radius: 100px;
  transition: all 0.3s;
  background: #00bfff;
  border: 1px solid #00bfff;
}

/* =============================
     Pricing area end
==============================*/
/* =============================
    12. Team area start
==============================*/
.team-card .mumber-img .member-social ul.social-icons.toggle-active {
  opacity: 1;
  transform: scale(1);
}

.team-head {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.team-card {
  margin-top: 30px;
}
.team-card:hover .mumber-img img {
  filter: grayscale(80%);
}
.team-card .mumber-img {
  position: relative;
  transition: all 0.2s;
}
.team-card .mumber-img img {
  width: 100%;
  transition: all 0.2s;
}
.team-card .mumber-img .member-social {
  position: absolute;
  top: 20px;
  right: 20px;
}
.team-card .mumber-img .member-social .toggle-icon {
  height: 26px;
  width: 26px;
  background: #00bfff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  cursor: pointer;
  margin-bottom: 10px;
}
.team-card .mumber-img .member-social .toggle-icon i {
  color: #fff;
  font-size: 20px;
}
.team-card .mumber-img .member-social ul.social-icons {
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
}
.team-card .mumber-img .member-social ul.social-icons li {
  margin-bottom: 10px;
  height: 26px;
  width: 26px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 29px;
  cursor: pointer;
  transition: all 0.2s;
}
.team-card .mumber-img .member-social ul.social-icons li:hover {
  background: #00bfff;
}
.team-card .mumber-img .member-social ul.social-icons li:hover i {
  color: #fff;
}
.team-card .mumber-img .member-social ul.social-icons li i {
  font-size: 14px;
  color: #00bfff;
}
.team-card .team-card-bottom {
  padding: 25px 20px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(255, 95, 88, 0.05);
  border-radius: 0px 0px 5px 5px;
}
.team-card .team-card-bottom h5.member-name {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  margin-bottom: 7px;
}
.team-card .team-card-bottom p.member-status {
  font-size: 1rem;
  color: #707070;
}

/* =============================
     Team area end
==============================*/
/* =============================
     13. Blog area start
==============================*/
.blog-head {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.blog-card {
  margin-top: 30px;
}
.blog-card:hover .blog-content .blog-bottom {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFEEE2 100%);
}
.blog-card:hover .blog-content .blog-bottom .blog-btn a {
  color: #00bfff;
}
.blog-card:hover .blog-content .blog-bottom .blog-btn a i {
  color: #00bfff;
}
.blog-card .blog-thumb img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.blog-card .blog-content .blog-info {
  padding: 10px 28px 10px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EEEEEE;
}
.blog-card .blog-content .blog-info .writer-info, .blog-card .blog-content .blog-info .blog-date {
  display: flex;
  align-items: center;
}
.blog-card .blog-content .blog-info .writer-info .writer-img img, .blog-card .blog-content .blog-info .blog-date .writer-img img {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
}
.blog-card .blog-content .blog-info .writer-info .date-icon, .blog-card .blog-content .blog-info .blog-date .date-icon {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px #E2E2E2;
  text-align: center;
  line-height: 20px;
}
.blog-card .blog-content .blog-info .writer-info .date-icon i, .blog-card .blog-content .blog-info .blog-date .date-icon i {
  color: #00bfff;
  font-size: 12px;
}
.blog-card .blog-content .blog-info .writer-info span, .blog-card .blog-content .blog-info .blog-date span {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #27272B;
  margin-left: 10px;
}
.blog-card .blog-content .blog-info .writer-info span a, .blog-card .blog-content .blog-info .blog-date span a {
  color: #00bfff;
}
.blog-card .blog-content .blog-bottom {
  background: #fff;
  padding: 20px 20px;
  transition: all 0.3s;
}
.blog-card .blog-content .blog-bottom a.blog-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  color: #27272B;
}
.blog-card .blog-content .blog-bottom p {
  color: #707070;
  margin: 15px 0;
}
.blog-card .blog-content .blog-bottom .blog-btn {
  line-height: 1;
}
.blog-card .blog-content .blog-bottom .blog-btn a {
  font-weight: 500;
  font-size: 14px;
  color: #707070;
  display: inline-block;
  transition: all 0.3s;
}
.blog-card .blog-content .blog-bottom .blog-btn a i {
  margin-left: 8px;
}
.blog-card .blog-content .blog-bottom .blog-btn a i::before {
  vertical-align: middle;
}

/* =============================
      Blog area end
==============================*/
/* =============================
     14. Client area start
==============================*/
.client-slider.owl-carousel .owl-item img {
  width: auto;
}

.client-slider .single-logo {
  height: 100px;
  width: 120px;
  border: 1px solid rgba(196, 196, 196, 0.4);
  border-radius: 2px;
  text-align: center;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* =============================
      Client area end
==============================*/
/* =============================
     15. Newslatter area start
==============================*/
.newslatter-area {
  margin-bottom: -85px;
  position: relative;
}
.newslatter-area .newslatter-wrap {
  background: #00bfff;
  padding: 46px 0;
  border-radius: 5px;
  position: relative;
}
.newslatter-area .newslatter-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: url(../images/shapes/news-shape-r.png);
  height: 80px;
  width: 80px;
  z-index: 9;
}
.newslatter-area .newslatter-wrap::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/shapes/news-shape-l.png);
  height: 80px;
  width: 80px;
  z-index: 9;
}
.newslatter-area .newslatter-wrap .newslatter-text {
  position: relative;
  z-index: 10;
}
.newslatter-area .newslatter-wrap .newslatter-text h4 {
  font-weight: 700;
  font-size: 30px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.newslatter-area .newslatter-wrap .newslatter-text p {
  font-size: 20px;
  line-height: 30px;
  font-family: "Rubik", sans-serif;
  color: #fff;
}
.newslatter-area .newslatter-wrap .newslatter-searchbox {
  position: relative;
  z-index: 10;
}
.newslatter-area .newslatter-wrap .newslatter-searchbox .searchBox-wrap {
  position: relative;
}
.newslatter-area .newslatter-wrap .newslatter-searchbox .searchBox-wrap input {
  height: 58px;
  background: #fff;
  border-radius: 5px;
  border: none;
}
.newslatter-area .newslatter-wrap .newslatter-searchbox .searchBox-wrap .news-inner-btn {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 15px;
  background: #00bfff;
  border-radius: 5px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  cursor: pointer;
  border: none;
}
.newslatter-area .newslatter-wrap .newslatter-searchbox .searchBox-wrap .news-inner-btn i {
  margin-left: 8px;
}
.newslatter-area .newslatter-wrap .newslatter-searchbox .searchBox-wrap .news-inner-btn i::before {
  vertical-align: middle;
}

/* =============================
      Newslatter area end
==============================*/
/* =============================
     16. Footer area start
==============================*/
.footer-area {
  background: linear-gradient(rgba(39, 39, 43, 0.95) 100%, rgba(39, 39, 43, 0.95) 100%), url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 160px;
  color: #fff;
  overflow-x: hidden;
}
.footer-area .footer-description {
  padding: 30px 0;
}
.footer-area .footer-social-icon h5 {
  font-size: 20px;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}
.footer-area .footer-social-icon h5::before {
  position: absolute;
  bottom: -12px;
  left: 0;
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 4px;
  background: #fff;
}
.footer-area .footer-social-icon ul {
  display: flex;
}
.footer-area .footer-social-icon ul li a {
  display: inline-block;
  height: 30px;
  width: 30px;
  color: #ffffff;
  text-align: center;
  line-height: 31px;
  margin-right: 15px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.footer-area .footer-social-icon ul li a:hover {
  background: #00bfff;
  color: #fff;
  border: 1px solid #00bfff;
}
.footer-area .footer-social-icon ul li a i {
  font-size: 14px;
}
.footer-area .footer-links h5 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 44px;
  position: relative;
  display: inline-block;
}
.footer-area .footer-links h5::before {
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 4px;
  background: #fff;
}
.footer-area .footer-links ul li {
  margin-bottom: 20px;
}
.footer-area .footer-links ul li:last-child {
  margin-bottom: 0;
}
.footer-area .footer-links ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  transition: all 0.2s;
  font-size: 1rem;
}
.footer-area .footer-links ul li a:hover {
  color: #00bfff;
}
.footer-area .footer-links ul li a i {
  margin-right: 10px;
}
.footer-area .footer-contact h5 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 44px;
  position: relative;
  display: inline-block;
}
.footer-area .footer-contact h5::before {
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 4px;
  background: #fff;
}
.footer-area .footer-contact .contact-box {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
}
.footer-area .footer-contact .contact-box .contact-info a {
  display: block;
  color: #fff;
}
.footer-area .footer-contact .contact-box:last-child {
  margin-bottom: 0;
}
.footer-area .footer-contact .contact-box .contact-icon {
  min-width: 30px;
  max-width: 30px;
}
.footer-area .footer-contact .contact-box .contact-icon i {
  font-size: 18px;
}
.footer-area .copyright-area {
  margin-top: 75px;
  text-align: center;
  padding: 25px;
  color: #ffffff;
  font-size: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.footer-area .copyright-area p {
  font-size: 14px;
}

/* =============================
      Footer area end
==============================*/
/* =============================
   17. Service page css start
==============================*/
.previous-work-head.section-head {
  text-align: center;
}

.previuous-btn {
  text-align: center;
  margin-top: 10px;
}

.single-project {
  margin-bottom: 55px;
}
.single-project:last-child {
  margin-bottom: 0;
}
.single-project .project-info-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.single-project .project-info-wrap .project-info h5 {
  font-size: 40px;
  font-weight: 500;
  padding: 15px 20px;
  background: #00bfff;
  display: inline-block;
  color: #fff;
  border-radius: 5px 50px 50px 5px;
}
.single-project .project-info-wrap .project-info h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 47px;
  text-transform: capitalize;
  color: #19194F;
  padding: 30px 0 20px 0;
}
.single-project .project-info-wrap .project-info p {
  line-height: 28px;
  color: #707070;
}
.single-project .project-info-wrap .project-info .single-project-btn {
  margin-top: 60px;
}
.single-project .project-info-wrap .project-info .single-project-btn a {
  font-weight: 500;
  font-size: 18px;
  color: #707070;
  display: inline-block;
  transition: all 0.3s ease;
}
.single-project .project-info-wrap .project-info .single-project-btn a:hover {
  color: #00bfff;
}
.single-project .project-info-wrap .project-info .single-project-btn a:hover i {
  margin-left: 12px;
}
.single-project .project-info-wrap .project-info .single-project-btn a i {
  margin-left: 8px;
  transition: all 0.3s ease;
}
.single-project .project-info-wrap .project-info .single-project-btn a i::before {
  vertical-align: middle;
}

.sd-sidebar h4.sd-head {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}
.sd-sidebar h4.sd-head::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 4px;
  background: #19194F;
  border-radius: 4px;
  bottom: -15px;
  left: 0;
}
.sd-sidebar .sd-category {
  padding: 35px 45px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
}
.sd-sidebar .sd-category ul.category-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.sd-sidebar .sd-category ul.category-list li a {
  font-size: 1rem;
  color: #707070;
}
.sd-sidebar .sd-category ul.category-list li:hover {
  border-bottom: 1px solid #00bfff;
}
.sd-sidebar .sd-category ul.category-list li:hover a {
  color: #19194F;
}
.sd-sidebar .sd-category ul.category-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.sd-sidebar .sd-category ul.category-list li i {
  margin-right: 8px;
}
.sd-sidebar .sd-category ul.category-list li i::before {
  vertical-align: middle;
}
.sd-sidebar .sd-address {
  margin-top: 40px;
  padding: 35px 45px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
}
.sd-sidebar .sd-address h5 {
  font-size: 20px;
  color: #27272B;
}
.sd-sidebar .sd-address a {
  display: block;
  font-family: "Open Sans", sans-serif;
  line-height: 26px;
  color: #707070;
}
.sd-sidebar .sd-address a.sd-location {
  margin: 15px 0 15px 0;
}
.sd-sidebar .sd-address a.sd-phone {
  margin-bottom: 10px;
}
.sd-sidebar .sd-address a.sd-phone:last-child {
  margin-bottom: 0;
}
.sd-sidebar .sd-document {
  margin-top: 40px;
  padding: 35px 45px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
}
.sd-sidebar .sd-document .single-document {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sd-sidebar .sd-document .single-document:last-child {
  margin-bottom: 0;
}
.sd-sidebar .sd-document .single-document:hover a {
  color: #00bfff;
}
.sd-sidebar .sd-document .single-document .document-icon {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid #00bfff;
  text-align: center;
  line-height: 46px;
  margin-right: 12px;
}
.sd-sidebar .sd-document .single-document .document-icon i {
  color: #00bfff;
  font-size: 22px;
}
.sd-sidebar .sd-document .single-document a {
  font-size: 1rem;
  color: #707070;
  transition: all 0.2s;
}

.sd-info h4.sd-head {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}
.sd-info h4.sd-head::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 4px;
  background: #19194F;
  border-radius: 4px;
  bottom: -15px;
  left: 0;
}
.sd-info p {
  font-size: 1rem;
  line-height: 25px;
  color: #707070;
  margin-bottom: 20px;
}
.sd-info .sd-thumb {
  position: relative;
  margin: 50px 0 30px 0;
}
.sd-info .sd-thumb img {
  border-radius: 5px;
}
.sd-info .sd-thumb .sd-video {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: #fff;
  color: #00bfff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sd-info .sd-thumb .sd-video span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: video-pulse 3s linear infinite;
  animation-delay: calc(-0.5s * var(--i));
}
@keyframes video-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.sd-info .sd-thumb .sd-video a i {
  font-size: 30px;
  position: absolute;
  color: #00bfff;
  left: 50%;
  top: 50%;
  transform: translate(-46%, -46%);
}
.sd-info .sd-opning-wrap .sd-opning {
  padding: 15px;
  background: #00bfff;
  box-shadow: 0px 4px 20px rgba(103, 103, 103, 0.05);
  border-radius: 5px;
}
.sd-info .sd-opning-wrap .sd-opning .single-day {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.sd-info .sd-opning-wrap .sd-opning .single-day:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sd-info .sd-opning-wrap .sd-opning .single-day p {
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  line-height: 22px;
}

.service-gallary .section-head {
  text-align: center;
}

.s-gallary-card {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 24px;
  position: relative;
}
.s-gallary-card:hover .s-gallary-overlay {
  opacity: 1;
}
.s-gallary-card:hover img {
  transform: scale(1.05);
}
.s-gallary-card img {
  width: 100%;
  transition: all 0.3s;
}
.s-gallary-card .s-gallary-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 43, 0.8);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}
.s-gallary-card .s-gallary-overlay .watch-icon {
  margin: 0 auto;
  width: 44px;
  height: 34px;
  border-radius: 2px;
  border: 1px solid #fff;
  text-align: center;
  cursor: pointer;
}
.s-gallary-card .s-gallary-overlay .watch-icon a, .s-gallary-card .s-gallary-overlay .watch-icon i {
  font-size: 26px;
  color: #fff;
}
.s-gallary-card .s-gallary-overlay h5 {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  max-width: 222px;
  margin: 0 auto;
  margin-top: 30px;
}

.qoute-form .section-head {
  text-align: center;
}
.qoute-form .quote-img {
  display: flex;
  height: 100%;
}
.qoute-form .quote-img img {
  width: 100%;
}
.qoute-form .quote-main-form {
  background: #27272B;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  align-items: center;
}
.qoute-form .quote-main-form .quote-from-wrap {
  max-width: 542px;
}
.qoute-form .quote-main-form .quote-from-wrap h5 {
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.qoute-form .quote-main-form .quote-from-wrap input, .qoute-form .quote-main-form .quote-from-wrap textarea {
  background: transparent;
  margin-bottom: 20px;
  color: #fff;
}
.qoute-form .quote-main-form .quote-from-wrap input {
  height: 45px;
}
.qoute-form .quote-main-form .quote-from-wrap input[type=checkbox] {
  height: 20px;
  width: 20px;
  padding: 8px;
  margin-bottom: 0;
  margin-right: 10px;
  margin-top: 5px;
}
.qoute-form .quote-main-form .quote-from-wrap input[type=submit] {
  border: 1px solid #fff;
  color: #fff;
}
.qoute-form .quote-main-form .quote-from-wrap .save-check {
  color: #fff;
  display: flex;
  height: 50px;
  margin-bottom: 25px;
}
.qoute-form .quote-main-form .quote-from-wrap .save-check label {
  font-family: "Open Sans", sans-serif;
}

.qoute-form {
  overflow: hidden;
}

/* =============================
    Service page css end
==============================*/
/* =============================
  18. Blog page css start
==============================*/
.blog-card-xl {
  margin-top: 30px;
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
}
.blog-card-xl a.blog-title-xl {
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  color: #19194F;
  margin-bottom: 30px;
  display: block;
}
.blog-card-xl .blog-thumb-xl img {
  border-radius: 5px;
  width: 100%;
}
.blog-card-xl .blog-info {
  padding: 20px 0 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-xl .blog-info .writer-info, .blog-card-xl .blog-info .blog-date {
  display: flex;
  align-items: center;
}
.blog-card-xl .blog-info .writer-info .writer-img img, .blog-card-xl .blog-info .blog-date .writer-img img {
  width: 27px;
  height: 27px;
  border-radius: 50%;
}
.blog-card-xl .blog-info .writer-info .date-icon, .blog-card-xl .blog-info .blog-date .date-icon {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px #E2E2E2;
  text-align: center;
  line-height: 20px;
}
.blog-card-xl .blog-info .writer-info .date-icon i, .blog-card-xl .blog-info .blog-date .date-icon i {
  color: #00bfff;
  font-size: 12px;
}
.blog-card-xl .blog-info .writer-info span, .blog-card-xl .blog-info .blog-date span {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #27272B;
  margin-left: 10px;
}
.blog-card-xl .blog-info .writer-info span a, .blog-card-xl .blog-info .blog-date span a {
  color: #00bfff;
}
.blog-card-xl p {
  color: #707070;
  font-size: 1rem;
}
.blog-card-xl .blog-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-xl .blog-bottom .blog-icons {
  display: flex;
}
.blog-card-xl .blog-bottom .blog-icons .blog-single-icon {
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.1);
  height: 32px;
  width: 32px;
  text-align: center;
  border-radius: 50%;
  margin-left: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-card-xl .blog-bottom .blog-icons .blog-single-icon:hover {
  background: #00bfff;
}
.blog-card-xl .blog-bottom .blog-icons .blog-single-icon:hover i {
  color: #fff;
}
.blog-card-xl .blog-bottom .blog-icons .blog-single-icon i {
  font-size: 1rem;
  color: #00bfff;
  line-height: 36px;
}

.blog-sidebar h4.sidebar-head {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}
.blog-sidebar h4.sidebar-head::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 4px;
  background: #19194F;
  border-radius: 4px;
  bottom: -15px;
  left: 0;
}
.blog-sidebar .b-sidebar-search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  padding: 10px;
}
.blog-sidebar .b-sidebar-search input {
  border: 1px solid rgba(51, 51, 65, 0.4);
  border-radius: 100px;
  height: 44px;
  margin-bottom: 0;
  padding: 0px 42px 0px 15px;
}
.blog-sidebar .b-sidebar-search i {
  color: #00bfff;
  font-size: 20px;
  margin-left: -35px;
}
.blog-sidebar .b-sidebar-category {
  padding: 30px 35px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  margin-top: 40px;
}
.blog-sidebar .b-sidebar-category ul.category-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.blog-sidebar .b-sidebar-category ul.category-list li a {
  font-size: 1rem;
  color: #707070;
}
.blog-sidebar .b-sidebar-category ul.category-list li:hover {
  border-bottom: 1px solid #00bfff;
}
.blog-sidebar .b-sidebar-category ul.category-list li:hover a {
  color: #19194F;
}
.blog-sidebar .b-sidebar-category ul.category-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.blog-sidebar .b-sidebar-category ul.category-list li i {
  margin-right: 8px;
}
.blog-sidebar .b-sidebar-category ul.category-list li i::before {
  vertical-align: middle;
}
.blog-sidebar .b-sidebar-tags {
  padding: 30px 35px 20px 35px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  margin-top: 40px;
}
.blog-sidebar .b-sidebar-tags ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-sidebar .b-sidebar-tags ul li a {
  display: inline-block;
  font-size: 1rem;
  color: #707070;
  padding: 8px 12px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(70, 70, 70, 0.1);
  border-radius: 3px;
  margin: 0 10px 10px 0;
  transition: all 0.2s;
}
.blog-sidebar .b-sidebar-tags ul li a:hover {
  background: #00bfff;
  color: #fff;
}
.blog-sidebar .b-sidebar-posts {
  padding: 30px 35px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  margin-top: 40px;
}
.blog-sidebar .b-sidebar-posts ul.sidebar-blog-cards li.blog-card-sm {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.blog-sidebar .b-sidebar-posts ul.sidebar-blog-cards li.blog-card-sm:last-child {
  margin-bottom: 0;
}
.blog-sidebar .b-sidebar-posts ul.sidebar-blog-cards li.blog-card-sm .blog-sm-thumb {
  min-width: 100px;
  margin-right: 10px;
}
.blog-sidebar .b-sidebar-posts ul.sidebar-blog-cards li.blog-card-sm .blog-sm-thumb img {
  width: 100%;
  border-radius: 6px;
}
.blog-sidebar .b-sidebar-posts ul.sidebar-blog-cards li.blog-card-sm .blog-sm-info a.blog-sm-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #707070;
  margin-bottom: 12px;
  display: inline-block;
  transition: all 0.2s ease;
}
.blog-sidebar .b-sidebar-posts ul.sidebar-blog-cards li.blog-card-sm .blog-sm-info a.blog-sm-title:hover {
  color: #27272B;
}
.blog-sidebar .b-sidebar-posts ul.sidebar-blog-cards li.blog-card-sm .blog-sm-info .blog-sm-date i, .blog-sidebar .b-sidebar-posts ul.sidebar-blog-cards li.blog-card-sm .blog-sm-info .blog-sm-date span {
  font-size: 12px;
  color: #00bfff;
}
.blog-sidebar .b-sidebar-gallary {
  padding: 30px 35px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  margin-top: 40px;
}
.blog-sidebar .b-sidebar-gallary .b-gallary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  grid-gap: 15px;
  grid-template-areas: "g-img-1 g-img-2 g-img-3" "g-img-4 g-img-5 g-img-6";
}
.blog-sidebar .b-sidebar-gallary .b-gallary-grid img {
  border-radius: 2px;
  width: 100%;
}
.blog-sidebar .b-sidebar-gallary .g-img-1 {
  grid-area: g-img-1;
}
.blog-sidebar .b-sidebar-gallary .g-img-2 {
  grid-area: g-img-2;
}
.blog-sidebar .b-sidebar-gallary .g-img-3 {
  grid-area: g-img-3;
}
.blog-sidebar .b-sidebar-gallary .g-img-4 {
  grid-area: g-img-4;
}
.blog-sidebar .b-sidebar-gallary .g-img-5 {
  grid-area: g-img-5;
}
.blog-sidebar .b-sidebar-gallary .g-img-6 {
  grid-area: g-img-6;
}

.blog-d-wrap .blog-details {
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  padding: 30px;
}
.blog-d-wrap .blog-details .blog-d-gallary {
  margin-top: 20px;
  margin-bottom: 25px;
}
.blog-d-wrap .blog-details .blog-d-gallary .blog-d-gallary-item img {
  width: 100%;
}
.blog-d-wrap .blog-details .blog-d-thub img {
  width: 100%;
}
.blog-d-wrap .blog-details h4.blog-d-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  color: #19194F;
  margin-bottom: 15px;
}
.blog-d-wrap .blog-details .blog-d-info {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-d-wrap .blog-details .blog-d-info .writer-info, .blog-d-wrap .blog-details .blog-d-info .blog-date {
  display: flex;
  align-items: center;
}
.blog-d-wrap .blog-details .blog-d-info .writer-info .writer-img img, .blog-d-wrap .blog-details .blog-d-info .blog-date .writer-img img {
  width: 27px;
  height: 27px;
  border-radius: 50%;
}
.blog-d-wrap .blog-details .blog-d-info .writer-info .date-icon, .blog-d-wrap .blog-details .blog-d-info .blog-date .date-icon {
  height: 27px;
  width: 27px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px #E2E2E2;
  text-align: center;
  line-height: 27px;
}
.blog-d-wrap .blog-details .blog-d-info .writer-info .date-icon i, .blog-d-wrap .blog-details .blog-d-info .blog-date .date-icon i {
  color: #00bfff;
  font-size: 14px;
}
.blog-d-wrap .blog-details .blog-d-info .writer-info span, .blog-d-wrap .blog-details .blog-d-info .blog-date span {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #27272B;
  margin-left: 10px;
}
.blog-d-wrap .blog-details .blog-d-info .writer-info span a, .blog-d-wrap .blog-details .blog-d-info .blog-date span a {
  color: #00bfff;
}
.blog-d-wrap .blog-details p.hightlight-text {
  font-size: 20px;
  line-height: 26px;
  color: #27272B;
}
.blog-d-wrap .blog-details .blog-quote {
  background: #F3F3F3;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 25px 30px;
  margin: 30px 0;
  position: relative;
  display: flex;
  align-items: center;
}
.blog-d-wrap .blog-details .blog-quote .quote-icon {
  margin-right: 25px;
}
.blog-d-wrap .blog-details .blog-quote .quote-icon i {
  color: #DEDEDE;
  font-size: 30px;
}
.blog-d-wrap .blog-details .blog-quote .quote-icon i::before {
  vertical-align: middle;
}
.blog-d-wrap .blog-details .blog-quote p.main-quote {
  font-size: 1.2rem;
  line-height: 30px;
  color: #707070;
  margin-bottom: 0;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
}
.blog-d-wrap .blog-details p {
  font-size: 1rem;
  color: #707070;
  margin-bottom: 15px;
}
.blog-d-wrap .blog-details p:last-child {
  margin-bottom: 0;
}
.blog-d-wrap .feedbacks-wrap {
  margin-top: 40px;
}
.blog-d-wrap .feedbacks-wrap h4.fb-head {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}
.blog-d-wrap .feedbacks-wrap h4.fb-head::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 4px;
  background: #19194F;
  border-radius: 4px;
  bottom: -15px;
  left: 0;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment {
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  padding: 20px 25px;
  display: flex;
  margin-bottom: 30px;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment:last-child {
  margin-bottom: 0;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment:nth-child(even) {
  margin-left: 50px;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .commentor-img {
  max-width: 58px;
  min-width: 58px;
  margin-right: 20px;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-header {
  display: flex;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-header h5.commentor-name {
  font-weight: 700;
  font-size: 20px;
  color: #19194F;
  margin-right: 20px;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-header ul.commentor-rating {
  display: flex;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-header ul.commentor-rating li {
  margin-right: 5px;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-header ul.commentor-rating li i {
  color: #FFC107;
  font-size: 14px;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info p.comment-text {
  font-size: 1rem;
  line-height: 23px;
  color: #707070;
  margin: 18px 0 20px 0;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-footer ul.comment-icons {
  display: flex;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-footer ul.comment-icons li {
  height: 26px;
  width: 26px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.1);
  text-align: center;
  margin-right: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-footer ul.comment-icons li:hover {
  background: #00bfff;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-footer ul.comment-icons li:hover i {
  color: #fff;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-footer ul.comment-icons li i {
  font-size: 14px;
  color: #00bfff;
  line-height: 30px;
  transition: all 0.2s ease;
}
.blog-d-wrap .feedbacks-wrap ul.comment-section li.single-comment .comment-info .comment-footer strong.comment-date {
  font-weight: 600;
  font-size: 12px;
  color: #707070;
  font-family: "Open Sans", sans-serif;
}
.blog-d-wrap .comment-form {
  margin-top: 40px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  padding: 30px;
}
.blog-d-wrap .comment-form h4.fb-head {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}
.blog-d-wrap .comment-form h4.fb-head::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 4px;
  background: #19194F;
  border-radius: 4px;
  bottom: -15px;
  left: 0;
}
.blog-d-wrap .comment-form input, .blog-d-wrap .comment-form textarea {
  margin-bottom: 30px;
  border-radius: 5px;
}
.blog-d-wrap .comment-form input[type=submit] {
  margin-bottom: 0;
}

/* =============================
    Blog page css end
==============================*/
/* =============================
   19. Shop page css start
==============================*/
.product-filtering p.page-result {
  font-size: 1rem;
  color: #707070;
}
.product-filtering .filter-searchbar {
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.product-filtering .filter-searchbar input {
  border: 1px solid rgba(51, 51, 65, 0.4);
  border-radius: 100px;
  height: 44px;
  margin-bottom: 0;
  padding: 0px 42px 0px 15px;
}
.product-filtering .filter-searchbar i {
  color: #00bfff;
  font-size: 20px;
  margin-left: -35px;
  line-height: 1rem;
}
.product-filtering select.filter-select {
  border: none;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 2px;
  font-size: 1rem;
  color: #707070;
  height: 44px;
  margin-bottom: 0;
}

.product-wrapper {
  margin-top: 45px;
}

.product-card {
  border: 1px solid #EEEEEE;
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 24px;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-card .product-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product-card .product-img a.product-card-icon {
  height: 36px;
  width: 36px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.1);
  text-align: center;
  line-height: 42px;
  position: absolute;
  left: 25px;
  top: 25px;
  display: inline-block;
  border-radius: 50%;
}
.product-card .product-img a.product-card-icon i {
  font-size: 20px;
  color: #00bfff;
}
.product-card .product-img img {
  transition: all 0.3s;
}
.product-card .product-info {
  padding: 25px 20px;
  background: #fff;
  text-align: center;
}
.product-card .product-info a.product-title {
  font-size: 1rem;
  color: #19194F;
  font-weight: 600;
}
.product-card .product-info h5.product-price {
  font-weight: 500;
  font-size: 20px;
  color: #00bfff;
  margin-top: 5px;
}
.product-card .product-info del {
  font-size: 12px;
  text-decoration-line: line-through;
  color: #707070;
}

.product-details {
  margin-top: 70px;
}
.product-details .product-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}
.product-details .product-info h3.product-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  color: #19194F;
}
.product-details .product-info .product-status {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-details .product-info .product-status .product-pricing h5 {
  font-weight: 700;
  font-size: 25px;
  color: #00bfff;
}
.product-details .product-info .product-status .product-pricing h5 del {
  font-size: 1rem;
  color: #707070;
  margin-left: 12px;
}
.product-details .product-info .product-status .product-rating {
  display: flex;
}
.product-details .product-info .product-status .product-rating ul {
  display: flex;
}
.product-details .product-info .product-status .product-rating ul li {
  color: #FFC107;
  margin-right: 5px;
}
.product-details .product-info .product-status .product-rating ul li i {
  font-size: 13px;
}
.product-details .product-info .product-status .product-rating strong {
  margin-left: 10px;
  color: #707070;
  font-weight: 400;
}
.product-details .product-info p {
  color: #707070;
  margin-bottom: 30px;
}
.product-details .product-info ul.product-feature li {
  font-weight: 600;
  font-size: 1rem;
  color: #27272B;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 15px;
}
.product-details .product-info ul.product-feature li:last-child {
  margin-bottom: 0;
}
.product-details .product-info ul.product-feature li span {
  color: #707070;
}
.product-details .product-info .product-quantity {
  margin-top: 30px;
}
.product-details .product-info .product-quantity h5 {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #19194F;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
.product-details .product-info .product-quantity .product-number {
  display: flex;
  align-items: center;
}
.product-details .product-info .product-quantity .product-number input {
  width: 65px;
  color: #3F6844;
  border: 1px solid #00bfff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  height: 40px;
  text-align: center;
}
.product-details .product-info .product-quantity .product-number span {
  padding: 0 7px;
  cursor: pointer;
  height: 40px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00bfff;
}
.product-details .product-info .product-quantity .product-number span.minus {
  border-right: 0;
  border-radius: 40px 0 0 40px;
}
.product-details .product-info .product-quantity .product-number span.plus {
  border-left: 0;
  border-radius: 0 40px 40px 0;
}
.product-details .product-info .quantity-input {
  display: flex;
  align-items: center;
}
.product-details .product-info .quantity-input .cartadd-btn {
  margin-left: 30px;
}

.shop-bottom .nav-tabs.shop-tabs {
  border-bottom: none;
  background: #fff;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 3px;
}
.shop-bottom .nav-tabs.shop-tabs button.nav-link {
  font-weight: 500;
  font-size: 20px;
  color: #00bfff;
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 0.7rem 1.5rem;
}
.shop-bottom .nav-tabs.shop-tabs button.nav-link.active {
  background: #00bfff;
  color: #fff;
  border: none;
  border-radius: 0;
}
.shop-bottom .tab-content {
  margin-top: 40px;
  background: #FFFFFF;
}
.shop-bottom .tab-content .product-discription {
  padding: 30px 35px;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
}
.shop-bottom .tab-content .product-discription p {
  font-size: 1rem;
  line-height: 25px;
  color: #707070;
  margin-bottom: 20px;
}
.shop-bottom .tab-content .product-discription p:last-child {
  margin-bottom: 0;
}
.shop-bottom .tab-content .product-review-side .product-reviews {
  padding: 6px 30px 30px 30px;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
}
.shop-bottom .tab-content .product-review-side .review-form {
  margin-top: 50px;
}
.shop-bottom .tab-content .product-review-side .review-form h4 {
  font-weight: 700;
  font-size: 28px;
  color: #19194F;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}
.shop-bottom .tab-content .product-review-side .review-form h4::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 4px;
  background: #19194F;
  border-radius: 4px;
  bottom: -15px;
  left: 0;
}
.shop-bottom .tab-content .product-review-side .review-form input, .shop-bottom .tab-content .product-review-side .review-form textarea {
  margin-bottom: 30px;
}
.shop-bottom .tab-content .product-review-side .review-form input[type=submit] {
  margin-bottom: 0;
}

.product-review-card {
  margin-top: 24px;
  background: #FFFFFF;
  border: 1px solid #E7E7E7;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 15px;
}
.product-review-card .p-review-head {
  display: flex;
  justify-content: space-between;
}
.product-review-card .p-review-head .reviewer-info {
  display: flex;
  align-items: center;
}
.product-review-card .p-review-head .reviewer-info .reviewer-img {
  max-width: 58px;
  margin-right: 20px;
}
.product-review-card .p-review-head .reviewer-info .reviewer-id h5.reviewer-name {
  font-weight: 500;
  font-size: 20px;
  color: #27272B;
  margin-bottom: 5px;
}
.product-review-card .p-review-head .reviewer-info .reviewer-id ul {
  display: flex;
}
.product-review-card .p-review-head .reviewer-info .reviewer-id ul li {
  margin-right: 5px;
}
.product-review-card .p-review-head .reviewer-info .reviewer-id ul li i {
  color: #FFC107;
  font-size: 13px;
}
.product-review-card .p-review-head span.review-date {
  font-size: 12px;
  color: #707070;
  font-family: "Open Sans", sans-serif;
}
.product-review-card .p-review-texts p {
  color: #707070;
  font-size: 1rem;
  margin: 15px 0;
}
.product-review-card .p-review-icons ul {
  display: flex;
}
.product-review-card .p-review-icons ul li {
  height: 25px;
  width: 25px;
  background: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  margin-right: 15px;
  cursor: pointer;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.1);
  transition: all 0.2s ease;
}
.product-review-card .p-review-icons ul li:hover {
  background: #00bfff;
}
.product-review-card .p-review-icons ul li:hover i {
  color: #fff;
}
.product-review-card .p-review-icons ul li i {
  font-size: 14px;
  color: #00bfff;
  line-height: 30px;
  transition: all 0.2s ease;
}

#img-zoomer-box {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 10px;
}

#img1 {
  width: 100%;
  height: auto;
}

#img-zoomer-box:hover, #img-zoomer-box:active {
  cursor: none;
  display: block;
}

#img-zoomer-box:hover #img2, #img-zoomer-box:active #img2 {
  opacity: 1;
}

#img2 {
  width: 250px;
  height: 250px;
  background: url("../images/shop/pd-xl.png") no-repeat #FFF;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  position: absolute;
  opacity: 0;
  z-index: 99;
  display: block;
  transition: opacity 0.2s;
}

/* =============================
    Shop page end
==============================*/
/* =============================
   20. Error page css start
==============================*/
.error-head.section-head {
  text-align: center;
  margin: 0 auto;
  max-width: 855px;
}
.error-head.section-head p {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 22px;
  color: #707070;
}

.error-content {
  text-align: center;
}
.error-content .error-illustration {
  margin: 60px 0;
}

/* =============================
    Error page end
==============================*/
/* =============================
   21. Contact page css start
==============================*/
.section-head.contact-head {
  text-align: center;
  margin: 0 auto;
  max-width: 650px;
}

.contact-cards {
  padding: 35px 30px;
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
}
.contact-cards li.contact-card-sm {
  display: flex;
  margin-bottom: 60px;
  align-items: center;
}
.contact-cards li.contact-card-sm:last-child {
  margin-bottom: 0;
}
.contact-cards li.contact-card-sm .contact-icon {
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  background: #00bfff;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  display: inline-block;
  margin-right: 12px;
}
.contact-cards li.contact-card-sm .contact-icon i {
  font-size: 24px;
  color: #fff;
}
.contact-cards li.contact-card-sm .contact-info h5 {
  font-weight: 500;
  font-size: 20px;
  color: #27272B;
  margin-bottom: 6px;
}
.contact-cards li.contact-card-sm .contact-info a {
  font-weight: 600;
  font-size: 1rem;
  color: #707070;
  font-family: "Open Sans", sans-serif;
  display: block;
  line-height: 26px;
}

.contact-form h5 {
  font-weight: 500;
  font-size: 20px;
  color: #707070;
  margin-bottom: 35px;
  margin-top: 15px;
}
.contact-form input,
.contact-form textarea {
  border-radius: 5px;
  margin-bottom: 30px;
}
.contact-form input[type=submit] {
  margin-bottom: 0;
}
.contact-form p.form-message.error {
  margin-top: 20px;
  color: red;
}
.contact-form p.form-message.success {
  margin-top: 20px;
  color: green;
}

.contact-map .contact-map-wrap {
  height: 470px;
  width: 100%;
}
.contact-map .map-wrap {
  background: #FFFFFF;
  box-shadow: 4px 0px 20px rgba(70, 70, 70, 0.08);
  border-radius: 5px;
  padding: 35px;
}
.contact-map .map-wrap .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 470px;
  width: 100%;
}
.contact-map .map-wrap .mapouter {
  position: relative;
  text-align: right;
  height: 470px;
  width: 100%;
}

h4.faq-head {
  font-weight: 700;
  font-size: 28px;
  color: #19194F;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}
h4.faq-head::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 4px;
  background: #19194F;
  border-radius: 4px;
  bottom: -15px;
  left: 0;
}

.faq-accordion-two {
  margin-top: 50px;
}

.faq-accordion .accordion-item {
  margin-bottom: 30px;
}

/* =============================
    Contact area emd
==============================*/
/* =============================
   22. Portfolio Page css start
==============================*/
.section-head.portfolio-wrapper-head {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
}
.section-head.portfolio-wrapper-head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 4px;
  background: #19194F;
  border-radius: 5px;
}
.section-head.portfolio-wrapper-head p {
  padding-top: 10px;
  color: #707070;
  max-width: 530px;
  margin: 0 auto;
}

.portfolio-bar {
  text-align: center;
  margin-top: 70px;
}
.portfolio-bar ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.portfolio-bar ul li {
  font-size: 1rem;
  color: #27272B;
  border: 1px solid #FFCAC8;
  padding: 7px 22px;
  border-radius: 44px;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 10px;
}
.portfolio-bar ul li.active {
  background: #00bfff;
  color: #fff;
  border: 1px solid #00bfff;
}

.portfolio-grid {
  margin-top: 20px;
}

.portfolio-card-2 {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.portfolio-card-2:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-card-2:hover img {
  transform: scale(1.05);
}
.portfolio-card-2 img {
  width: 100%;
  transition: all 0.3s;
}
.portfolio-card-2 .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 43, 0.8);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}
.portfolio-card-2 .portfolio-overlay .watch-icon {
  margin: 0 auto;
  width: 44px;
  height: 34px;
  border-radius: 2px;
  border: 1px solid #fff;
  text-align: center;
  cursor: pointer;
}
.portfolio-card-2 .portfolio-overlay .watch-icon a, .portfolio-card-2 .portfolio-overlay .watch-icon i {
  font-size: 26px;
  color: #fff;
}
.portfolio-card-2 .portfolio-overlay h5 {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  max-width: 222px;
  margin: 0 auto;
  margin-top: 30px;
}

.portfolio-wrapper-btn {
  margin-top: 75px;
  text-align: center;
}

.mix {
  display: none;
}

.section-head.portfolio-details-head {
  text-align: center;
}

.working-process {
  margin-top: 26px;
}

.work-process-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 25px;
  background: #F9F9F9;
  border-radius: 5px;
  position: relative;
  margin-top: 24px;
}
.work-process-card h4.process-index {
  position: absolute;
  font-weight: 700;
  font-size: 36px;
  color: rgba(25, 25, 79, 0.15);
  right: 15px;
  top: 15px;
}
.work-process-card .work-p-icon i {
  font-size: 78px;
  color: #00bfff;
}
.work-process-card h5 {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  text-transform: capitalize;
}

.p-details {
  margin-top: 76px;
}
.p-details .p-details-img-grid img {
  margin-top: 24px;
}
.p-details .project-info {
  margin-top: 24px;
}
.p-details .project-info h4.pd-head {
  font-weight: 500;
  font-size: 20px;
  color: #19194F;
  text-transform: capitalize;
  margin-bottom: 30px;
  position: relative;
}
.p-details .project-info h4.pd-head::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 4px;
  background: #19194F;
  border-radius: 4px;
  bottom: -15px;
  left: 0;
}
.p-details .project-info p {
  font-size: 1rem;
  line-height: 25px;
  color: #707070;
}
.p-details .project-info .project-registration {
  margin: 20px 0;
}
.p-details .project-info .project-registration ul {
  margin-top: 25px;
}
.p-details .project-info .project-registration ul li {
  font-weight: 600;
  font-size: 1rem;
  color: #19194F;
  margin-bottom: 15px;
}
.p-details .project-info .project-registration ul li:last-child {
  margin-bottom: 0;
}
.p-details .project-info .project-registration ul li i {
  color: #00bfff;
  margin-right: 10px;
}
.p-details .project-info .project-registration ul li i::before {
  vertical-align: middle;
}
.p-details .project-info .project-share-option ul {
  display: flex;
  margin-top: 10px;
}
.p-details .project-info .project-share-option ul li {
  height: 38px;
  width: 38px;
  border: 1px solid #00bfff;
  border-radius: 50%;
  text-align: center;
  margin-right: 25px;
  transition: all 0.3s;
}
.p-details .project-info .project-share-option ul li:hover {
  background: #00bfff;
}
.p-details .project-info .project-share-option ul li:hover a {
  color: #fff;
}
.p-details .project-info .project-share-option ul li a {
  color: #00bfff;
  font-size: 18px;
  line-height: 40px;
}

/* =============================
    Portfolio Page css end
==============================*/
/*
==========================================
============= 19.CART PAGE STYLE =========
==========================================
*/
.cart-table-wrapper .cart-table {
  padding-top: 100px;
  padding-bottom: 67px;
}
.cart-table-wrapper .cart-table thead tr th {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #00bfff;
  text-transform: capitalize;
}
.cart-table-wrapper .cart-table table tbody tr .main-cart-product {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cart-table-wrapper .cart-table table tbody tr .main-cart-product .main-cart-img {
  max-width: 55px;
}
.cart-table-wrapper .cart-table table tbody tr .main-cart-product i {
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #F4795E;
  border-radius: 50%;
  color: #F4795E;
  margin-left: 27px;
  margin-right: 34px;
}
.cart-table-wrapper .cart-table table tbody tr .main-cart-product h5 {
  margin-left: 25px;
}
.cart-table-wrapper .cart-table table tbody tr .main-cart-product h5 a {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-decoration: none;
  color: #27272B;
}
.cart-table-wrapper .cart-table table tbody tr .main-cart-product h5 a:hover {
  color: #00bfff;
  transition: all 0.3s;
}
.cart-table-wrapper .cart-table table tbody tr td.product-quantity .product-number {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}
.cart-table-wrapper .cart-table table tbody tr td.product-quantity .product-number input {
  width: 40px;
  color: #27272B;
  border: 1px solid #27272B;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  min-height: auto;
  text-align: center;
  background: none;
  height: 32px;
  border-radius: 0;
}
.cart-table-wrapper .cart-table table tbody tr td.product-quantity .product-number input.minus {
  border: 1px solid #27272B;
  border-right: 0;
}
.cart-table-wrapper .cart-table table tbody tr td.product-quantity .product-number input.plus {
  border: 1px solid #27272B;
  border-left: 0;
}
.cart-table-wrapper .cart-table table tbody tr td.product-quantity .product-number span {
  padding: 0 7px;
  cursor: pointer;
}
.cart-table-wrapper .cart-table table tbody tr td.product-quantity .product-number span i {
  color: #27272B;
}
.cart-table-wrapper .cart-table table tbody tr td p.cart-price {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #27272B;
  text-align: center;
}
.cart-table-wrapper .cart-table table tbody tr td p.cart-stock {
  margin: 18px 0;
  text-align: center;
}
.cart-table-wrapper .cart-table table tbody tr td p.cart-btn {
  text-align: center;
  margin: 0;
}
.cart-table-wrapper .cart-table table tbody tr td p.cart-btn a {
  padding: 8px 18px;
  text-decoration: none;
  text-transform: capitalize;
  margin: 10px 0px;
  display: inline-block;
}
.cart-table-wrapper .cart-copon-box .cart-copon-input {
  display: inline-block;
}
.cart-table-wrapper .cart-copon-box .cart-copon-input label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #27272B;
  font-weight: 700;
  margin-bottom: 10px;
}
.cart-table-wrapper .cart-copon-box .cart-copon-input input {
  height: 45px;
  width: 270px;
  padding-left: 10px;
  border: 1px solid #00bfff;
}
.cart-table-wrapper .cart-copon-box .cart-copon-input input:focus {
  border: 1px solid #00bfff;
}
.cart-table-wrapper .cart-copon-box .cart-copon-btn {
  display: inline-block;
  margin-left: 30px;
}
.cart-table-wrapper .cart-copon-box .cart-copon-btn a {
  font-size: 15px;
}
.cart-table-wrapper .cart-total-table h5 {
  font-weight: 700;
  font-size: 22px;
  color: #27272B;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.cart-table-wrapper .cart-total-table table tbody .cart-total-amount {
  display: flex;
  justify-content: space-between;
}
.cart-table-wrapper .cart-total-table table tbody .cart-total-amount p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #27272B;
  text-transform: capitalize;
  padding: 0 30px;
}
.cart-table-wrapper .cart-total-table table tbody .cart-shipping {
  display: flex;
  justify-content: space-between;
}
.cart-table-wrapper .cart-total-table table tbody .cart-shipping p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #27272B;
  text-transform: capitalize;
  padding: 0 30px;
}
.cart-table-wrapper .cart-total-table table tbody .cart-shipping ul {
  margin-bottom: 0;
  margin-right: 50px;
}
.cart-table-wrapper .cart-total-table table tbody .cart-shipping ul li {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #5a5a5a;
  line-height: 34.8px;
}
.cart-table-wrapper .cart-total-table table tbody .cart-shipping ul:last-child {
  text-align: center;
}
.cart-table-wrapper .cart-total-btn {
  text-align: right;
  margin-top: 20px;
}
.cart-table-wrapper .cart-total-btn a {
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */
