/* Google Fonts */
/* @import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,300&family=Roboto:wght@300;400;500;700;900&display=swap"); */
/* Theme default css */
body {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-style: normal;
  background: #fff;
}

.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  color: white;
}

a:hover {
  color: #e8505b;
  text-decoration: none;
}

a,
button {
  outline: none;
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: none;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: #313131;
  margin-top: 0px;
  font-weight: 400;
  text-transform: capitalize;
}

h1 {
  font-size: 40px;
  font-weight: 500;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #555555;
}

label {
  color: #7e7e7e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}

.defalt-padding {
  padding: 120px 0px;
}

.section-padding {
  padding-bottom: 60px;
}

.bg-color {
  background: #f7f7f7;
}

.bg-white {
  background: #fff;
}

.bg-theme {
  background: #e8505b;
}

.pt-120 {
  padding-top: 120px;
}

/* Start button style */
.sub-btn {
  margin-top: 20px;
}

.read-more-btn {
  color: #0a1f44;
  font-weight: 600;
}

.btn {
  background: #e8505b;
  border: 1px solid #e8505b;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 16px 25px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #0a1f44;
  color: #fff;
  border: 1px solid #0a1f44;
  transition: all 0.3s ease-in-out;
}

/* End button style */
.breadcrumb > .active {
  color: #888;
}

/*Start Variable */
/* End Variable */
/* Start custom-class */
.theme-color {
  color: #e8505b;
}

.theme-color-hover {
  transition: 0.3s;
}
.theme-color-hover:hover {
  color: #e8505b;
}

.text-justify {
  text-align: justify;
}

/* End custom-class */
/* Preloader start */
#loading {
  background-color: #e8505b;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}
#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}
#loading #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}
#loading .loading-icon .loading-logo {
  width: 200px;
  height: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #loading #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #loading #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #loading #loading-center-absolute {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #loading #loading-center-absolute {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #loading #loading-center-absolute {
    width: 60%;
  }
}

/* Preloader end */
/* Start Header style */
/*sticky-header*/
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  background: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

/*End sticky-header*/
#header-top {
  background: #e8505b;
}

.header-top-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header-top-area .h-left-area {
  display: flex;
}
.header-top-area .h-left-area li {
  padding: 6px 11px;
  color: #ffffff;
  border-left: 1px solid #f7f7f7;
  font-size: 16px;
  margin-left: 18px;
}
.header-top-area .h-left-area li:first-child {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}
.header-top-area .h-left-area li i {
  padding-right: 7px;
}
.header-top-area .h-right-area {
  display: flex;
}
.header-top-area .h-right-area li {
  padding: 5px 0px;
  border-right: 1px solid #f7f7f7;
}
.header-top-area .h-right-area li:first-child {
  border-left: 1px solid #f7f7f7;
}
.header-top-area .h-right-area li a {
  color: #ffffff;
  padding: 0px 14px;
  font-size: 18px;
}

/* End Header style */
/* Start Menu style */
.sticky .navbar {
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
  transition: all 0.3s ease-in-out;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link {
  color: #0a1f44;
  font-size: 16px;
  padding: 0px 15px;
  font-family: "Roboto", sans-serif;
  /* font-weight: 700; */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-out 0s;
}

.navbar-light .navbar-nav .active > .nav-link:hover {
  color: #e8505b;
  transition: all 0.3s ease-out 0s;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #e8505b;
  transition: all 0.3s ease-out 0s;
}

.navbar-light .navbar-brand {
  width: 150px;
}
.navbar-light .navbar-brand img {
  width: 100%;
}

.dropdown-menu {
  width: 250px;
  font-size: 14px;
  color: #ffffff;
  background-color: none;
  border: none;
  border-radius: none;
  padding-top: 38px;
  padding-bottom: 0;
}

.dropdown-item {
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  background-color: #e8505b;
  padding: 12px 22px;
  border-top: 1px solid #f1f1f1;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #e8505b;
}

.menu-search-cart li {
  float: left;
}

.menu-search {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 38px;
  color: #e8505b;
  border: 2px solid #f1f1f1;
  border-radius: 100%;
  margin: 33px 0px 13px;
  cursor: pointer;
}

.menu-search-form {
  position: absolute;
  height: 100%;
  width: 100%;
  color: #707070;
  top: 0;
  left: 0;
  text-align: center;
  display: none;
}

.menu-search-form.open {
  display: block;
}

.menu-search-form input {
  width: 100%;
  height: 100%;
  color: #707070;
  text-align: center;
  border: none;
  outline: none;
  padding: 15px 115px 15px 15px;
}

.menu-search-form .menu-search-close {
  position: absolute;
  right: 90px;
  top: 35%;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.menu_cart {
  position: relative;
}

.menu_cart > span {
  position: relative;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  color: #e8505b;
  border: 2px solid #e8505b;
  border-radius: 100%;
  margin: 33px 11px 26px 13px;
  cursor: pointer;
}

.menu_cart > span:before {
  content: "2";
  position: absolute;
  top: 7px;
  right: -13px;
  height: 20px;
  width: 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #e8505b;
  border-radius: 100%;
  text-align: center;
}

.menu_cart .shop_feature {
  background-color: #fff !important;
  width: 270px !important;
  padding: 10px 20px 20px !important;
  right: 0px;
  left: auto !important;
}

.menu_cart li {
  width: 100%;
}

.menu_cart .feature_item {
  position: relative;
  color: #363636;
  font-weight: 400;
  overflow: hidden;
  padding: 5px 0px;
}

.menu_cart .featured_image {
  float: left;
  margin-right: 10px;
}

.menu_cart .featured_content {
  display: table;
  font-size: 12px;
}

.menu_cart .featured_content > h3 {
  line-height: 15px;
}

.menu_cart .featured_content > h3 a {
  background-color: #fff;
  color: #000000 !important;
  font-size: 18px;
  font-weight: 500;
  padding: 0px;
  text-decoration: none;
  border: none;
}

.menu_cart .featured_content > h3 a:hover {
  color: #e8505b;
}

.menu_cart .featured_content p {
  color: #696969;
  font-size: 12px;
  text-transform: capitalize;
  line-height: 24px;
  display: inline-block;
  margin-right: 10px;
  margin-top: 2px;
  margin-bottom: 0px;
}

.menu_cart .featured_content > .remove {
  position: absolute;
  top: 12%;
  right: 8%;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
}

.menu_cart .featured_content > .remove:hover {
  color: #e8505b;
}

.menu_cart .cart_total {
  color: #696969;
  font-weight: 400;
  padding: 10px 0px;
  text-transform: capitalize;
}

.menu_cart .cart_total span {
  float: right;
}

.menu_cart .check_out {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  background-color: #e8505b;
  border-radius: 2px;
  padding: 11px 30px;
  transition: 0.25s ease-out;
}

/* End Menu style */
/* Start Banner style */
#banner {
  padding: 100px 0px;
}

.banner-content h3 {
  font-size: 24px;
  font-weight: 300;
  color: #232323;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.banner-content h4 {
  color: #0a1f44;
  font-size: 16px;
}
.banner-content h1 {
  font-size: 50px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 33px;
}
.banner-content span {
  color: #e8505b;
}
.banner-content p {
  margin-bottom: 50px;
}
.banner-content ul {
  display: flex;
}
.banner-content ul li {
  margin-left: 5px;
  font-size: 16px;
  font-weight: 400;
}
.banner-content ul li:first-child {
  margin-left: 0;
}
.banner-content ul li a {
  color: #0a1f44;
}

/* End Banner style */
/* Start Services style */
.service-area {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  background: #fff;
  margin-top: -40px;
  padding: 45px;
  margin-bottom: 50px;
}
.service-area h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 20px;
}
.service-area i {
  font-size: 50px;
  background: #b62013;
  color: #ffffff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 90px;
  margin-bottom: 25px;
}
.service-area p {
  margin-bottom: 25px;
}
.service-area:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.services.page3 .service-area {
  border: 2px solid #e8505b;
  border-radius: 12px;
  margin-bottom: 0;
  margin-top: 0;
  box-shadow: none;
  padding: 20px 15px;
}
.services.page3 .service-area:hover i {
  transform: rotateY(360deg);
}
.services.page3 .service-area p {
  margin-bottom: 0;
}
.services.page3 .service-area i {
  transition: 0.5s;
}

