﻿@charset "UTF-8";
/*
Template Name: Wasancy
*/
/*================================================
1. Default CSS
2. Header Menu CSS
3. Header Hero CSS
4. Service Area CSS
5. About Area CSS
6. Cta CSS
7. Portfolio area CSS
8. Feature area CSS
9. Subscribe area CSS
10. Team Area CSS
11. Pricing area CSS
12. Testimonial Area CSS
13. Blog CSS
14. Footer Area CSS



15. Service Page CSS
16. Service Details Page CSS
17. Blog Page CSS
18. Blog Sidebar Page CSS
19. Blog Standard Page CSS
20. Blog Details Page CSS
21. Portfolio List Page CSS
22. Portfolio Details Page CSS
23. Team Page CSS
24. FAQ Page CSS
25. Contact Page CSS
26. 404 Page CSS

=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap");
/*================================================
1. Default CSS
=================================================*/
/* Color Variable */
/* Font Variable */
.alignleft {
  float: left;
  margin-right: 15px;
}

.alignright {
  float: right;
  margin-left: 15px;
}

.aligncenter {
  display: block;
  margin: 0 auto 15px;
}

a {
  color: unset;
}
a:focus {
  outline: 0 solid;
}
a:hover {
  color: unset;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #1A2C42;
}

html, body {
  font-family: "Poppins", sans-serif;
  color: #717171;
  font-weight: 400;
  line-height: 1.6;
}

input:focus, textarea:focus, button:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  color: unset;
}

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