/* End Services style */
/* Start Services-area style */
#services-area {
  background: #2e4c0e;
}
#services-area .section-header h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
}
#services-area .section-header h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#services-area .service-h h2 {
  color: #0a1f44;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
}
#services-area .service-h h3 {
  color: #e8505b;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.services-item {
  display: flex;
  background: #ffffff;
  margin-bottom: 20px;
  padding: 50px;
}
.services-item .services-icon i {
  font-size: 50px;
  background: #b62014;
  color: #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 100px;
}
.services-item .services-content {
  margin-left: 28px;
}
.services-item .services-content a {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 15px;
  display: block;
}

.s-box {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.s-box:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

/* End Services-area style */
/* Start Services-Singal style */
.services-s-all-service {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-bottom: 40px;
}
.services-s-all-service .services-s-title h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 25px 40px;
}
.services-s-all-service .services-s-item a {
  font-size: 16px;
  font-weight: 500;
  color: #0a1f44;
  transition: all 0.3s ease-in-out;
}
.services-s-all-service .services-s-item a:hover {
  color: #e8505b;
}
.services-s-all-service .services-s-item h4 {
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}
.services-s-all-service .services-s-item h4:last-child {
  border-bottom: none;
}

.service-s-about {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-bottom: 30px;
}
.service-s-about .services-s-title h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}
.service-s-about p {
  padding: 25px 30px;
}
.service-s-about .services-thumb {
  padding: 25px 35px;
}
.service-s-about .services-thumb img {
  background: #fafafa;
}
.service-s-about .services-download-area {
  padding: 25px 30px;
}
.service-s-about .services-download-area h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 35px;
}
.service-s-about .services-download-area .download-pdf {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.service-s-about .services-download-area .download-pdf a {
  font-size: 14px;
  padding: 20px 15px;
  font-weight: 500;
  color: #2cc374;
  display: flex;
  justify-content: space-between;
}
.service-s-about .services-download-area .download-pdf i {
  margin-left: 15px;
}
.service-s-about .services-download-area .download-pdf h4 {
  font-size: 14px;
  font-weight: 500;
  color: #2cc374;
  margin-right: 30px;
  margin-bottom: 0;
}
.service-s-about .services-download-area .download-zip {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-top: 10px;
}
.service-s-about .services-download-area .download-zip a {
  display: flex;
  padding: 20px 15px;
  color: #e8505b;
  justify-content: space-between;
}
.service-s-about .services-download-area .download-zip h4 {
  font-size: 14px;
  font-weight: 500;
  color: #e8505b;
  margin-right: 30px;
  margin-bottom: 0;
}
.service-s-about .services-download-area .download-zip i {
  margin-left: 15px;
}

.s-contact-info {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.s-contact-info h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}
.s-contact-info .s-c-info {
  display: flex;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}
.s-contact-info .s-c-info:last-child {
  border: none;
}
.s-contact-info .s-c-info i {
  font-size: 20px;
  color: #e8505b;
  padding-right: 15px;
}
.s-contact-info .s-c-info .c-info-details h4 {
  color: #0a1f44;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 11px;
}
.s-contact-info .s-c-info .c-info-details h5 {
  font-size: 16px;
}

/*Services-single-rigt style*/
.overview-thumb img {
  width: 100%;
  height: 100%;
}

.service-overview-content h3 {
  font-size: 24px;
  color: #0a1f44;
  font-weight: 500;
  margin-top: 42px;
  margin-bottom: 25px;
}

.services-single-work {
  display: flex;
}
.services-single-work .services-single-work-thumb {
  margin-left: 60px;
}
.services-single-work .left-thumb {
  margin-right: 50px;
  margin-top: 30px;
}

.service-s-range-area {
  display: flex;
}
.service-s-range-area .service-s-range-item {
  margin-right: 20px;
  margin-top: 15px;
}
.service-s-range-area .service-s-range-item .range-thumb img {
  width: 100%;
  height: 100%;
}
.service-s-range-area .range-content {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 25px;
}
.service-s-range-area .range-content h5 {
  font-size: 16px;
  color: #0a1f44;
  font-weight: 400;
  padding-bottom: 15px;
}
.service-s-range-area .range-content h4 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: 500;
}

.leadership-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.leadership-wrapper .leadership-team-area {
  display: flex;
  padding: 20px 100px 20px 15px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-right: 20px;
}
.leadership-wrapper .leadership-team-area .leadership-content {
  padding-left: 15px;
}
.leadership-wrapper .leadership-team-area .leadership-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
}
.leadership-wrapper .leadership-team-area .leadership-content h5 {
  font-size: 16px;
  color: #555;
}

/* End Services-Singal style */
/* Start Work style */
.work-area {
  overflow: hidden;
  position: relative;
}
.work-area .shape {
  position: absolute;
  top: 0;
  right: 0;
}
.work-area .work-thumb {
  position: relative;
}
.work-area .accordion {
  position: relative;
}

.work-content {
  position: relative;
}
.work-content h3 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #e8505b;
  margin-bottom: 15px;
}
.work-content h2 {
  font-size: 36px;
  color: #0a1f44;
  font-weight: 500;
  margin-bottom: 20px;
}
.work-content p {
  margin-bottom: 20px;
}

.work-area .accordion-button {
  font-size: 20px;
  font-family: "Teko", sans-serif;
  background: #e8505b;
  color: #fff;
  padding: 10px 10px 10px 70px;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  min-height: 60px;
  text-align: left;
}

.work-area .accordion-button::after {
  content: "\f067";
  font-family: "Font Awesome 6 free";
  font-weight: 600;
  font-size: 16px;
  margin-left: 0;
  background-image: none;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 100%;
  position: absolute;
  left: 10px;
  color: #fff;
}

.work-area .accordion-button:focus {
  box-shadow: none;
}

.work-area .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  content: "\f068";
}

.work-area .accordion-item {
  margin-bottom: 8px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
}

.work-area .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}

.work-area .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 5px;
}

.work-area .accordion-body {
  border: 0;
  padding: 20px 30px;
  position: relative;
  color: #0a1f44;
  text-align: justify;
}

.work-area .accordion-collapse {
  border: 0;
  background: #fff;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.work-area .accordion-button.collapsed {
  background: #fff;
  color: #0a1f44;
}

.work-area .accordion-button.collapsed:after {
  background: #e8505b;
}

.faq-area {
  background: #fff;
}

.work-area.accordion-bordered .accordion-item {
  border-color: #e8505b;
}

.question-content {
  text-align: center;
}

.question-content p {
  margin-bottom: 40px;
}

.faq-area .icon {
  max-width: 512px;
  margin: 0 auto;
}

.faq-area .icon img {
  width: 100%;
}

.work-info {
  display: flex;
}
.work-info .work-icon i {
  width: 50px;
  height: 50px;
  font-size: 30px;
  line-height: 50px;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  margin-right: 20px;
  display: inline-block;
  background: #e8505b;
}
.work-info .work-item h5 {
  font-size: 24px;
  color: #0a1f44;
  font-weight: 500;
  margin-bottom: 15px;
}

/* End Work style */
/* Start Project style */
#project {
  overflow: hidden;
}

.project-item {
  transition: all 0.3s;
  margin: 10px;
}
.project-item .p-thumb {
  position: relative;
}
.project-item .p-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-item .overlay-item {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.8);
  width: 94%;
  height: 94%;
  transform: translate(-50%, -50%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.project-item .overlay-item i {
  background: #e8505b;
  width: 50px;
  height: 50px;
  font-size: 25px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
  margin-left: 15px;
}
.project-item:hover .overlay-item {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.project-item:hover .p-content {
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.project-item:hover .p-content h4 {
  color: #e8505b;
  transition: all 0.3s ease-in-out;
}

/* Start Project style */
/* Project Button style */
.button-group .btn-active {
  color: #e8505b !important;
}

.button-group .btn {
  background: #ffffff;
  color: #0a1f44;
  border: 1px solid #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.button-group .btn:hover {
  color: #e8505b;
}

/* End Button style */
.bg-theme .project-header h2 {
  color: #ffffff;
  font-weight: 500;
  font-size: 36px;
}
.bg-theme .project-header h3 {
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
}

#project .section-header h2 {
  color: #0a1f44;
}
#project .section-header h3 {
  color: #e8505b;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
}

.project-item {
  position: relative;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.project-item .p-thumb {
  background: #fafafa;
}
.project-item .p-content {
  background: #ffffff;
  padding: 20px 20px;
}
.project-item .p-content h4 {
  font-size: 20px;
  color: #0a1f44;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 20px;
}
.project-item .p-content h5 {
  font-size: 16px;
  color: #8c8c8c;
  margin-bottom: 20px;
}

/* End Project style */
/* Start Question style */
#question-area {
  background: #fafafa;
}

.question-area {
  overflow: hidden;
  position: relative;
}
.question-area .shape {
  position: absolute;
  top: 0;
  left: 0;
}
.question-area .q-area-left {
  position: relative;
}
.question-area .q-area-left img {
  width: 98%;
}

.q-content {
  position: relative;
}
.q-content h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: #e8505b;
}
.q-content h2 {
  font-size: 36px;
  color: #0a1f44;
  font-weight: 500;
  margin-bottom: 30px;
}