i.bx {
  vertical-align: middle;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

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

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

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

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

.mb-90 {
  margin-bottom: 90px;
}

.common-btn {
  background: #BE2F29;
  color: #fff;
  padding: 8px 43px;
  display: inline-table;
  border-radius: 28px;
  border: 4px solid #DB7B5F;
  transition: all 1s ease 0s;
}
.common-btn:hover {
  background: #1A2C42;
  color: #fff;
}

.btn-wrap {
  display: inline-table;
  border: 3px solid #BE2F29;
  border-radius: 36px;
  background: #BE2F29;
}

.btn-wrap-2 .common-btn {
  border: 4px solid #fff;
}

.section-title p:first-child {
  font-size: 14px;
  color: #BE2F29;
  display: inline-block;
  background: #F2D5D4;
  padding: 5px 20px;
  border-top-right-radius: 12px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 12px;
  margin-bottom: 13px;
  text-transform: uppercase;
  font-weight: 500;
}
.section-title p:last-child {
  font-family: Noto Sans, sans-serif;
  margin-bottom: 0;
  margin-top: 10px;
}
.section-title h3 {
  font-size: 32px;
  margin-bottom: 0;
  line-height: 40px;
}

.breadcrumb-area {
  background-image: url(../images/breadcrumb-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 185px;
  padding-bottom: 143px;
}

.breadcrumb-content h2 {
  background: #D26A54;
  display: inline-block;
  font-size: 26px;
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.breadcrumb-content span {
  color: #fff;
  font-weight: 500;
  font-family: Noto Sans, sans-serif;
}
.breadcrumb-content span i {
  margin: 0 5px;
}
.breadcrumb-content span a {
  transition: all 0.3s ease;
}
.breadcrumb-content span a:hover {
  color: #BE2F29;
}

h2.text1 {
  display: none;
}

/*================================================
2. Header Menu CSS
=================================================*/
.header-menu-area {
  position: absolute;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 10px;
  background: transparent;
}
.header-menu-area .logo {
  margin-top: 9px;
}
.header-menu-area .menu-btn-wrap {
  float: right;
}

.sticky {
  position: fixed;
  top: 0;
  background: #1A2C42;
  z-index: 9999;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.01);
  padding: 15px 0;
}

.hamburger {
  position: absolute;
  width: 40px;
  height: 30px;
  cursor: pointer;
  border: 5px solid transparent;
  margin-top: 10px;
  display: none;
  right: -240.5%;
  z-index: 1;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  right: 0;
  transition: all 0.3s;
}

.hamburger span.h-top {
  top: 0;
}

.hamburger span.h-bottom {
  bottom: 0;
  width: 27px;
}

.hamburger span.h-middle {
  top: 50%;
  margin-top: -1px;
  width: 25px;
}

.hamburger.h-active span {
  width: 100%;
}

.hamburger.h-active span.h-top {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1px;
}

.hamburger.h-active span.h-middle {
  transform: translateX(-30px);
  opacity: 0;
}

.hamburger.h-active span.h-bottom {
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1px;
}

.bottombar {
  background-color: #08509e;
}

.main-nav {
  float: right;
  margin-top: 4px;
}

.main-nav > ul {
  padding: 10px 0px 10px 10px;
  margin: 0;
  list-style: none;
}

.main-nav > ul > li:last-child {
  padding-right: 0;
}

.main-nav > ul > li {
  display: inline-block;
  position: relative;
  padding-right: 15px;
}

.main-nav > ul > li.has-child-menu:after {
  position: absolute;
  right: -5px;
  top: -2px;
  font-family: "boxicons";
  content: "";
  font-size: 20px;
  color: #ffffff9e;
}

.main-nav > ul > li + li {
  padding: 0 15px;
}

.main-nav > ul > li > a {
  display: block;
  text-decoration: none;
  color: #ffff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}

.main-nav > ul > li > a.active {
  color: #BE2F29;
}

.main-nav > ul > li:hover > a {
  color: #BE2F29;
}

.main-nav > ul > li:hover > a:after {
  opacity: 1;
}

.main-nav ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 28px;
  right: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #F3F2F7;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transform: translateY(20px);
  transition: all 0.3s;
}

.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 .sub-menu > li a {
  display: block;
  padding: 15px 18px;
  color: #262339;
  line-height: 1;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  transition: all 0.3s;
}

.main-nav ul li .sub-menu > li a:last-child {
  border: none;
}

.main-nav ul li .sub-menu > li a:hover {
  background: #BE2F29;
  color: #fff;
}

.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 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

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

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

.slideInUp2 {
  transition-delay: 0.3s;
}

/*================================================
3. Header Hero CSS
=================================================*/
.hero-area {
  background-image: url(../images/hero-shape.png);
  padding-top: 185px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 100px;
}
.hero-area .hero-content-wrap {
  height: 100%;
  width: 100%;
}
.hero-area .hero-content-wrap .hero-content {
  vertical-align: middle;
}
.hero-area .hero-content-wrap .hero-content h6 {
  font-size: 20px;
  color: #BE2F29;
  margin-bottom: 0;
}
.hero-area .hero-content-wrap .hero-content h1 {
  font-size: 46px;
  color: #fff;
  margin-top: 16px;
  line-height: 62px;
}
.hero-area .hero-content-wrap .hero-content h1 span {
  color: #BE2F29;
}
.hero-area .hero-content-wrap .hero-content p {
  color: #fff;
  margin-bottom: 0;
}
.hero-area .hero-btn-wrap {
  margin-top: 35px;
}

.mobile-hero {
  display: none;
}

.hero-img-right {
  animation: pulse 1.5s infinite alternate;
}
@keyframes pulse {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(5px);
  }
}

/*================================================
4. Service Area CSS
=================================================*/
.service-area {
  margin-top: 95px;
}
.service-area .single-service-slide-wrap {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 5px;
  position: relative;
  transition: all 1s ease 0s;
}
.service-area .single-service-slide-wrap:hover {
  /*transform: translate(0, -20px);*/
}
.service-area .single-service-slide-wrap:hover .single-service-slide {
  background: transparent;
  color: #fff;
}
.service-area .single-service-slide-wrap:hover .single-service-slide .service-icon {
  background: #F7E2C8;
}
.service-area .single-service-slide-wrap:hover .single-service-slide .service-icon i::before {
  color: #E5984A;
}
.service-area .single-service-slide-wrap:hover .single-service-slide .service-content h4 {
  color: #fff;
}
.service-area .single-service-slide-wrap::before {
  background-image: url(../images/service-right-shape.png);
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 85px;
  height: 76px;
  background-repeat: no-repeat;
}
.service-area .single-service-slide-wrap .single-service-slide {
  background: #fff;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 19px 25px;
  transition: all 1s ease 0s;
}
.service-area .single-service-slide-wrap .single-service-slide .service-icon {
  display: inline-block;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #F2D5D4;
  padding: 0px 20px;
  transition: all 1s ease 0s;
}
.service-area .single-service-slide-wrap .single-service-slide .service-icon i::before {
  margin-left: 0;
  font-weight: 400;
  color: #BE2F29;
  font-size: 55px;
  transition: all 1s ease 0s;
}
.service-area .single-service-slide-wrap .single-service-slide .service-content {
  margin-top: 31px;
}
.service-area .single-service-slide-wrap .single-service-slide .service-content h4 {
  font-size: 23px;
  transition: all 1s ease 0s;
}
.service-area .single-service-slide-wrap .single-service-slide .service-details-btn {
  margin-top: 20px;
  margin-bottom: 4px;
}
.service-area .single-service-slide-wrap .single-service-slide .service-details-btn a i {
  vertical-align: middle;
  display: inline-block;
  background: #EBC1BF;
  font-size: 31px;
  color: #BE2F29;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 42px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.service-area .owl-nav .owl-prev, .service-area .owl-nav .owl-next {
  border: none;
  background: #FBF1EE;
  color: #BE2F29;
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  font-size: 27px;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -25px;
}
.service-area .owl-nav .owl-next {
  right: -6%;
}
.service-area .owl-nav .owl-prev {
  left: -6%;
}

/*================================================
5. About Area CSS
=================================================*/
.about-area .about-left-img-wrap, .feature-area .about-left-img-wrap {
  height: 100%;
  width: 100%;
}
.about-area .about-left-img-wrap .about-left-img, .feature-area .about-left-img-wrap .about-left-img {
  vertical-align: middle;
}
.about-area .about-right-content, .feature-area .about-right-content {
  margin-top: 20px;
  margin-bottom: 30px;
}
.about-area .about-btn-wrap, .feature-area .about-btn-wrap {
  margin-top: 24px;
}
.about-area .about-features p, .feature-area .about-features p {
  font-size: 15px;
  color: #1A2C42;
  background: #FBEFDA;
  border-radius: 10px;
  padding: 10px 0 10px 80px;
  font-weight: 500;
}
.about-area .about-features span i::before, .feature-area .about-features span i::before {
  margin-left: 0;
  font-size: 24px;
  color: #BE2F29;
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 0;
  background: #F8E2BC;
  border-radius: 10px;
  padding: 3px 21px;
}

/*================================================
6. Cta CSS
=================================================*/
.cta-area {
  padding-top: 100px;
  padding-bottom: 70px;
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
}
.cta-area .count-container {
  width: 100%;
  height: 90px;
}
.cta-area .cta-img {
  text-align: center;
}
.cta-area .cta-img i {
  display: inline-block;
  background: #EACBCF;
  border-radius: 50%;
  text-align: center;
  height: 75px;
  width: 75px;
  color: #BE2F29;
  border: 1px solid #ECAF44;
  line-height: 72px;
}
.cta-area .cta-img i::before {
  font-size: 43px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.cta-area .cta-img i.flaticon-briefing::before, .cta-area .cta-img i.flaticon-person::before {
  margin-left: 13px;
}
.cta-area .count-box {
  background: #fff;
  border: 1px solid #BE2F29;
  padding: 17px 10px 0px 10px;
}
.cta-area .count-box h6 {
  font-size: 24px;
}
.cta-area .count-box-sp-1 {
  border-bottom-right-radius: 85px;
  border-top-left-radius: 85px;
}
.cta-area .count-box-sp-2 {
  border-bottom-left-radius: 85px;
  border-top-right-radius: 85px;
  margin-top: -30px;
}
.cta-area .cta-countcount h4 {
  color: #BE2F29;
  font-size: 37px;
}
.cta-area .cta-countcount span {
  color: #BE2F29;
  font-size: 37px;
  margin-top: -7px;
  font-weight: 700;
}
.cta-area .cta-countcount h4 {
  margin-left: 13px;
}

.cta-bg {
  position: relative;
}
.cta-bg::before {
  content: "";
  background-image: url(../images/cta-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

/*================================================
7. Portfolio area CSS
=================================================*/
.prtfolio-area {
  padding-bottom: 70px;
}
.prtfolio-area .work-mixi {
  margin-top: 36px;
}
.prtfolio-area .work-mixi .mix {
  display: none;
}
.prtfolio-area .portfolio-link li {
  display: inline-block;
  font-size: 17px;
  color: #1A2C42;
  font-weight: 500;
  padding: 2px 15px;
  margin: 0px 10px 0px 0px;
  cursor: pointer;
}
.prtfolio-area .portfolio-link li.active {
  background: #BE2F29;
  color: #fff;
  border-radius: 3px;
}
.prtfolio-area .single-project-wrap {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
.prtfolio-area .single-project-wrap .poroject-content {
  position: absolute;
  z-index: 1;
  color: #fff;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  margin-top: -25px;
  transition: all 0.6s ease-out 0s;
}
.prtfolio-area .single-project-wrap .poroject-content h5 {
  margin-bottom: 6px;
}
.prtfolio-area .single-project-wrap .poroject-content h5 a {
  color: #fff;
  font-size: 20px;
  transition: all 0.6s ease-out 0s;
}
.prtfolio-area .single-project-wrap .poroject-content a {
  font-size: 14px;
  color: #ECAF44;
  transition: all 0.6s ease-out 0s;
}
.prtfolio-area .single-project-wrap::before {
  position: absolute;
  content: "";
  background: #242C41;
  height: 100%;
  width: 100%;
  transform: rotateY(180deg) scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-out 0s;
}
.prtfolio-area .single-project-wrap:hover .poroject-content {
  visibility: visible;
  opacity: 1;
}
.prtfolio-area .single-project-wrap:hover::before {
  visibility: visible;
  opacity: 0.8;
  transform: rotateY(0deg) scale(1);
}

/*================================================
8. Feature area CSS
=================================================*/
.feature-area .feature-all-box {
  width: 100%;
  height: 100%;
}
.feature-area .feature-all-box .feature-box {
  vertical-align: middle;
}
.feature-area .feature-left-wrap {
  background: #CB5954;
  color: #fff;
  width: 100%;
  margin-bottom: 30px;
  padding-top: 11.5px;
  padding-bottom: 0px;
  height: 86px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.feature-area .feature-left-wrap p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 97px;
  margin-top: -25px;
  line-height: 25px;
  text-transform: uppercase;
}
.feature-area .feature-left-wrap span i::before {
  margin-left: 10px;
  font-size: 41px;
  font-weight: 400;
  border: 1px solid #b7504ba1;
  border-radius: 50%;
  padding: 9px;
  margin-right: 12px;
}
.feature-area .feature-left-wrap.two {
  background: #ECAF44;
}
.feature-area .feature-left-wrap.two span i::before {
  border: 1px solid #c9953a6e;
}
.feature-area .feature-left-wrap.three {
  background: #1A2C42;
}
.feature-area .feature-left-wrap.three span i::before {
  border: 1px solid #26374C;
}
.feature-area .feature-left-wrap.four {
  background: #CB5954;
}
.feature-area .feature-left-wrap.five {
  background: #F0BF69;
}
.feature-area .feature-left-wrap.five span i::before {
  border: 1px solid #c9a05859;
}
.feature-area .feature-left-wrap.six {
  background: #485668;
}
.feature-area .feature-left-wrap.six span i::before {
  border: 1px solid #59667680;
}
.feature-area .feature-btn-wrap {
  margin-top: 3px;
}

/*================================================
9. Subscribe area CSS
=================================================*/
.subscribe-area {
  position: relative;
  background-image: url(../images/subscribe-bg-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 114px;
}
.subscribe-area .subscribe-content {
  color: #fff;
  margin-top: 100px;
  margin-bottom: 100px;
}
.subscribe-area .subscribe-content h1 {
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}
.subscribe-area .subscribe-content p {
  margin-top: 20px;
  margin-bottom: 54px;
}
.subscribe-area .subscribe-content .subscribe-form input {
  border: 2px solid #ECAF44;
  background: #fff;
  color: #1A2C42;
  padding: 15px 191px 15px 32px;
  border-radius: 47px;
  width: 64%;
}
.subscribe-area .subscribe-content .subscribe-form input::placeholder {
  color: #1A2C42;
}
.subscribe-area .subscribe-content .subscribe-form a {
  position: absolute;
  background: #ECAF44;
  font-size: 18px;
  font-weight: 600;
  right: 187px;
  border-radius: 69px;
  width: 179px;
  height: 49px;
  margin-top: 5px;
  line-height: 50px;
  box-shadow: 2px 2px 10px rgba(26, 34, 56, 0.18);
  transition: all 0.4s;
}
.subscribe-area .subscribe-content .subscribe-form a:hover {
  background: #BE2F29;
}

/*================================================
10. Team Area CSS
=================================================*/
.team-area .team-wrap {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  padding-top: 119px;
  border-radius: 20px;
}
.team-area .team-wrap:hover .single-team .team-img img {
  transform: rotate(-3deg);
}
.team-area .team-wrap .single-team {
  background: #1A2C42;
  padding: 20px 16px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.team-area .team-wrap .single-team .team-img {
  overflow: hidden;
}
.team-area .team-wrap .single-team .team-img img {
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  transition: all 0.4s;
}
.team-area .team-wrap .single-team .team-content {
  color: #fff;
}
.team-area .team-wrap .single-team .team-content h5 {
  color: #F0BF69;
  margin-top: 20px;
  margin-bottom: 10px;
}
.team-area .team-wrap .single-team .team-content h6 {
  color: #fff;
  font-family: Noto Sans;
  font-weight: 400;
  margin-bottom: 0;
}
.team-area .team-wrap .single-team .team-content p {
  font-size: 12px;
  margin-top: 10px;
  font-weight: 400;
}
.team-area .team-wrap .single-team .team-socila li {
  display: inline-block;
}
.team-area .team-wrap .single-team .team-socila li a {
  color: #BE2F29;
  display: inline-block;
  font-size: 15px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 4px;
  margin-right: 4px;
  transition: 0.3s;
  line-height: 18px;
}
.team-area .team-wrap .single-team .team-socila li a:hover {
  background: #BE2F29;
  color: #fff;
  transform: rotate(-5deg);
}
.team-area .team-wrap .single-team .team-socila li a i {
  vertical-align: middle;
  font-size: 20px;
}

.team-feature {
  margin-top: -99px;
}

.team-all-slide.owl-carousel .owl-item img, .testimonial-slide.owl-carousel .owl-item img {
  display: unset !important;
  width: unset !important;
}

.team-all-slide .owl-nav .owl-prev, .team-all-slide .owl-nav .owl-next {
  border: none;
  background: #FBF1EE;
  color: #BE2F29;
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  font-size: 27px;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -25px;
}
.team-all-slide .owl-nav .owl-next {
  right: -6%;
}
.team-all-slide .owl-nav .owl-prev {
  left: -6%;
}

/*================================================
11. Pricing area CSS
=================================================*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #BE2F29;
  -webkit-transition: 0.4s;
  transform: translate(0px, 0px);
  transition: 0.6s ease transform, 0.6s box-shadow;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #ECAF44;
  transition: 0.4s;
}

.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

.toggle-btn {
  margin-top: 34px;
  margin-bottom: 102px;
}
.toggle-btn input:checked + .slider {
  background-color: #1A2C42;
}
.toggle-btn input:focus + .slider {
  box-shadow: 0 0 1px #50bfe6;
}
.toggle-btn input:checked + .slider:before {
  transform: translateX(26px);
}
.toggle-btn span {
  color: #BE2F29;
  font-size: 22px;
  font-weight: 700;
}
.toggle-btn input, .toggle-btn label {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0;
}

.price-content-wrap {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding-bottom: 40px;
}

.price-content-line-3 .price-content-wrap {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
}
.price-content-line-3 .price-top-content {
  background: #F8E7E0;
}
.price-content-line-3 .price-top-content h1 {
  color: #BE2F29;
}
.price-content-line-3 .price-list li {
  color: #fff;
}

.price-top-content {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  clip-path: polygon(100% 0, 100% 16%, 90% 87%, 0 100%, 0 0);
  padding-top: 20px;
  padding-bottom: 25px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.price-top-content h1 {
  font-size: 30px;
  color: #fff;
}
.price-top-content h2 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 0;
}
.price-top-content h2 span {
  font-size: 24px;
  margin-right: 3px;
}

.price-list li {
  color: #646567;
  line-height: 44px;
}
.price-list li i {
  vertical-align: middle;
  color: #BE2F29;
  margin-right: 3px;
}
.price-list ul {
  margin-top: 45px;
  margin-bottom: 40px;
}

.price-line .price-content-line-1.col-xl-4.col-lg-4.col-sm-12.col-12 {
  padding-right: 3px;
}
.price-line .price-content-line-2.col-xl-4.col-lg-4.col-sm-12.col-12 {
  padding: 0;
}
.price-line .price-content-line-2.col-xl-4.col-lg-4.col-sm-12.col-12 .price-content-wrap {
  position: relative;
  margin-top: -68px;
  padding-bottom: 64px;
}
.price-line .price-content-line-2.col-xl-4.col-lg-4.col-sm-12.col-12 .price-content-wrap::before {
  background-image: url(../images/price-middle-shape.png);
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 276px;
  height: 225px;
  background-repeat: no-repeat;
}
.price-line .price-content-line-2.col-xl-4.col-lg-4.col-sm-12.col-12 .price-content-wrap .price-top-content {
  clip-path: circle(69.8% at 50% -11%);
  padding-bottom: 40px;
  padding-top: 40px;
}
.price-line .price-content-line-2.col-xl-4.col-lg-4.col-sm-12.col-12 .price-content-wrap .price-top-content h1 {
  font-size: 35px;
}
.price-line .price-content-line-2.col-xl-4.col-lg-4.col-sm-12.col-12 .price-content-wrap .price-list ul {
  margin-bottom: 72px;
}
.price-line .price-content-line-2.col-xl-4.col-lg-4.col-sm-12.col-12 .price-content-wrap .price-list li {
  font-size: 18px;
  line-height: 49px;
}
.price-line .price-content-line-3.col-xl-4.col-lg-4.col-sm-12.col-12 {
  padding-left: 3px;
}

.pricing-area {
  padding-bottom: 100px;
}

/*================================================
12. Testimonial Area CSS
=================================================*/
.testimonial-area {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  padding: 100px 0;
  position: relative;
}
.testimonial-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-image: url(../images/testimonial-area-bg.png);
  z-index: 0;
  top: 0;
  left: 0;
}

.testimonial-content-wrap {
  height: 100%;
  width: 100%;
}
.testimonial-content-wrap .testimonial-left-content {
  vertical-align: middle;
}
.testimonial-content-wrap .testimonial-left-content .testimonial-title h3 {
  font-size: 33px;
  font-weight: 900;
  margin-bottom: 16px;
}
.testimonial-content-wrap .testimonial-left-content p:last-child {
  color: #1A2C42;
  margin-bottom: 0;
}

.single-testimonial {
  background-image: url(../images/testimonial-bg.png);
  background-repeat: no-repeat;
  height: 229px;
  background-size: contain;
}

.testimonial-slide-content p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 7px;
  margin-top: 7px;
  font-family: Noto Sans, sans-serif;
}
.testimonial-slide-content h5 {
  font-family: Source Sans Pro, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ECAF44;
  margin-bottom: 5px;
}
.testimonial-slide-content h6 {
  font-family: Noto Sans, sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.testimonial-slide-content img {
  margin-top: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.estimonial-top-quote i, .estimonial-bottom-quote i {
  color: #fff;
  font-size: 40px;
  position: absolute;
}

.estimonial-top-quote i {
  left: 30px;
  top: 36px;
}

.estimonial-bottom-quote i {
  right: 30px;
  bottom: 23px;
}

.testimonial-slide .owl-dot {
  border: none;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background: #BE2F29;
  margin-left: 5px;
}
.testimonial-slide .owl-dots {
  text-align: center;
  margin-top: 30px;
  position: absolute;
  left: 0;
  right: 0;
}
.testimonial-slide .owl-dot.active {
  border: 3px solid #ddd;
}

/*

/*================================================
13. Blog CSS
=================================================*/
.blog-area {
  padding-bottom: 100px;
}

.blog-img {
  overflow: hidden;
}
.blog-img a img {
  transition: all 0.4s ease;
  margin-bottom: -1px;
}
.blog-img a img:hover {
  transform: scale(1.05) rotate(2deg);
  opacity: 0.8;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
}
.blog-meta a {
  font-size: 12px;
  color: #fff;
  background: #CB5954;
  padding: 8px;
  font-weight: 600;
  border-bottom-left-radius: 20px;
  width: 45%;
  text-align: right;
}
.blog-meta a:nth-child(odd) {
  border-bottom-left-radius: unset;
  border-bottom-right-radius: 20px;
  text-align: left;
}
.blog-meta a i {
  vertical-align: middle;
  font-size: 15px;
  margin-right: 4px;
}

.blog-content {
  padding: 10px;
  border: 1px solid #dddddd6e;
  border-top: none;
  border-radius: 10px;
  border-top-right-radius: unset;
  border-top-left-radius: unset;
}
.blog-content h4 {
  font-size: 17px;
  margin-top: 7px;
  line-height: 25px;
}
.blog-content h4 a {
  transition: all 0.4s ease;
}
.blog-content h4 a:hover {
  color: #BE2F29;
}
.blog-content p {
  margin-bottom: unset;
}
.blog-content p a {
  font-size: 15px;
  color: #BE2F29;
  transition: 0.5s;
  display: inline-block;
}
.blog-content p a:hover {
  transform: translateX(5px);
}
.blog-content p a i {
  vertical-align: middle;
}

/*

/*================================================
14. Footer Area CSS
=================================================*/
.footer-area {
  background-image: url(../images/footer-bg.png);
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.footer-wrap {
  margin-top: 141px;
}

.footer-title h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-title ul li {
  color: #fff;
  font-size: 15px;
  line-height: 34px;
  font-weight: 400;
}

.footer-link {
  display: flex;
  justify-content: space-between;
}

.footer-address {
  display: flex;
  justify-content: flex-start;
  margin-top: 26px;
}
.footer-address:hover span {
  color: #BE2F29;
}
.footer-address:hover i {
  color: #fff;
  background: #BE2F29;
}
.footer-address span {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  margin-left: 10px;
  transition: all 0.4s;
}
.footer-address i {
  font-size: 18px;
  color: #BE2F29;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  text-align: center;
  vertical-align: middle;
  margin-top: 9px;
  line-height: 28px;
  transition: all 0.4s;
}

.footer-logo a img {
  margin-bottom: 20px;
  margin-top: -5px;
}
.footer-logo p {
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 25px;
}

.footer-time {
  color: #fff;
  position: relative;
}
.footer-time:before {
  position: absolute;
  content: "";
  height: 5px;
  width: 59px;
  background: #C94235;
  top: 32px;
  left: 0;
  border-radius: 5px;
}
.footer-time:after {
  position: absolute;
  content: "";
  height: 5px;
  width: 18px;
  background: #1A2C42;
  top: 32px;
  left: 20px;
  border-radius: 0px;
}
.footer-time h1 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #fff;
}
.footer-time p {
  font-size: 16px;
}
.footer-time p span {
  color: #C94235;
  margin-left: 7px;
}

.copy-text {
  color: #fff;
  font-weight: 300;
  margin-top: 15px;
}

.footer-link li a, .footer-title li a {
  transition: all 0.4s ease;
  display: inline-block;
}

.footer-link li a:hover, .footer-title li a:hover {
  color: #BE2F29;
  transform: translateX(2px);
}

/*

/*================================================
15. Service Page CSS
=================================================*/
.service-page-wrap {
  margin-bottom: 30px;
}

.service-page-area {
  margin-top: 100px;
  margin-bottom: 70px;
}

/*

/*================================================
16. Service Details Page CSS
=================================================*/
.service-category-box {
  border: 1px solid #D8827F;
  border-radius: 5px;
  margin-bottom: 30px;
}

.category-subject hr {
  margin-top: 0;
  margin-bottom: 0;
  background: #ffffff2e;
  margin-left: 32px;
  margin-right: 32px;
}
.category-subject ul li {
  font-size: 17px;
  color: #1A2C42;
  font-weight: 500;
  padding: 12px;
  transition: 0.3s;
}
.category-subject ul li:hover {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  color: #fff;
}
.category-subject ul li:hover a i::before {
  color: #fff;
}
.category-subject ul li:hover a i.bx::before {
  visibility: visible;
  color: #BE2F29;
}

.category-subject i::before {
  color: #BE2F29;
  vertical-align: middle;
  font-size: 26px;
  margin-right: 10px;
  transition: 0.3s;
}
.category-subject i.bx::before {
  height: 30px;
  width: 30px;
  background: #EDC1BE;
  text-align: center;
  border-radius: 50%;
  line-height: 30px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 28px;
  margin-top: -15px;
  visibility: hidden;
  transition: 0.3s;
}

.category-download ul li {
  margin-left: 23px;
}
.category-download ul li:hover {
  background: #fff;
  color: #1A2C42;
}
.category-download ul li span {
  vertical-align: middle;
}
.category-download ul li span::before {
  color: #BE2F29;
  vertical-align: middle;
  font-size: 26px;
  margin-right: 10px;
}

.service-details-left-content {
  padding: 31px;
}
.service-details-left-content p {
  margin-bottom: -10px;
  font-weight: 500;
  font-family: Noto Sans, sans-serif;
  color: #1A2C42;
}
.service-details-left-content h6 {
  color: #BE2F29;
  font-size: 15px;
}

.service-details-right p, .service-details-right-bottom p {
  font-family: Noto Sans, sans-serif;
  color: #717171;
  font-size: 15px;
}

.service-details-right-img-wrap {
  border: 1px solid #BE2F29;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.service-details-right-img {
  padding-top: 6px;
  margin-left: -1.3px;
  margin-right: -1px;
  margin-bottom: -2px;
}

.service-details-right li {
  font-family: Noto Sans;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #ECAF44;
  line-height: 2.8;
}
.service-details-right li i {
  vertical-align: middle;
  margin-right: 10px;
  color: #BE2F29;
}
.service-details-right ul {
  margin-bottom: 20px;
}

.service-details-right-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
.service-details-right-bottom p {
  margin-bottom: 0;
  padding: 0 17px 0 0;
}

/*

/*================================================
17. Blog Page CSS
=================================================*/
.page-single-blog {
  margin-bottom: 30px;
}

.page-number li {
  display: inline-block;
}

.page-number li a {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  font-weight: bold;
  font-size: 20px;
  color: #BE2F29;
  margin-right: 25px;
  transition: all 0.4s ease;
}

.page-number li:last-child a {
  margin-right: 0;
}

.page-number li:hover a, .page-number li.active a {
  background: #BE2F29;
  border: 1px solid #BE2F29;
  color: #fff;
}

.page-number {
  margin-top: 50px;
}

/*

/*================================================
18. Blog Sidebar Page CSS
=================================================*/
.post-search {
  margin-bottom: 40px;
}
.post-search input {
  width: 100%;
  border: 1px solid #BE2F29;
  border-radius: 5px;
  padding: 10px 64px 10px 25px;
}
.post-search a {
  color: #fff;
  height: 32px;
  width: 50px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  position: absolute;
  right: 22px;
  top: 7px;
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  border-radius: 10px;
}

.box-title h5 {
  font-weight: 500;
  font-size: 24px;
  border-bottom: 1px solid #BE2F29;
  padding-bottom: 16px;
  margin-bottom: 21px;
}

.post-category li {
  font-family: Noto Sans, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1A2C42;
  line-height: 40px;
  transition: all 0.4s ease;
}
.post-category li:hover {
  color: #BE2F29;
}
.post-category li a span {
  float: right;
}

.single-post-wrap {
  padding: 25px 23px;
  border: 1px solid #BE2F29;
  border-radius: 5px;
}

.post-page-right-wrap {
  margin-bottom: 30px;
}
.post-page-right-wrap:last-child {
  margin-bottom: 0;
}

.single-right-blog {
  display: flex;
  margin-bottom: 20px;
}

.blog-right-top-meta a {
  font-weight: 500;
  font-size: 13px;
  color: #1A2C42;
}
.blog-right-top-meta a i {
  color: #BE2F29;
  font-size: 18px;
  margin-right: 4px;
}

.blog-right-content h6 {
  margin-bottom: 0;
  font-family: Noto Sans;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}
.blog-right-content h6:hover {
  color: #BE2F29;
}

.blog-right-img {
  width: 100%;
  max-width: 90px;
  overflow: hidden;
}
.blog-right-img img {
  transition: 0.3s;
}
.blog-right-img img:hover {
  transform: scale(1.05);
}

.single-right-blog:last-child {
  margin-bottom: 0;
}

.blog-right-content {
  margin-top: 8px;
}

.post-gallery li {
  display: inline-block;
}
.post-gallery li a {
  display: block;
  padding: 2px 3px;
  margin: 0px 1px 9px 0px;
}

.post-tag li {
  display: inline-block;
}
.post-tag li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #282932;
  background: rgba(190, 47, 41, 0.15);
  border: 1px solid rgba(190, 47, 41, 0.3);
  padding: 5px 20px;
  margin: 0px 6px 9px 0px;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.post-tag li a:hover {
  background: #BE2F29;
  border: 1px solid #BE2F29;
  color: #fff;
}

/*

/*================================================
19. Blog Standard Page CSS
=================================================*/
.standard-single-blog .blog-meta a {
  width: 28%;
}
.standard-single-blog .blog-content h4 {
  font-size: 22px;
  line-height: 34px;
}
.standard-single-blog .blog-img a img:hover {
  transform: scale(1.05) rotate(1deg);
  opacity: 0.8;
}

/*

/*================================================
20. Blog Details Page CSS
=================================================*/
.details-single-blog .blog-meta {
  margin-bottom: -18px;
  transform: translateY(-39px);
}
.details-single-blog .blog-meta a {
  font-size: 15px;
  width: 30%;
  background: #BE2F29;
  opacity: 0.8;
  border-bottom-left-radius: unset;
  border-top-left-radius: 20px;
}
.details-single-blog .blog-meta a:nth-child(odd) {
  border-top-left-radius: unset;
  border-top-right-radius: 20px;
  border-bottom-right-radius: unset;
}
.details-single-blog .blog-meta a i {
  font-size: 18px;
}

.details-single-blog .blog-content {
  border: none;
  padding: 0;
}
.details-single-blog .blog-content h4 {
  font-size: 25px;
  line-height: 1.4;
}
.details-single-blog p {
  font-family: Noto Sans, sans-serif;
  font-weight: 500;
  font-size: 17px;
}

.blog-details-page-p-1 {
  margin-top: 15px;
}

.quote-box {
  padding: 48px 32px;
  background: #f5e0df57;
  margin-top: 35px;
  margin-bottom: 35px;
}
.quote-box i {
  font-size: 34px;
  color: #BE2F29;
  position: absolute;
  opacity: 0.5;
}
.quote-box i.bx.bxs-quote-alt-left {
  left: 12px;
  margin-top: -54px;
}
.quote-box i.bx.bxs-quote-alt-right {
  right: 11px;
  margin-top: 19px;
}
.quote-box p {
  font-weight: 600;
  font-size: 20px;
  color: #1A2C42;
}

.details-content-with-img {
  margin-top: 23px;
  margin-bottom: 15px;
}

.blog-details-bottom-content {
  padding: 0 20px 0 0px;
}

.details-comments-title h3 {
  font-size: 30px;
  border-bottom: 2px solid #BE2F29;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 42px;
}

.details-comments li {
  display: flex;
  margin-bottom: 45px;
}
.details-comments li:last-child {
  margin-bottom: 0;
}
.details-comments li:nth-child(even) {
  margin-left: 40px;
}

.comments-img {
  min-width: 110px;
}
.comments-img img {
  border-radius: 50%;
  border: 1px solid #BE2F29;
}

.comments-content h6 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}
.comments-content p {
  font-family: Noto Sans, sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}
.comments-content a {
  color: #BE2F29;
  font-size: 15px;
}
.comments-content a i {
  font-size: 21px;
  margin-right: 2px;
  margin-top: -3px;
}
.comments-content span {
  float: right;
  font-size: 13px;
  color: #1A2C42;
  margin-top: 3px;
}

.contat-input label {
  color: #1A2C42;
  font-weight: 500;
  font-size: 14px;
}
.contat-input input, .contat-input textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #dddddd8c;
  border-radius: 3px;
  padding: 10px 20px;
  margin-bottom: 30px;
}

.details-page-wrap {
  margin-left: 15px;
}
.details-page-wrap button {
  cursor: pointer;
}

.form-message.error {
  position: absolute;
  bottom: -38px;
  margin-bottom: 0;
  left: 22px;
  color: #ff0000;
}

/*================================================
21. Portfolio List Page CSS
=================================================*/
.single-project-list-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.single-project-list-wrap:hover .project-list-overlay {
  clip-path: circle(150% at 0% 100%);
}
.single-project-list-wrap:hover .poroject-list-content {
  background: none;
}

.project-list-overlay {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  color: #fff;
  font-size: 45px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  position: absolute;
  justify-content: center;
  top: 0;
  left: 0;
  opacity: 0.8;
  clip-path: circle(0% at 0% 100%);
  transition: all 0.4s;
}

.poroject-list-content {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  color: #fff;
  padding: 20px;
  border-radius: 3px;
  border-top-right-radius: 180px;
  margin-top: -108px;
  position: relative;
  z-index: 1;
}
.poroject-list-content h5 {
  font-size: 24px;
  color: #fff;
  position: relative;
}
.poroject-list-content p {
  margin-bottom: 0;
}
.poroject-list-content h5:before {
  position: absolute;
  content: "";
  background: #fff;
  height: 1px;
  width: 92px;
  bottom: -10px;
}

/*================================================
22. Portfolio Details Page CSS
=================================================*/
.portfolio-category-subject {
  padding: 20px;
}
.portfolio-category-subject ul li {
  font-size: 17px;
  color: #1A2C42;
  font-weight: 500;
  padding: 13px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid #BE2F29;
}
.portfolio-category-subject ul li span {
  float: right;
  font-size: 13px;
  margin-top: 5px;
}
.portfolio-category-subject ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  padding-top: 20px;
}
.portfolio-category-subject ul li:first-child {
  padding-top: 0;
}
.portfolio-category-subject ul li:nth-child(4) span {
  color: #BE2F29;
  padding: 0 8px;
  font-size: 16px;
}
.portfolio-category-subject ul li:nth-child(4) span:first-child {
  padding-right: 0;
}
.portfolio-category-subject ul li:last-child span {
  display: inline-block;
  color: #BE2F29;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 6px;
  font-size: 20px;
  margin-left: 10px;
  border-radius: 3px;
  margin-top: -2px;
  transition: all 0.4s;
  cursor: pointer;
}
.portfolio-category-subject ul li:last-child span:hover {
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  opacity: 0.7;
  color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
}
.portfolio-category-subject ul li:hover {
  background: unset;
  color: #1A2C42;
}

.portfolio-details-right-img-1 {
  margin-bottom: 35px;
}

.portflio-details-right-img-wrap img {
  margin-bottom: 30px;
}

.portfolio-dtls-left-img li {
  margin-bottom: 30px;
}

/*================================================
23. Team Page CSS
=================================================*/
.team-page-area {
  margin-bottom: 70px;
}

.team-page {
  margin-bottom: 30px;
}

/*================================================
24. FAQ Page CSS
=================================================*/
.style-faq a {
  color: #1A2C42;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.style-faq a:hover {
  color: unset;
  text-decoration: none;
}
.style-faq a.focus, .style-faq a:focus {
  text-decoration: none;
}
.style-faq .card {
  border: none;
  border-radius: 0.25rem;
  margin-bottom: 28px;
}
.style-faq .card:last-child {
  margin-bottom: 0;
}
.style-faq .card-header {
  border-bottom: 1px solid #EACDCC;
  padding: 16px 20px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.style-faq .card-body {
  font-family: Noto Sans, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #717171;
  padding: 20px 19px 0px 20px;
}
.style-faq .card .card-header a[aria-expanded=true] i.fas.fa-minus, .style-faq .card .card-header a[aria-expanded=false] i.fas.fa-plus {
  display: block;
  border: 1px solid #BE2F29;
  border-radius: 50%;
  color: #BE2F29;
  height: 22px;
  width: 22px;
  text-align: center;
  font-size: 12px;
  line-height: 19px;
}
.style-faq .card .card-header a i {
  position: absolute;
  right: 20px;
  top: 20px;
  display: none;
}

.faq-body {
  min-height: 600px;
}

/*================================================
25. Contact Page CSS
=================================================*/
.contact-left-img {
  display: flex;
  height: 100%;
  align-items: center;
}

.contact-title h4 {
  font-size: 40px;
  margin-bottom: 35px;
}

.contact-details {
  margin-bottom: 20px;
  background: linear-gradient(109.02deg, #ECAF44 21.71%, rgba(209, 92, 87, 0.97) 77.66%);
  color: #fff;
  padding: 20px 0;
  border-radius: 3px;
}
.contact-details:hover i {
  background: #1A2C42;
}
.contact-details p {
  font-family: Noto Sans;
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 5px;
}
.contact-details p:last-child {
  margin-bottom: 0;
}
.contact-details i {
  font-size: 35px;
  display: inline-block;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-bottom: 12px;
  transition: all 0.4s;
}

.contact-info li {
  display: inline-block;
  color: #BE2F29;
  padding: 0 10px;
  font-size: 22px;
  transition: 0.1s;
  line-height: 0;
}
.contact-info li:first-child {
  padding-left: 0;
}
.contact-info ul {
  margin-top: 40px;
}
.contact-info li:hover {
  color: #1A2C42;
  transform: rotate(-5deg);
}

.map-img {
  height: 468px;
}
.map-img iframe {
  height: 100%;
  width: 100%;
  border: none;
}

/*


/*================================================
26. 404 Page CSS
=================================================*/
.error-content h1 {
  font-size: 38px;
}

.error-content p {
  font-family: Noto Sans, sans-serif;
  font-weight: normal;
  font-size: 15px;
}

.error-btn-wrap {
  margin-top: 30px;
}

.error-btn-wrap a i {
  font-size: 18px;
  margin-right: 5px;
  margin-top: -5px;
}

.error-img img {
  max-width: 650px;
  width: 100%;
  display: block;
  margin: 0px auto;
}

/*


/*
============================================
============= Preloader CSS ================
*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  top: 0;
  left: 0;
  font-size: 30px;
  vertical-align: center;
}
.preloader [class=loader] {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: #BE2F29;
  pointer-events: none;
}
.preloader .loader {
  animation: loader-1 2s infinite linear;
  position: absolute;
  top: 45%;
  left: 50%;
}
.preloader .loader:before, .preloader .loader:after {
  content: "";
  width: 0;
  height: 0;
  border: 1rem solid currentcolor;
  display: block;
  position: absolute;
  border-radius: 100%;
  animation: loader-2 2s infinite ease-in-out;
}
.preloader .loader:before {
  top: 0;
  left: 50%;
}
.preloader .loader:after {
  bottom: 0;
  right: 50%;
  animation-delay: -1s;
}
@keyframes loader-1 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-2 {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

/*
============= Preloader CSS END ================
================================================
*/

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