.form-control {
  padding: 10px 15px;
  font-size: 16px;
  color: #495057;
  border: none;
}

.q-from {
  position: relative;
}
.q-from form .form-group input {
  width: 100%;
  border: 1px solid #fff;
  padding: 12px 10px;
  margin-bottom: 10px;
}
.q-from form .form-group textarea {
  width: 100%;
  border: 1px solid #fff;
  padding: 10px 10px 80px 10px;
}
.q-from .form-group1 {
  width: 100%;
}
.q-from .form-group1 input {
  border: 1px solid #fff;
  padding: 12px 10px;
  margin-bottom: 10px;
}
.q-from .form-group2 {
  width: 100%;
}
.q-from .form-group2 input {
  border: 1px solid #fff;
  padding: 12px 10px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.q-from textarea {
  color: #495057;
  font-size: 16px;
}

.contact-f form .form-group textarea {
  border: 1px solid #8c8c8c;
}

/* End Question style */
.sponsor-wrapper {
  /* padding-top: 60px;
  margin-top: 100px;
  border-top: 1px solid #e76f7a; */
}

.sponsor-wrapper.sponsor2 {
  padding-top: 0px;
  margin-top: 0px;
  border-top: none;
  border-bottom: 1px solid #e2e9f7;
  padding: 60px 0;
}

.sponsor-item {
  width: 160px;
  height: 50px;
  margin: 0 auto;
}

/* Start Client style */
#client .section-header h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
}
#client .section-header h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.client-section {
  background-image: url(../../assets/images/bg/1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.client-section.page3 .item-wrapper {
  border-radius: 12px;
}
.client-section.page3 .item-wrapper p {
  text-align: center;
}
.client-section.page3 .item-wrapper .c-icon {
  text-align: center;
  color: #e8505b;
  padding-bottom: 30px;
}
.client-section.page3 .item-area {
  display: flex;
  width: 237px;
  margin: 0 auto;
}

.item-wrapper {
  background: #ffffff;
  margin-left: 10px;
}
.item-wrapper p {
  padding: 20px 25px;
}
.item-wrapper .c-icon {
  color: #e8505b;
  margin-left: 30px;
  padding-bottom: 30px;
}

.item-area {
  display: flex;
}
.item-area img {
  width: 100%;
  height: 100%;
  margin: 20px;
}
.item-area .client-thumb {
  width: 60px;
  height: 60px;
}

.client-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
.client-wrapper .client-title {
  padding: 30px;
}
.client-wrapper .client-title h4 {
  color: #0a1f44;
  font-size: 18px;
  font-weight: 500;
}
.client-wrapper .client-title h5 {
  font-size: 15px;
  color: #8c8c8c;
}
.client-wrapper .client-logo {
  width: 60px;
  height: 60px;
  margin-right: 30px;
}

/* End Client style */
/* Start Blog Style */
#blog .section-header h2 {
  color: #0a1f44;
}
#blog .section-header h3 {
  color: #e8505b;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
}

.blog.page3 .btn:focus {
  color: white;
  box-shadow: none;
}

.blog-area {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: 0.3s;
}
.blog-area:hover {
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.3);
}
.blog-area .b-thumb {
  background: #fafafa;
}

.b-title a {
  font-size: 20px;
  font-weight: 500;
  color: #0a1f44;
  margin-top: 25px;
  margin-bottom: 15px;
  display: block;
  padding: 0px 30px;
  transition: 0.3s;
}
.b-title a:hover {
  color: #e8505b;
}

.b-text {
  display: flex;
  font-size: 16px;
  color: #888;
  margin-bottom: 15px;
  padding: 0px 30px;
}
.b-text span {
  margin: 0px 10px;
}

.b-content p {
  padding: 0px 30px;
}
.b-content .button-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f1f1;
  padding: 20px 30px;
}

.b-left {
  position: relative;
}
.b-left i {
  font-size: 25px;
  color: #555;
}
.b-left .badge-2 {
  position: absolute;
  top: -11px;
  left: 2px;
  background: #e8505b;
  color: #ffffff;
  border-radius: 50%;
  width: 22px;
  display: block;
  height: 22px;
  text-align: center;
  line-height: 13px;
  padding: 4px;
  font-size: 11px;
  letter-spacing: 1px;
}

/* End Blog Style */
/* Start Contact Style */
.c-wrapper {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 40px 25px;
}

.c-left-item {
  text-align: center;
  margin-bottom: 35px;
}
.c-left-item i {
  font-size: 36px;
  color: #e8505b;
  margin-bottom: 20px;
}
.c-left-item a {
  font-size: 16px;
  font-weight: 500;
  color: #555;
}
.c-left-item p {
  font-size: 16px;
}

.contact-f form .f-group input {
  border: 1px solid #8c8c8c;
}
.contact-f form .f-group .form-text textarea {
  border: 1px solid #8c8c8c;
}
.contact-f .form-group2 input {
  border: 1px solid #8c8c8c;
}

.f-c-left h3 {
  font-size: 24px;
  font-weight: 500;
  color: #0a1f44;
  margin-bottom: 15px;
}
.f-c-left h4 {
  font-size: 16px;
  font-weight: 400;
  color: #0a1f44;
  margin-bottom: 15px;
}

.i-left {
  text-align: left;
}

/* Start Map Style */
.map-section {
  position: relative;
  overflow: hidden;
  margin-bottom: -5px;
}

iframe {
  height: 650px;
  width: 100%;
}

#footer-contact {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 20px 0;
  background: transparent;
  width: 100%;
}
#footer-contact .container {
  background-color: white;
  padding: 30px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

/* End Map Style */
/* End Contact Style */
/* Start Footer Style */
#footer {
  position: relative;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-shape img {
  width: 100%;
  height: 100%;
}

.footer-space {
  position: relative;
  z-index: 1;
}

.f-title .read-more-btn {
  color: #ffffff;
}
.f-title .read-more-btn:hover {
  color: #e8505b;
  transition: all 0.3s ease-in-out;
}
.f-title h3 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 500;
  padding-bottom: 20px;
}

.f-title p {
  color: #ffffff;
}

.f-post {
  display: flex;
}
.f-post .post-text {
  margin-left: 20px;
}
.f-post .post-text a {
  font-size: 16px;
  color: #ffffff;
}
.f-post .post-text a:hover {
  color: #e8505b;
  transition: all 0.3s ease-in-out;
}
.f-post .post-text h5 {
  font-size: 16px;
  color: #ffffff;
  margin-top: 10px;
}

.f-border {
  border-top: 1px solid #888;
  padding-top: 20px;
}

.email input {
  border: 1px solid #888;
  background: none;
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px 20px;
  border-radius: 3px;
}
.email :focus {
  background: #fff;
  outline: none;
  box-shadow: none;
  border: 1px solid #fff;
}

.sub-btn i {
  margin-right: 15px;
}

.f-bottom {
  border-top: 1px solid #888;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.f-bottom p {
  color: #ffffff;
  margin-bottom: 0;
}
.f-bottom a {
  color: #e8505b;
}

.footer-space {
  padding: 70px 0px;
}

/* End Footer Style */
/* ScrollUp */
.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: none;
  z-index: 999;
}

.scrollup i {
  font-size: 20px;
  background: #e8505b;
  color: #fff;
  padding: 10px;
  border-radius: 12px;
  border: 2px solid #e76f7a;
}

/* Start Index-2 Style 
======================*/
/* Start Team Style */
.section-header h2 {
  color: #0a1f44;
}
.section-header h3 {
  color: #e8505b;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 400;
}

.team-area {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.team-area:hover {
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.team-area .team-thumb {
  padding-top: 25px;
}
.team-area .team-d a {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.team-area .team-d a:hover {
  color: #e8505b;
}
.team-area .team-d h5 {
  font-size: 16px;
  color: #8c8c8c;
  padding-bottom: 10px;
}
.team-area .team-social {
  border-top: 1px solid #f0f0f0;
}
.team-area .team-social .fa-facebook-f {
  color: #3b5998;
}
.team-area .team-social .fa-linkedin-in {
  color: #3b5998;
}
.team-area .team-social .fa-vimeo-v {
  color: #23b6ea;
}
.team-area .team-social .fa-pinterest-p {
  color: #cb1f27;
}
.team-area .team-social i {
  margin-left: 10px;
  padding: 20px 0px;
  font-size: 16px;
}

/* End Team Style */
/* Start Team Single Style */
.team-s-wrapper {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 30px;
}
.team-s-wrapper .team-left-item .team-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-s-wrapper .team-right-details h3 {
  color: #00394f;
  font-size: 24px;
  font-weight: 500;
}
.team-s-wrapper .team-right-details h4 {
  color: #00394f;
  font-size: 16px;
  margin-bottom: 15px;
}
.team-s-wrapper .team-more h3 {
  color: #00394f;
  font-size: 24px;
  font-weight: 500;
  margin: 15px 0px;
}
.team-s-wrapper .team-more-details {
  display: flex;
  margin-top: 30px;
}
.team-s-wrapper .team-more-details .team-address-area h5 {
  font-size: 16px;
  color: #555;
  padding-bottom: 30px;
}
.team-s-wrapper .team-more-details .team-address-location h6 {
  font-size: 16px;
  color: #000;
  margin-left: 40px;
  padding-bottom: 30px;
  text-transform: lowercase;
}
.team-s-wrapper .team-following {
  display: flex;
}
.team-s-wrapper .team-following .fa-twitter {
  color: #23b6ea;
}
.team-s-wrapper .team-following .fa-instagram {
  color: #db4437;
}
.team-s-wrapper .team-following .fa-vimeo-v {
  color: #3b5998;
}
.team-s-wrapper .team-following .fa-behance {
  color: #0084ff;
}
.team-s-wrapper .team-following .fa-linkedin-in {
  color: #0084ff;
}
.team-s-wrapper .team-following .follow-us h5 {
  font-size: 16px;
  color: #555;
  margin-right: 40px;
}
.team-s-wrapper .team-following i {
  margin-right: 20px;
}
.team-s-wrapper .progress-area {
  margin-top: 50px;
}
.team-s-wrapper .progress-area h4 {
  font-size: 16px;
  color: #555;
}
.team-s-wrapper .progress-area h3 {
  font-size: 20px;
  color: #00394f;
  margin-bottom: 30px;
  font-weight: 500;
}
.team-s-wrapper .team-award {
  margin-top: 50px;
}
.team-s-wrapper .team-award h3 {
  font-size: 20px;
  color: #00394f;
  margin-bottom: 30px;
  font-weight: 500;
}
.team-s-wrapper .team-award .award-thumb-area {
  display: flex;
}
.team-s-wrapper .team-award .award-thumb-area .award-thumb {
  margin-right: 40px;
  margin-bottom: 40px;
}
.team-s-wrapper .team-award .award-thumb-area .award-thumb h4 {
  font-size: 16px;
  color: #555;
  padding-top: 15px;
}
.team-s-wrapper .team-award .award-thumb-area .award-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* percentCount */
.percentCount {
  font-family: "Roboto", sans-serif;
  color: #0a1f44;
}

/* End Team Single Style */
/* Start Pricing Style */
#pricing .section-header h2 {
  color: #0a1f44;
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
}
#pricing .section-header h3 {
  color: #e8505b;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.pricing-item {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-bottom: 30px;
}
.pricing-item .pricing-btn {
  padding-left: 40px;
  padding-bottom: 40px;
}
.pricing-item h6 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  padding: 40px;
}
.pricing-item .price-cost {
  background: #e8505b;
  padding: 40px 40px;
}
.pricing-item .price-cost span {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  padding-left: 15px;
}
.pricing-item .price-cost p {
  font-size: 16px;
  color: #ffffff;
  padding-left: 15px;
}

.price-details {
  padding: 40px;
}
.price-details li {
  padding: 10px 0px;
}
.price-details i {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  background: #e8505b;
  border-radius: 100%;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
}
.price-details .i-box {
  background: #8c8c8c;
}
.price-details .price-b {
  height: 20px;
  width: 20px;
  background: #e8505b;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
}

.pricing.page3 .pricing-item {
  border-radius: 12px;
}
.pricing.page3 .pricing-item h6 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  padding: 30px 0;
}
.pricing.page3 .pricing-item .pricing-btn {
  padding-left: 20px;
  padding-bottom: 30px;
}
.pricing.page3 .pricing-item .price-cost {
  padding: 10px;
}
.pricing.page3 .pricing-item .btn {
  border-radius: 5px;
}
.pricing.page3 .pricing-item.active {
  border: 3px solid #e8505b;
  box-shadow: 0px 15px 20px 0 rgba(0, 0, 0, 0.6);
  transform: scaleX(1.06);
}
.pricing.page3 .pricing-item.active .btn {
  background-color: #0a1f44;
  border: none;
}
.pricing.page3 .price-details {
  padding: 20px;
}
.pricing.page3 .price-details li {
  padding: 10px 0px;
}
.pricing.page3 .price-details i {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  background: #e8505b;
  border-radius: 100%;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
}
.pricing.page3 .price-details .i-box {
  background: #8c8c8c;
}
.pricing.page3 .price-details .price-b {
  height: 20px;
  width: 20px;
  background: #e8505b;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
}

/* End Pricing Style */
/* Start Blog Single Style */
.blog-single-area .b-item-area {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-bottom: 40px;
}
.blog-single-area .b-item-area .blog-quote {
  background: #e8505b;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  padding: 30px 50px 60px 55px;
}
.blog-single-area .b-item-area .blog-quote i {
  font-size: 50px;
  text-align: center;
  display: block;
  padding-bottom: 30px;
}
.blog-single-area .blog-single-thumb img {
  width: 100%;
  height: 100%;
}
.blog-single-area .blog-single-thumb-2 {
  margin: 30px 0px 30px 30px;
}
.blog-single-area .blog-single-thumb-2 img {
  width: 100%;
  height: 100%;
}
.blog-single-area .b-s-title {
  padding: 50px 0px 0px 30px;
}
.blog-single-area .b-s-title a {
  font-size: 30px;
  color: #0a1f44;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.blog-single-area .b-s-title a:hover {
  color: #e8505b;
}
.blog-single-area .b-text {
  padding: 20px 0px 15px 30px;
}
.blog-single-area .b-s-content {
  padding-left: 30px;
  padding-right: 40px;
}
.blog-single-area .blog-btn {
  padding: 30px 0px 42px 30px;
}
.blog-single-area .admin-comnt {
  background: #e8505b;
  margin: 30px 0px 30px 30px;
  padding: 30px;
}
.blog-single-area .admin-comnt p {
  color: #ffffff;
  font-size: 18px;
}
.blog-single-area .admin-comnt i {
  margin-right: 15px;
  color: #ffffff;
  font-size: 50px;
}
.blog-single-area .admin-comnt span {
  margin-left: 50px;
}
.blog-single-area .blog-article {
  margin-left: 30px;
  padding: 30px 0px;
}
.blog-single-area .blog-article .pre-article a,
.blog-single-area .blog-article .next-article a {
  font-size: 14px;
  font-weight: 500;
  color: #0a1f44;
  text-transform: uppercase;
}
.blog-single-area .blog-article .pre-article p,
.blog-single-area .blog-article .next-article p {
  margin-top: 15px;
}
.blog-single-area .pre-article i {
  padding-right: 5px;
}
.blog-single-area .next-article {
  text-align: right;
}
.blog-single-area .next-article i {
  padding-left: 5px;
}

.b-single-social {
  display: flex;
  padding: 30px 0px;
  align-items: center;
}
.b-single-social .signle-btn {
  margin-left: 30px;
}
.b-single-social .signle-btn a {
  color: #0a1f44;
  font-size: 16px;
  padding: 15px 20px;
  margin-right: 10px;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.b-single-social .signle-btn a:hover {
  background: #e8505b;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.b-single-social .b-single-social-icon a {
  color: #ffffff;
  font-size: 16px;
}
.b-single-social .b-single-social-icon a .fa-twitter {
  background: #4db2ec;
}
.b-single-social .b-single-social-icon a .fa-instagram {
  background: #e8505b;
}
.b-single-social .b-single-social-icon a .fa-vimeo-v {
  background: #394b8d;
}
.b-single-social .b-single-social-icon a .fa-behance {
  background: #4db2ec;
}
.b-single-social .b-single-social-icon i {
  padding: 17px 20px;
}

.b-admin-post {
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 30px 30px 30px 0px;
}
.b-admin-post .b-admin-thumb {
  margin-left: 30px;
}
.b-admin-post .b-admin-details {
  margin-left: 25px;
}
.b-admin-post .b-admin-details h4 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: 500;
}
.b-admin-post .b-admin-details a {
  margin-right: 20px;
  font-size: 16px;
}
.b-admin-post .b-admin-details .fa-twitter {
  color: #4db2ec;
}
.b-admin-post .b-admin-details .fa-instagram {
  color: #e8505b;
}
.b-admin-post .b-admin-details .fa-vimeo-v {
  color: #394b8d;
}
.b-admin-post .b-admin-details .fa-behance {
  color: #7bb8df;
}

.b-comnts-area {
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}
.b-comnts-area .two-comnts {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
.b-comnts-area .two-comnts h3 {
  color: #0a1f44;
  font-size: 18px;
  font-weight: 500;
  padding: 30px 0px 30px 30px;
}
.b-comnts-area .two-comnts h4 {
  background: #e8505b;
  padding: 10px 20px;
  color: #ffffff;
  margin-left: 20px;
}
.b-comnts-area .b-comnts-1 {
  display: flex;
  padding: 30px 30px 30px 0px;
}
.b-comnts-area .b-comnts-1 .b-comnts-thumb {
  margin-left: 30px;
}
.b-comnts-area .b-comnts-1 .b-comnts-details {
  margin-left: 20px;
}
.b-comnts-area .b-comnts-1 .b-comnts-details h4 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
}
.b-comnts-area .b-comnts-1 .b-comnts-details h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
.b-comnts-area .comnts-border {
  border-bottom: 1px solid #f1f1f1;
}
.b-comnts-area .b-comnts-reply h4 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  margin-left: 10px;
}
.b-comnts-area .b-comnts-reply .comnt-icon i {
  color: #0a1f44;
  font-size: 14px;
}
.b-comnts-area .b-comnts-reply .shop-reply-icon {
  display: flex;
}
.b-comnts-area .b-comnts-reply .shop-reply-icon i {
  color: #f08e25;
}

.b-post-form {
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}
.b-post-form .b-post-form-area {
  padding: 30px;
}
.b-post-form .b-post-form-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 30px;
}

/*Blog Right Side Style*/
.blog-search-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 20px 15px;
  margin-bottom: 30px;
}
.blog-search-area .search-wrapper {
  border: 1px solid #f1f1f1;
}
.blog-search-area .search-wrapper .b-search-icon {
  margin-right: 10px;
}

.post-category-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.post-category-area .post-category-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px;
}
.post-category-area .post-category a {
  font-size: 16px;
  color: #555555;
  padding: 20px 20px;
  border-bottom: 1px solid #f1f1f1;
  transition: all 0.3s ease-in-out;
}
.post-category-area .post-category a:hover {
  color: #e8505b;
}
.post-category-area .post-category i {
  margin-right: 5px;
}

.most-popular-post {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin: 30px 0px;
}
.most-popular-post .most-popular-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px;
}
.most-popular-post .most-popular-area {
  padding: 20px;
  border-bottom: 1px solid #f1f1f1;
}
.most-popular-post .most-popular-area .most-popular-content a {
  font-size: 16px;
  color: #555555;
  transition: all 0.3s ease-in-out;
}
.most-popular-post .most-popular-area .most-popular-content a:hover {
  color: #e8505b;
}
.most-popular-post .most-popular-area .most-popular-content h5 {
  font-size: 16px;
  color: #555555;
  margin-top: 10px;
}

.post-gallery {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.post-gallery .post-gallery-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px;
}
.post-gallery .post-gallery-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.post-gallery .post-gallery-img img {
  padding-bottom: 10px;
}

.popular-tags {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
}
.popular-tags .popular-tags-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px;
}
.popular-tags .popular-tags-area {
  padding: 20px;
}
.popular-tags .popular-tags-area .popular-tags-list li {
  border: 1px solid #f1f1f1;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.popular-tags .popular-tags-area .popular-tags-list li:hover {
  background: #e8505b;
  border-radius: 2px;
}
.popular-tags .popular-tags-area .popular-tags-list li:hover a {
  color: #ffffff;
}
.popular-tags .popular-tags-area .popular-tags-list li a {
  color: #555555;
  display: block;
}

/* End Blog Single Style */
/* Start Shop Style */
.shop-showing-result {
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 22px;
  margin-bottom: 35px;
}
.shop-showing-result .shop-showing-title h4 {
  font-size: 16px;
  color: #0a1f44;
  font-weight: 500;
}
.shop-showing-result .shop-showing-icon i {
  font-size: 18px;
  color: #0a1f44;
}
.shop-showing-result .shop-showing-icon .icon-1 {
  color: #e8505b;
  margin-right: 10px;
}

.shop-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.shop-area .shop-thumb {
  position: relative;
}
.shop-area .shop-thumb img {
  width: 100%;
  height: 100%;
}
.shop-area .shop-thumb .shop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.shop-area .shop-thumb .shop-overlay i {
  background: #e8505b;
  width: 35px;
  height: 35px;
  font-size: 18px;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
}
.shop-area .shop-thumb:hover .shop-overlay {
  opacity: 1;
}
.shop-area .shop-content {
  padding: 20px 30px;
}
.shop-area .shop-content a {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
  margin-top: 30px;
}
.shop-area .shop-content h5 {
  font-size: 16px;
  color: #0a1f44;
  margin-top: 20px;
}
.shop-area .shop-content .shop-icon i {
  color: #f08e25;
  padding: 10px 0px;
  margin-top: 10px;
}

.shop-latest {
  margin-left: 15px;
}
.shop-latest a {
  font-size: 16px;
  color: #0a1f44;
}
.shop-latest h5 {
  font-size: 16px;
  color: #0a1f44;
}
.shop-latest i {
  color: #f08e25;
  font-size: 14px;
}

.reply-icon i {
  color: #f08e25;
}

.form-select {
  font-size: 14px;
}

/* Shop Pangination */
.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}
.pagination li a {
  font-size: 18px;
  color: #0a1f44;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  font-weight: 500;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.pagination li a:hover {
  background: #e8505b;
  color: #ffffff;
}

/* Shop Single Style */
.s-product-area {
  padding-top: 15px;
  padding-right: 15px;
  display: flex;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
}
.s-product-area .btn {
  margin-bottom: 30px;
}
.s-product-area .s-product-thumb img {
  padding: 0px 15px;
}
.s-product-area .small-img-group {
  display: flex;
  padding: 15px;
}
.s-product-area .small-img-group img {
  margin-right: 10px;
}
.s-product-area .s-product-details {
  padding-right: 15px;
}
.s-product-area .s-product-details h5 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: 500;
  margin-top: 10px;
}
.s-product-area .s-product-details .s-product-title h3 {
  font-size: 24px;
  color: #0a1f44;
  font-weight: 500;
}
.s-product-area .s-product-details .s-product-review {
  display: flex;
}
.s-product-area .s-product-details .s-product-review h4 {
  font-size: 16px;
}
.s-product-area .s-product-details .s-product-review .review-icon i {
  font-size: 16px;
  color: #f08e25;
}
.s-product-area .s-product-details .s-product-description h3 {
  font-size: 18px;
  color: #0a1f44;
  margin-top: 15px;
}
.s-product-area .s-product-details .s-product-size-wrapper {
  display: flex;
  margin-top: 30px;
}
.s-product-area .s-product-details .s-product-size-wrapper .s-product-color {
  margin-left: 10px;
}
.s-product-area .s-product-details .s-discount-area {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.s-product-area .s-product-details .s-discount-area .s-discout-nbr input {
  padding: 10px 0px;
  border: 1px solid #f1f1f1;
}
.s-product-area .s-product-details .s-discount-area .s-discount-code input {
  padding: 10px 0px;
  margin-left: 10px;
  border: 1px solid #f1f1f1;
  padding-left: 10px;
}

/* End  Shop Style */
/* Shop Cart Style */
.shop-cart-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
}
.shop-cart-area table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.shop-cart-area table thead td {
  background: #e8505b;
  color: #ffffff;
  padding: 10px 0px;
}

table tbody td {
  border-bottom: 1px solid #f1f1f1;
}
table tbody td input {
  padding: 5px 0px 5px 20px;
  border: 1px solid #f1f1f1;
}
table tbody img {
  margin-top: 35px;
  margin-bottom: 40px;
}
table tbody i {
  color: #e8505b;
  font-size: 18px;
}
table tbody h4,
table tbody h5 {
  font-size: 18px;
  color: #0a1f44;
  font-weight: 500;
}

.shop-coupon-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 25px 20px;
  margin: 50px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-coupon-area .shop-coupon-code {
  display: flex;
  align-items: center;
}
.shop-coupon-area .shop-coupon-code input {
  width: 192px;
  border: 1px solid #f0f0f0;
  border-radius: 2px 0px 0px 2px;
  padding: 22px 25px;
  outline: none;
  background-color: transparent;
  color: #696969;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.shop-coupon-area .shop-coupon-code input:last-child {
  width: 150px;
  background: #f7fbff;
  color: #0a1f44;
  padding: 22px 25px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  border-radius: 0px 2px 2px 0px;
}
.shop-coupon-area .shop-checkout a {
  font-size: 14px;
  font-weight: 600;
  color: #0a1f44;
  background: #f7fbff;
  padding: 22px 37px;
  margin-left: 10px;
}

.shop-shipping-area {
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.shop-shipping-area h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0a1f44;
}

.shipping-wrapper {
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
}
.shipping-wrapper .calculate-shipping-wrapper {
  width: 49%;
}
.shipping-wrapper .shipping-card-wrapper {
  width: 49%;
}
.shipping-wrapper .shipping-item {
  display: flex;
  margin-top: 30px;
  margin-bottom: 20px;
}
.shipping-wrapper .shipping-item .shipping-country select {
  font-size: 16px;
  color: #555;
  border: 1px solid #f1f1f1;
  padding: 20px 50px 20px 20px;
}
.shipping-wrapper .shipping-item .shipping-post-code select {
  font-size: 16px;
  color: #555;
  border: 1px solid #f1f1f1;
  padding: 20px 50px 20px 20px;
  margin-left: 10px;
}
.shipping-wrapper .shipping-card-wrapper .shipping-card-item .s-card-item {
  display: flex;
  justify-content: space-between;
  border: 1px solid #f1f1f1;
  margin-bottom: 20px;
}
.shipping-wrapper .shipping-card-wrapper .shipping-card-item .s-card-item h4 {
  font-size: 16px;
  color: #555;
  padding: 15px 25px;
}

/* End Shop Cart Style */
/* Start Error Style */
.error-content h1 {
  font-size: 36px;
  color: #0a1f44;
  font-weight: 500;
  margin-top: 30px;
}
.error-content p {
  margin: 20px 0px;
}

/* End Error Style */
/* End Index-2 Style
======================= *//*# sourceMappingURL=style.css.map */