@import url("fontawesome-all.css");
@import url("flaticon.css");
@import url("scrollbar.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}

.page-wrapper {
  position: relative;
  width: 100%;
  min-width: 300px;
  z-index: 9;
  margin: 0px auto;
  overflow: hidden;
}

body {
  font-size: 16px;
  color: #222;
  line-height: 1.7em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  /* font-family: 'Work Sans', sans-serif; */
  font-family: "Poppins", sans-serif;
  background: rgb(255, 255, 255);
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none !important;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  line-height: 1.25em;
  margin: 0px;
  background: none;
}

textarea {
  overflow: hidden;
}

button {
  outline: none !important;
  cursor: pointer;
}

.text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0px 0px 15px;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: none;
  outline: none;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  background-color: inherit;
  border-color: inherit;
  color: inherit;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  z-index: 9;
  overflow: hidden;
}

.auto-container {
  position: static;
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

figure {
  margin-bottom: 0;
}

.theme-btn {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme-btn i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  margin-left: 3px;
}

.centered {
  text-align: center !important;
}

.gray-bg {
  background-color: #f4f4f4 !important;
}

.light-bg {
  background-color: #fff !important;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.dropdown-toggle::after {
  display: none;
}

.fa {
  line-height: inherit;
}

/* Btn style */

.theme-btn {
  display: inline-block;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

/*** 

====================================================================
    Scroll To Top style
====================================================================

***/

.scroll-to-top {
  position: fixed;
  right: 50px;
  bottom: 110px;
  width: 54px;
  height: 54px;
  color: #ffffff;
  font-size: 18px;
  line-height: 54px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background: #25283a;
  border-radius: 50%;
  margin-left: -26px;
  display: none;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.scroll-to-top.style-two {
  background-color: #2d3247;
}

.scroll-to-top:hover {
  color: #ffffff;
}

/*Btn Style One*/

.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background-color: #ffffff;
  padding: 15.5px 45px;
  font-weight: 600;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-style-one:hover {
  color: #fff;
}

.btn-style-one:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #222;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  /* easeInOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  /* easeInOutQuint */
}

.btn-style-one:hover:before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}

.btn-style-one span {
  position: relative;
  z-index: 2;
}

.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -o-transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.5;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -o-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Main Footer */

.main-footer {
  position: relative;
  background-color: #26262c;
}

.main-footer .widgets-section {
  position: relative;
  padding: 100px 0px 30px;
}

.main-footer .column {
  position: relative;
}

.footer-widget {
  position: relative;
  margin-bottom: 50px;
}

.main-footer .widget-title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.main-footer .widget-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
}

.footer-bottom {
  position: relative;
  text-align: center;
  padding-bottom: 75px;
}

.footer-bottom .copyright {
  color: #aaa;
}

.footer-bottom .copyright a {
  color: #fff;
}

/* About Us Section */

.about-us-section {
  position: relative;
  padding: 120px 0 190px;
}

.big-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 250px;
  font-weight: 800;
  color: #f7f7f7;
  text-transform: uppercase;
  line-height: 220px;
  -webkit-animation: linear infinite alternate;
  -webkit-animation-name: run;
  -webkit-animation-duration: 25s;
  -ms-animation: linear infinite alternate;
  -ms-animation-name: run;
  -ms-animation-duration: 25s;
  -moz-animation: linear infinite alternate;
  -moz-animation-name: run;
  -moz-animation-duration: 25s;
  text-align: center;
}

.about-us-section .shape-one {
  position: absolute;
  left: 5px;
  top: 20px;
  width: 430px;
  height: 510px;
  background-image: url(../images/shape/shape-3.png);
}

.about-us-section h2 {
  position: relative;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: -3px;
}

.about-us-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-us-section .text {
  margin-bottom: 45px;
}

.about-us-section .link-btn {
  margin-bottom: 30px;
}

.about-us-section .image-block {
  position: relative;
}

.about-us-section .image-block .image {
  position: relative;
  display: inline-block;
  z-index: 9;
  overflow: hidden;
  padding: 10px;
  margin: -10px;
}

.about-us-section .image-block .image:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
}

.about-us-section .image-block .image img {
  position: relative;
}

.about-us-section .image-block .logo {
  position: relative;
  background-color: #3b3b44;
  padding: 160px 60px 30px;
  margin-top: -120px;
  margin-left: -60px;
  display: inline-block;
  margin-bottom: 30px;
}

/* Projects Section */
.projects-section {
  position: relative;
}

.projects-section .auto-container {
  max-width: 100%;
}

.projects-section .wrapper-box {
  padding: 0 5px;
}

.project-block-one .inner-box {
  position: relative;
  margin-bottom: 20px;
}

.project-block-one .inner-box:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(
    -90deg,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    -90deg,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 100%
  );
  background-image: -ms-linear-gradient(
    -90deg,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 100%
  );
  opacity: 0.8;
}

.project-block-one .image img {
  width: 100%;
}

.project-block-one .content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 30px;
  text-align: center;
}

.project-block-one .top-content {
  position: relative;
  transition: 0.5s;
}

.project-block-one .inner-box:hover .top-content {
  transform: translateY(-90px);
}

.project-block-one h5 {
  position: relative;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}

.project-block-one h3 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.project-block-one h3:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 80px;
  transform: translate(-50%, 97px);
  transition: 0.5s;
}

.project-block-one .inner-box:hover h3:before {
  height: 40px;
  transform: translate(-50%, 65px);
}

.project-block-one .text {
  color: #fff;
  position: relative;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(10px);
}

.project-block-one .inner-box:hover .text {
  opacity: 1;
  transform: translateY(0);
}

/* Sec Title */
.sec-title {
  position: relative;
  margin-bottom: 70px;
}

.sec-title h2 {
  position: relative;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -3px;
}

.sec-title.style-two h2 {
  font-weight: 500;
  letter-spacing: -2px;
}

.sec-title.light h2 {
  color: #fff;
}

.sec-title.small {
  margin-bottom: 30px;
}

.sec-title.small h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -2px;
}

.sec-title .sec-title-dec {
  position: absolute;
  top: 0;
  left: 27px;
  height: 100px;
  width: 2px;
  transform: translate(0, -145px);
}

.sec-title.text-center .sec-title-dec {
  left: 50%;
  transform: translate(-50%, -145px);
}

.sec-title .sec-title-dec:before {
  position: absolute;
  content: "";
  left: -25px;
  top: 25px;
  width: 2px;
  height: 50px;
}

.sec-title .sec-title-dec:after {
  position: absolute;
  content: "";
  right: -25px;
  top: 25px;
  width: 2px;
  height: 50px;
}

.sec-title .sec-title-dec-two {
  position: absolute;
  top: 20px;
  left: -75px;
  height: 2px;
  width: 52px;
}

.sec-title .shape-one {
  position: absolute;
  left: 10px;
  top: 70px;
  width: 100%;
  height: 100px;
  background-image: url(../images/shape/shape-3.png);
}

/* Services Section */
.services-section {
  position: relative;
  padding: 145px 0 210px;
}

.services-section .big-title {
  bottom: 100px;
}

.border-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eee;
}

.border-shape:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 220px;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}

.border-shape.style-two:before {
  display: none;
}

.service-block-one .inner-box {
  position: relative;
  margin-bottom: 30px;
}

.service-block-one .image {
  overflow: hidden;
}

.service-block-one .image img {
  width: 100%;
  transition: 0.5s;
}

.service-block-one .inner-box:hover .image img {
  transform: scale(1.1);
}

.service-block-one .content {
  position: relative;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
  padding: 40px 45px 30px;
  background-color: #fff;
}

.service-block-one .content:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  height: 0%;
  background-color: #3b3b44;
  transition: 0.5s;
}

.service-block-one .inner-box:hover .content:before {
  height: 100%;
}

.service-block-one h4 {
  font-size: 24px;
  font-weight: 500;
  transition: 0.5s;
}

.service-block-one .inner-box:hover h4 {
  transform: translateY(-18px);
  color: #fff;
}

.service-block-one h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -15px;
  width: 50px;
  height: 2px;
}

.service-block-one .link-btn {
  position: relative;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(-10px);
}

.service-block-one .inner-box:hover .link-btn {
  opacity: 1;
  transform: translateY(8px);
}

.service-block-one .link-btn a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

/* Working Process Section */
.working-process-section {
  position: relative;
  padding: 145px 0 110px;
  background-size: cover;
  background-attachment: fixed;
}

.working-process-section:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.7;
}

.working-process-section .text {
  position: relative;
  color: #fff;
  margin-top: 40px;
  text-align: center;
}

.process-block .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.process-block .icon {
  position: relative;
  width: 100px;
  height: 100px;
  line-height: 98px;
  font-size: 50px;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  margin-right: 15px;
}

.process-block .count {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 65px;
}

.process-block h4 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

/* Features Section */
.features-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 120px;
}

.features-section .sec-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 160px;
  background-size: cover;
}

.feature-block {
  position: relative;
  padding: 100px 75px;
  max-width: 640px;
  margin: 0 auto;
  background-size: cover;
}

.feature-block h3 {
  position: relative;
  font-size: 44px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.feature-block h3:before {
  position: absolute;
  content: "";
  left: -75px;
  top: 25px;
  height: 2px;
  width: 40px;
}

.feature-block .text {
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.feature-block .theme-btn {
  color: #fff;
}

/* Blog Section */

.blog-section {
  position: relative;
  padding: 145px 0 90px;
}

.about-us-section-two {
  position: relative;
  padding: 120px 0 0;
}

.about-us-section-two:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 50%;
  bottom: 0;
  background-color: #fcf9f2;
  z-index: 2;
}

.about-us-section-two .auto-container {
  max-width: 1530px;
}

.about-us-section-two .content-block {
  position: relative;
  margin-bottom: 30px;
  margin-left: 80px;
  margin-right: 80px;
  z-index: 2;
}

.about-us-section-two .content-block h3 {
  position: relative;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 30px;
}

.about-us-section-two .content-block h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}

.about-us-section-two .content-block .text {
  margin-bottom: 40px;
}

.about-us-section-two .content-block .sign {
  margin-bottom: 10px;
}

.about-us-section-two .content-block .designation {
  position: relative;
  font-size: 14px;
}

.about-us-section-two .wrapper-box {
  position: relative;
  margin-bottom: -30px;
  margin-left: 70px;
  margin-right: -30px;
}

.about-us-section-two .wrapper-box:before {
  position: absolute;
  content: "";
  left: -120px;
  bottom: -120px;
  right: 150px;
  top: 150px;
  background-image: url(../images/shape/shape-3.png);
  z-index: 1;
}

/* Services Section Two */

.services-section-two {
  position: relative;
  padding: 145px 0 90px;
}

.service-block-two .inner-box {
  position: relative;
  margin-bottom: 30px;
}

.service-block-two .image img {
  width: 100%;
}

.service-block-two .content {
  position: relative;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
  padding: 38px 45px 45px;
  background-color: #fff;
}

.service-block-two h4 {
  font-size: 24px;
  font-weight: 500;
  transition: 0.5s;
  padding-bottom: 20px;
}

.service-block-two h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
}

.service-block-two .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.5s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 45px;
  background-size: cover;
}

.service-block-two .inner-box:hover .overlay {
  opacity: 1;
}

.service-block-two .inner-box .overlay:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  -ms-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  background-color: #3b3b44;
}

.service-block-two .inner-box:hover .overlay:before {
  opacity: 0.9;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.service-block-two .logo {
  position: relative;
  margin-bottom: 20px;
}

.service-block-two .text {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  position: relative;
  margin-bottom: 0;
}

/* Gallery Section */

.gallery-section {
  position: relative;
}

.gallery-section .auto-container {
  max-width: 100%;
  padding: 0;
}

.gallery-block .inner-box {
  position: relative;
}

.gallery-block .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-block .inner-box:hover .overlay {
  opacity: 0.95;
}

.gallery-block .zoom-btn {
  position: relative;
  font-size: 60px;
  color: #fff;
  z-index: 9;
  display: inline-block;
  line-height: 60px;
}

.gallery-block .border-one {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  transition: 0.5s;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: scaleX(0);
}

.gallery-block .inner-box:hover .border-one {
  transform: scaleX(1);
}

.gallery-block .border-two {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  transition: 0.5s;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: scaleY(0);
}

.gallery-block .inner-box:hover .border-two {
  transform: scaleY(1);
}

/* Contact Form */

.contact-form .bootstrap-select > .dropdown-toggle,
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group textarea,
.contact-form .form-group select {
  position: relative;
  display: block;
  height: 54px;
  width: 100%;
  font-size: 15px;
  color: rgb(12, 41, 87);
  line-height: 30px;
  font-weight: 600;
  background-color: transparent;
  border-radius: 6px;
  padding: 11px 20px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(225, 229, 233);
  -o-border-image: initial;
  border-image: initial;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
}

.contact-form .bootstrap-select > .dropdown-toggle .contact-form {
  position: relative;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 10px;
}

.contact-form .bootstrap-select > .dropdown-toggle,
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group textarea,
.contact-form .form-group select {
  position: relative;
  display: block;
  height: 54px;
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  color: #222;
  font-weight: 300;
  background-color: #fcf9f2;
  padding: 11.5px 25px;
  border-radius: 0;
  border: 1px solid #fcf9f2;
  -o-border-image: initial;
  border-image: initial;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
}

.contact-form .form-group textarea {
  height: 130px;
}

.contact-form
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  width: 100%;
}

/* Contact Section */

.contact-section {
  position: relative;
  padding: 200px 0 100px;
  border-bottom: 1px solid #eee;
}

.contact-section .sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 750px;
  background-size: cover;
}

.contact-section .wrapper-box {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
}

.contact-section .contact-form-area {
  position: relative;
  padding: 70px 70px;
}

.contact-section .form-group-two {
  margin-top: 25px;
}

.contact-section .theme-btn {
  background-color: #3b3b44;
}

.contact-section .bottom-content {
  position: relative;
  text-align: center;
  margin-top: 90px;
}

.contact-section .bottom-content h5 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-section .bottom-content .contact-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-section .bottom-content .contact-info li {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  margin-right: 30px;
  margin-bottom: 10px;
}

.contact-section .bottom-content .contact-info li a {
  color: #222;
}

.contact-section .bottom-content .contact-info li:last-child {
  margin-right: 0;
}

.contact-section .bottom-content .contact-info li span {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}

.contact-section .bottom-content .contact-info li i {
  font-size: 24px;
}

.contact-section .bottom-content .contact-info li:first-child {
  padding-left: 120px;
}

.contact-section .bottom-content .contact-info li:first-child i {
  margin-right: 15px;
}

.contact-section .bottom-content .contact-info li:first-child:before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  height: 2px;
  width: 100px;
}

.contact-section .bottom-content .contact-info li:last-child {
  padding-right: 120px;
}

.contact-section .bottom-content .contact-info li:last-child i {
  margin-left: 15px;
}

.contact-section .bottom-content .contact-info li:last-child:before {
  position: absolute;
  content: "";
  right: 0;
  top: 10px;
  height: 2px;
  width: 100px;
}

/* About Us Section Three */

.about-us-section-three {
  position: relative;
  padding: 190px 0 250px;
}

.about-us-section-three .shape-one {
  position: absolute;
  left: 5px;
  top: 20px;
  width: 50%;
  height: 560px;
  background-image: url(../images/shape/shape-3.png);
}

.about-us-section-three .content h2 {
  position: relative;
  font-size: 48px;
  letter-spacing: -3px;
  font-weight: 500;
  margin-bottom: 30px;
}

.about-us-section-three .content h4 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-us-section-three .text {
  position: relative;
  margin-bottom: 35px;
}

.about-us-section-three .experience-years {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-us-section-three .years {
  font-size: 100px;
  font-weight: 600;
  line-height: 100px;
  padding: 3px 0 8px;
  margin-right: 20px;
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: #13336c;
}

.about-us-section-three .experience-years .text {
  text-transform: uppercase;
  max-width: 265px;
  margin: 0;
}

/* Services Section Three */
.services-section-three {
  position: relative;
  padding: 120px 0 490px;
}

.services-section-three .sec-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 600px;
  background-size: cover;
}

.service-block-three {
  position: relative;
}

.service-block-three .inner-box {
  position: relative;
  margin-bottom: 30px;
  padding: 50px 40px 50px;
  background-color: #fff;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.service-block-three .inner-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  bottom: 2px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  -ms-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  background-color: #13336c;
}

.service-block-three .inner-box:hover:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.service-block-three .icon {
  position: relative;
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 25px;
  transition: 0.5s;
}

.service-block-three .inner-box:hover .icon {
  color: #fff;
}

.service-block-three h4 {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 30px;
  transition: 0.5s;
}

.service-block-three .inner-box:hover h4 {
  color: #fff;
}

.service-block-three h4:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50px;
  transition: 0.5s;
}

.service-block-three .inner-box:hover h4:before {
  background-color: #fff;
}

.service-block-three .text {
  position: relative;
  margin-bottom: 0;
  transition: 0.5s;
}

.service-block-three .inner-box:hover .text {
  color: #fff;
}

/* Projects Section Three */
.projects-section-three {
  position: relative;
  padding: 100px 0 130px;
}

.projects-section-three .border-shape:before {
  left: 0;
  width: 25%;
  transform: translateX(0);
}

.project-block-three {
  position: relative;
}

.project-block-three .inner-box {
  position: relative;
  margin-bottom: 160px;
  width: fit-content;
}

.project-block-three .inner-box .image {
  position: relative;
  overflow: hidden;
}

.project-block-three .inner-box .image img {
  transition: 1s;
}

.project-block-three .inner-box:hover .image img {
  transform: scale(1.2);
}

.project-block-three:nth-child(odd) .inner-box {
  top: -40px;
}

.project-block-three:nth-child(even) .inner-box {
  margin: 0 auto;
  margin-right: 0;
}

.project-block-three .content {
  position: absolute;
  left: 0;
  bottom: -136px;
  background-color: #fff;
  padding: 60px;
  max-width: 375px;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
}

.project-block-three .content h4 {
  font-size: 30px;
  font-weight: 500;
  padding-top: 25px;
  margin-bottom: 20px;
  transition: 0.5s;
}

.project-block-three .content h4:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 2px;
  width: 50px;
  transition: 0.5s;
}

.project-block-three .content .text {
  position: relative;
  margin-bottom: 35px;
  transition: 0.5s;
}

.project-block-three .content .link {
  position: relative;
}

.project-block-three .content .link:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border: 15px solid transparent;
  border-right-color: #13336c;
  border-top-color: #13336c;
  transition: 0.9s;
}

.project-block-three .inner-box:hover .content .link:before {
  transform: rotate(180deg);
}

.project-block-three .content .link i {
  position: relative;
  margin-left: 25px;
  font-size: 20px;
  display: inline-block;
}

.project-block-three.style-two .inner-box {
  margin: 0 auto 120px;
  margin-right: 0;
  top: 0;
}

.project-block-three.style-two .content {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.project-block-three h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ece9e9;
  position: absolute;
  left: -90px;
  top: 50%;
  transform: rotate(-90deg) translate(-50%, -50%);
  transform-origin: 0 0;
  text-transform: uppercase;
}

/* Contact Section Two */

.contact-section-two {
  position: relative;
  padding: 100px 0 0;
}

.contact-section-two .border-shape:before {
  right: 0;
  left: auto;
  width: 25%;
  transform: translateX(0);
}

.contact-section-two .sec-title .sec-title-dec {
  left: auto;
  right: 0;
}

.contact-section-two .contact-form-area {
  background-color: #13336c;
  padding: 45px 60px 60px;
  margin-left: -15px;
}

.contact-section-two .contact-form .bootstrap-select > .dropdown-toggle,
.contact-section-two .contact-form .form-group input[type="text"],
.contact-section-two .contact-form .form-group input[type="email"],
.contact-section-two .contact-form .form-group textarea,
.contact-section-two .contact-form .form-group select {
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 0;
}

.contact-section-two .contact-form .form-group {
  margin-bottom: 25px;
}

.contact-section-two .contact-form .form-group-two {
  margin-top: 12px;
}

.contact-section-two .contact-form {
  margin-bottom: 45px;
}

.contact-section-two .contact-info li {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.contact-section-two .contact-info li + li {
  margin-top: 11px;
}

.contact-section-two .contact-info li a {
  color: #fff;
}

.contact-section-two .contact-info li i {
  margin-right: 8px;
}

.about-us-section-four {
  position: relative;
  padding: 120px 0 90px;
}

.about-us-section-four .content {
  position: relative;
  margin-bottom: 30px;
}

.about-us-section-four .content h4 {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.about-us-section-four .content h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
}

.about-us-section-four .content h2 {
  position: relative;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: -3px;
}

.about-us-section-four .content h2 strong {
  font-weight: 700;
}

.about-us-section-four .content .text {
  margin-bottom: 40px;
}

.about-us-section-four .image {
  position: relative;
  padding: 30px 0;
  margin-bottom: 30px;
  display: inline-block;
  overflow: hidden;
}

.about-us-section-four .image:before {
  position: absolute;
  content: "";
  left: 80px;
  top: 0;
  right: 80px;
  bottom: 0;
  border: 10px solid #222;
}

.about-us-section-four .image img {
  position: relative;
}

.line-shape {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 1140px;
  margin: 0 auto;
}

.line-shape .line-four,
.line-shape .line-three,
.line-shape .line-two,
.line-shape .line-one {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #eee;
}

.line-shape .line-two {
  left: 33.333%;
}

.line-shape .line-three {
  left: 66.333%;
}

.line-shape .line-four {
  left: auto;
  right: 0;
}

.about-us-section-four .shape-one {
  position: absolute;
  left: 30px;
  top: 50%;
  width: 310px;
  height: 430px;
  background-image: url(../images/shape/shape-3.png);
  transform: translateY(-50%);
}

/* Services Section Style Two */

.services-section.style-two {
  position: relative;
  padding: 305px 0 210px;
}

.services-section.style-two .shape-one {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 310px;
  height: 70px;
  background-image: url(../images/shape/shape-3.png);
  transform: translateX(-50%);
}

.services-section.style-two .outer-container {
  position: relative;
  padding: 0 30px;
}

.services-section.style-two .service-block-one .inner-box {
  margin-bottom: 0;
}

/* Working Process Section */

.working-process-section-two {
  position: relative;
  padding: 145px 0 110px;
}

.working-process-section-two .sec-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 800px;
  background-size: cover;
  z-index: 1;
}

.working-process-section-two .auto-container {
  max-width: 1270px;
}

.working-process-section-two .sec-title {
  z-index: 2;
}

.process-block-two .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  z-index: 2;
}

.process-block-two .icon {
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 100px;
  font-size: 40px;
  color: #fff;
  text-align: center;
  border: 11px solid #2b2b31;
  margin-right: 30px;
  border-radius: 50%;
  background-color: #3b3b44;
  transition: 2s;
}

.process-block-two .icon span {
  display: inline-block;
  transition: 2s;
}

.process-block-two .inner-box:hover .icon span {
  transform: rotate(360deg);
}

.process-block-two .icon:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #606065;
  border-radius: 50%;
}

.process-block-two .count {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s;
}

.process-block-two h4 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.process-block-two .text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.working-process-section-two .bottom-content {
  position: relative;
  margin-top: 80px;
}

.working-process-section-two .single-image-carousel {
  position: relative;
  margin-bottom: 50px;
}

.working-process-section-two .single-image-carousel .slider-nav {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.working-process-section-two .single-image-carousel .slider-button-next {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #ccad6e;
  color: #ffffff;
  margin-right: 1px;
  cursor: pointer;
}

.working-process-section-two .single-image-carousel .slider-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #ccad6e;
  color: #ffffff;
  margin-left: 1px;
  cursor: pointer;
}

.working-process-section-two .single-image-carousel .slider-nav:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 2px;
  bottom: 0;
  background: #fff;
  transform: translateX(-50%);
}

/* Projects-section-four */
.projects-section-four {
  position: relative;
  padding: 150px 0 120px;
}

.projects-section-four .big-title {
  bottom: -72px;
}

.project-block-four .inner-box {
  position: relative;
  margin-bottom: 140px;
  width: fit-content;
}

.project-block-four:nth-child(even) .inner-box {
  margin: 0 auto 140px;
  margin-right: 0;
  top: -310px;
}

.project-block-four .image {
  position: relative;
  overflow: hidden;
}

.project-block-four .image img {
  width: 100%;
  transition: 1s;
}

.project-block-four .inner-box:hover .image img {
  transform: scale(1.2);
}

.project-block-four .content {
  position: absolute;
  left: 45px;
  right: 45px;
  bottom: -60px;
  padding: 60px;
  background: #fff;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.project-block-four .content h4 {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.project-block-four .content h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
}

.project-block-four .content .btn-style-two:before {
  background-color: #222;
}

.project-block-four .content .theme-btn:hover {
  border-color: #222;
}

.project-block-four .image:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  -ms-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  background-color: #000;
  z-index: 1;
}

.project-block-four .inner-box:hover .image:before {
  opacity: 0.75;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.project-block-four .inner-box .zoom-btn {
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -25px;
  color: #fff;
  font-size: 50px;
  transition: 0.5s;
  opacity: 0;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  z-index: 2;
}

.project-block-four .inner-box:hover .zoom-btn {
  opacity: 1;
}

.projects-section-four .outer-container {
  position: relative;
}

.projects-section-four .link-btn-two {
  position: absolute;
  right: 180px;
  bottom: 205px;
}

/* Contact Section Three */

.contact-section-three {
  position: relative;
  padding-top: 80px;
}

.contact-section-three .sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  bottom: 120px;
  background-size: cover;
}

.contact-section-three .contact-form-area {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
  padding: 80px;
  padding-left: 160px;
}

.contact-section-three h3 {
  position: relative;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 35px;
}

.contact-section-three h3:before {
  position: absolute;
  content: "";
  left: -80px;
  top: 15px;
  height: 2px;
  width: 55px;
}

.contact-section-three .form-group-two {
  margin-top: 26px;
}

.contact-section-three .map-outer {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.contact-section-three #contact-google-map {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.gm-style .gm-style-iw-c {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  top: 0;
  text-align: center;
  left: 0;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  background-color: white;
  border-radius: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 220px;
  min-height: 85px;
  padding: 30px 0;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.gm-style-iw-d h4 {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #c72a30;
  color: #1b1b1b;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 22px;
}

.gm-style-iw-d p {
  color: #858585;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
}

.map-data {
  padding-left: 30px;
}

.map-data h6 {
  font-size: 20px;
  margin-bottom: 19px;
  border-bottom: 2px solid #c72a30;
  display: inline-block;
  color: #302c51;
}

.gmnoprint {
  display: none;
}

.contact-section-three .contact-info {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  left: 80px;
  bottom: 0;
  right: 0;
  text-align: center;
  background-color: #ccad6e;
  padding: 50px 0 40px;
}

.contact-section-three .contact-info li {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  margin-right: 30px;
  margin-bottom: 10px;
}

.contact-section-three .contact-info li a {
  color: #fff;
}

.contact-section-three .contact-info li:last-child {
  margin-right: 0;
}

.contact-section-three .contact-info li span {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}

.contact-section-three .contact-info li i {
  font-size: 24px;
}

.contact-section-three .contact-info li:first-child i {
  margin-right: 15px;
}

.contact-section-three .contact-info li:last-child i {
  margin-left: 15px;
}

/* Video Section */

.video-section {
  position: relative;
  padding: 145px 0 110px;
  background-size: cover;
  text-align: center;
}

.video-section:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.65;
}

.video-section .video-btn {
  position: relative;
  margin-bottom: 30px;
}

.video-section .video-btn a {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  line-height: 96px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
}

.video-section .text {
  position: relative;
  color: #fff;
}

/* Client Logo Section Two */

.clients-logo-section-two {
  position: relative;
  padding: 120px 0 90px;
}

.clients-logo-section-two .auto-container {
  max-width: 1490px;
}

.clients-logo-section-two .image {
  position: relative;
  text-align: center;
  border: 1px solid #eee;
  min-height: 180px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: 0.5s;
  background-color: #fff;
}

.clients-logo-section-two .image:hover {
  border-color: #f8f5ef;
}

.clients-logo-section-two .image:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  height: 0%;
  transition: 0.5s;
  background-color: #f8f5ef;
  opacity: 0;
}

.clients-logo-section-two .image:hover:before {
  height: 100%;
}

.clients-logo-section-two .image img {
  position: relative;
}

/* Features Section Four */

.featues-section-four {
  position: relative;
  padding: 120px 0 90px;
}

/* About Section Six */
.about-section-six {
  position: relative;
  padding: 60px 0 20px;
  margin: 0 20px;
  background-size: cover;
}

.about-section-six:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.85;
}

.about-section-six .single-image-carousel {
  position: relative;
  margin-right: -80px;
  margin-bottom: 30px;
}

.about-section-six .tab-btn-style-one {
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(59, 59, 68, 0.3);
  width: fit-content;
}

.about-section-six .tab-btn-style-one a.nav-link {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
  border-bottom: 2px solid transparent;
  padding: 20px 20px;
  transition: 0.5s;
  bottom: -1px;
}

.about-section-six .tab-btn-style-one a.nav-link:hover {
  border-color: transparent;
}

.about-section-six .tab-btn-style-one a.nav-link.active {
  color: #fff;
  background-color: transparent;
  border-color: #3b3b44;
}

.about-section-six .tab-content {
  position: relative;
  margin-bottom: 30px;
}

.about-section-six .tab-content .text {
  position: relative;
  color: #fff;
  margin-bottom: 30px;
}

.about-section-six .tab-content ul li {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}

.about-section-six .tab-content ul li i {
  font-size: 12px;
  margin-right: 10px;
}

/* Projects Section Two */

.projects-section-two {
  position: relative;
  padding: 145px 0 250px;
}

.projects-section-two .big-title {
  bottom: 130px;
}

.projects-section-two .sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 640px;
  background-size: cover;
}

.project-block-two .inner-box {
  position: relative;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
  margin: 0 20px 20px;
}

.projects-section-two .theme_carousel {
  max-width: 1005px;
  margin: 0 auto;
}

.project-block-two .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 45%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.project-block-two .content h4 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.project-block-two .content h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
}

.project-block-two .content .text {
  margin-bottom: 40px;
}

/*Project Tab*/

.projects-section-two .project-tab {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}

.projects-section-two .project-tab .tabs-header {
  position: relative;
  text-align: center;
  margin: 0 15px;
}

.projects-section-two .project-tab .project-tab-btns {
  position: relative;
  margin-bottom: 50px;
}

.projects-section-two .project-tab .project-tab-btns .p-tab-btn {
  position: relative;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
  margin: 0px 15px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.projects-section-two .project-tab .project-tab-btns .p-tab-btn:hover,
.projects-section-two .project-tab .project-tab-btns .p-tab-btn.active-btn {
  color: #fff;
}

.projects-section-two .project-tab .p-tabs-content {
  position: relative;
  display: block;
}

.projects-section-two .project-tab .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.projects-section-two .project-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.projects-section-two .p-tab.active-tab .project-block-two {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
}

.projects-section-two .p-tab .project-block-two {
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}

.projects-section-two .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: -50px;
  display: block;
  right: -50px;
  height: 30px;
  margin-top: -15px;
}

.projects-section-two .owl-theme .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  top: 0;
  height: 26px;
  width: 26px;
  font-size: 0;
}

.projects-section-two .owl-theme .owl-nav .owl-prev:before {
  font-family: "Flaticon";
  content: "\f116";
  position: absolute;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  left: 0;
  color: #fff;
  font-size: 20px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.projects-section-two .owl-theme .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: 0;
  height: 26px;
  width: 26px;
  font-size: 0;
}

.projects-section-two .owl-theme .owl-nav .owl-next:before {
  font-family: "Flaticon";
  content: "\f116";
  position: absolute;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 27px;
  right: 0;
  color: #fff;
  font-size: 20px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/** page-title **/

.page-title {
  position: relative;
  padding: 6rem 0px 10.6rem;
  background-color: #646464;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

.page-title .content-box {
  padding-left: 22px;
  position: relative;
}

.page-title .content-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 4px;
  width: 4px;
  height: 84px;
}

.page-title .content-box h1 {
  position: relative;
  display: block;
  font-size: 2.5rem;
  line-height: 65px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
  padding-top: 20px;
}

.page-title .content-box h1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  margin-left: -40px;
  width: 80px;
  height: 2px;
}

.page-title .content-box .bread-crumb li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  padding-right: 20px;
  margin-right: 5px;
  font-family: var(--fira-sans);
  text-transform: uppercase;
}

.page-title .content-box .bread-crumb li a {
  color: #fff;
}

.page-title .content-box .bread-crumb li.home a {
  border: 1px solid;
  padding: 5px;
  margin-right: 10px;
}

.page-title .content-box .bread-crumb li a:hover {
  text-decoration: underline;
}

.page-title .content-box .bread-crumb li:last-child {
  padding: 0px;
  margin: 0px;
}

.page-title .content-box .bread-crumb li:before {
  position: absolute;
  content: "//";
  top: 0px;
  right: 0px;
}

.page-title .content-box .bread-crumb li:last-child:before {
  display: none;
}

/* Working Process Section Style Two */

.working-process-section.style-two .process-block .icon {
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 40px;
  line-height: 96px;
}

/* Room Dimention */
.room-dimention {
  position: relative;
}

.room-dimention .auto-container {
  max-width: 100%;
  padding: 0;
}

.room-dimention .image {
  position: relative;
  margin-right: -80px;
}

.room-dimention .content {
  position: relative;
  padding: 70px 130px;
  margin-right: 100px;
  margin-left: -50px;
}

.room-dimention .text {
  color: #fff;
}

.room-dimention ul li {
  color: #fff;
  margin-bottom: 5px;
}

.room-dimention ul li i {
  margin-right: 10px;
  margin-top: 0;
  font-size: 12px;
}

/* Projects Section Style Two*/

.projects-section.style-two {
  padding: 130px 0;
}

/* About Us Section Five */
.about-us-section-five.style-two .image {
  margin-top: 0;
}

.about-us-section-five.style-two {
  padding: 120px 0;
}

.about-us-section-five.style-two blockquote {
  margin-top: 50px;
}

.error-page {
  position: relative;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 350px;
}

.error-page .logo {
  margin-bottom: 170px;
}

.error-page h1 {
  position: relative;
  font-size: 150px;
  font-weight: 500;
  color: #fff;
  line-height: 150px;
}

.error-page h2 {
  position: relative;
  color: #fff;
  font-size: 70px;
  font-weight: 300;
  margin-bottom: 30px;
}

.error-page .text {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
}

.error-page .link-btn .theme-btn {
  color: #fff;
}

/* Contact Section */
.contact-section.style-two {
  position: relative;
  padding: 120px 0 90px;
}

.contact-section .contact-info-two {
  position: relative;
  margin-top: 110px;
}

.contact-section .contact-info-two .content {
  margin-left: 70px;
  padding-left: 65px;
}

.contact-section .contact-info-two .content h2 {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-section .contact-info-two .content .text {
  margin-bottom: 25px;
}

.contact-section .contact-info-two .content h2:before {
  position: absolute;
  content: "";
  left: -65px;
  top: 20px;
  width: 50px;
  height: 2px;
  background: #ddd;
}

.contact-section .contact-info-two .content ul.list {
  margin-bottom: 30px;
}

.contact-section .contact-info-two .content li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.contact-section .contact-info-two .content li i {
  margin-right: 10px;
}

/* Google Map Section */
.google-map-section {
  position: relative;
}

.google-map-section #contact-google-map {
  position: relative;
  height: 500px;
}

/* Contact Info Three */

.contact-section .contact-info-three {
  position: relative;
  margin-bottom: 50px;
}

.contact-section .contact-info-three .content {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
  padding: 60px 20px;
}

.contact-section .contact-info-three .content .icon {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}

.contact-section .contact-info-three .content h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-section .contact-info-three .content .text {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.contact-section .contact-info-three .content .text a {
  color: #666;
}

/* Portfolio Section */

.portfolio-section {
  position: relative;
  padding: 270px 0 90px;
}

.portfolio-section .gallery-block .inner-box {
  margin-bottom: 30px;
}

.filter-tabs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-tabs li {
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  margin: 0 18px 10px;
  transition: 0.5s;
}

.filter-tabs li.active {
  text-decoration: underline;
}

/* Portfolio Section Two */

.portfolio-section-two {
  position: relative;
  padding: 270px 0 90px;
}

.portfolio-section-two .auto-container {
  max-width: 100%;
  padding: 0;
}

/* Blog Page */
.sidebar-page-container {
  position: relative;
  padding: 70px 0 0;
}

/* Pagination */
.pagination {
  align-items: center;
  justify-content: center;
}

.pagination li {
  position: relative;
  margin: 0 5px 5px;
}

.pagination li a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  line-height: 38px;
  text-align: center;
  color: #3b3b44;
  display: inline-block;
  transition: 0.5s;
}

.pagination li a:hover {
  color: #fff;
  background-color: #3b3b44;
  border-color: #3b3b44;
}

.pagination li span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #3b3b44;
  display: inline-block;
}

.pagination li a.next {
  border-color: transparent;
  font-size: 18px;
}

/* Widget Style */

.widget {
  margin-bottom: 40px;
}

.widget-title {
  position: relative;
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 35px;
}

.widget-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
}

/* Widget Search */

.widget_search {
  position: relative;
}

.widget_search input[type="search"] {
  width: 100%;
  height: 55px;
  background: #fcf9f2;
  padding: 0 30px;
  padding-right: 65px;
}

.widget_search .form-group {
  position: relative;
}

.widget_search button {
  position: absolute;
  top: 15px;
  right: 30px;
  background: transparent;
}

/* Category Widget */

.categories-list {
  position: relative;
}

.categories-list li {
  position: relative;
  margin-bottom: 10px;
}

.categories-list li a {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
}

.categories-list li a:hover {
  padding-left: 25px;
}

.categories-list li a span {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 300;
  color: #222;
}

.categories-list li a:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f178";
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  transition: 0.5s;
  opacity: 0;
}

.categories-list li a:hover:before {
  opacity: 1;
}

/* Popular Post */

.widget_popular_post .post-thumb {
  position: relative;
  margin-right: 1rem;
  margin-bottom: 20px;
}

.widget_popular_post .post {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  /* padding-bottom: 10px; */
}

.widget_popular_post .content {
  position: relative;
  margin-bottom: 20px;
  max-width: 200px;
}

.widget_popular_post .content h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.widget_popular_post .content h5 a {
  color: #222;
  transition: 0.5s;
}

.widget_popular_post .content .date {
  font-size: 14px;
}

/* Widget Newsletter */

.widget_newsletter {
  position: relative;
  text-align: center;
  padding: 50px 30px;
}

/* Tag Cloud */

.widget_tag_cloud ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.widget_tag_cloud li {
  font-size: 14px;
  font-weight: 500;
  margin-right: 15px;
  margin-bottom: 12px;
}

.widget_tag_cloud li a {
  color: #222;
  transition: 0.5s;
}

/* Blog Single Post */

.blog-single-post .inner-box {
  position: relative;
  margin-bottom: 80px;
}

.blog-single-post .image {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.blog-single-post .image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  width: 100%;
}

.blog-single-post .date {
  position: absolute;
  bottom: -21px;
  left: 40px;
  color: #fff;
  padding: 7px 22px;
}

.blog-single-post .content {
  position: relative;
  padding: 50px 50px 45px;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
}

.blog-single-post h3 {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.blog-single-post h3 a {
  color: #222;
}

.blog-single-post h4 {
  position: relative;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.blog-single-post .text {
  position: relative;
  margin-bottom: 20px;
}

.blog-single-post .post-meta {
  position: relative;
}

.blog-single-post .post-meta li {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
}

.blog-single-post .category {
  position: relative;
  font-size: 14px;
  transition: 0.5s;
}

.blog-single-post .content .wrapper-box {
  position: relative;
  transition: 0.5s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.blog-single-post .content .wrapper-box:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
}

.blog-single-post .list {
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
}

.blog-single-post .list li {
  position: relative;
  font-weight: 500;
  padding-left: 32px;
  margin-bottom: 5px;
}

.blog-single-post .list li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 13px;
  width: 15px;
  height: 3px;
}

.blog-single-post blockquote {
  position: relative;
  border-left: 4px solid;
  font-size: 24px;
  font-weight: 600;
  padding-left: 26px;
  margin: 30px 0;
  margin-left: 35px;
}

.blog-single-post blockquote p {
  font-size: 14px;
  margin-top: 15px;
}

.blog-single-post .post-tags {
  margin-bottom: 20px;
}

.blog-single-post .post-tags span {
  font-weight: 600;
}

.blog-single-post .post-tags a {
  position: relative;
  margin-right: 10px;
  color: #222;
  transition: 0.5s;
}

.blog-single-post .post-tags a:before {
  position: absolute;
  content: ",";
  right: -6px;
  bottom: -2px;
}

.blog-single-post .social-links {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.blog-single-post .social-links li {
  margin: 0 1.5px;
}

.blog-single-post .social-links a {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  padding: 6.5px 26px;
}

.blog-single-post .social-links a.facebook {
  background-color: #3b5998;
}

.blog-single-post .social-links a.twitter {
  background-color: #55acee;
}

.blog-single-post .social-links a.linkedin {
  background-color: #dc4e41;
}

.blog-single-post .social-links a.pinterest {
  background-color: #bd081c;
}

.sidebar-page-container .inner-title {
  position: relative;
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 35px;
}

.sidebar-page-container .inner-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
}

.sidebar-page-container .related-post {
  margin-bottom: 50px;
}

/* Projects Section Style Two */

.projects-section-two.style-two .project-block-two .inner-box {
  margin-top: 20px;
}

.projects-section-two.style-two .project-tab .project-tab-btns .p-tab-btn {
  color: rgba(34, 34, 34, 0.3);
}

.projects-section-two.style-two .project-tab .project-tab-btns .p-tab-btn:hover,
.projects-section-two.style-two
  .project-tab
  .project-tab-btns
  .p-tab-btn.active-btn {
  color: #222;
}

.projects-section-two.style-two .owl-theme .owl-nav .owl-prev:before {
  color: #222;
}

.projects-section-two.style-two .owl-theme .owl-nav .owl-next:before {
  color: #222;
}

/* Services Details */
.services-details {
  position: relative;
  padding: 120px 0;
}

.services-details .image {
  position: relative;
  margin-bottom: 30px;
}

.services-details .content-side h3 {
  position: relative;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 25px;
}

.services-details .content-side h5 {
  position: relative;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 16px;
}

.services-details .content-side .text {
  margin-bottom: 30px;
}

.services-details .feature-block-two .inner-box:before {
  background-color: #3b3b44;
}

.services-details .feature-block-two .inner-box:hover:before {
  opacity: 1;
}

.widget_categories_two {
  position: relative;
}

.widget_categories_two .widget-content {
  position: relative;
  padding: 50px;
}

.widget_categories_two .widget-content li {
  position: relative;
  margin-bottom: 25px;
}

.widget_categories_two .widget-content li:last-child {
  margin-bottom: 0;
}

.widget_categories_two .widget-content li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  font-weight: 500;
  transition: 0.5s;
}

.widget_categories_two .widget-content li:hover a,
.widget_categories_two .widget-content li.current a {
  color: #fff;
}

.widget_categories_two .widget-content li a:before {
  position: absolute;
  content: "";
  left: -50px;
  top: 10px;
  height: 2px;
  width: 30px;
  background-color: #fff;
  opacity: 0;
  transition: 0.5s;
}

.widget_categories_two .widget-content li.current a:before {
  opacity: 1;
}

/* Brochure Widget */

.widget_brochure {
  position: relative;
}

.widget_brochure .single-brochure {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 19px 28px;
  box-shadow: 0px 5px 18.9px 2.1px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}

.widget_brochure .single-brochure .icon {
  margin-right: 10px;
}

.widget_brochure .single-brochure a {
  position: relative;
  font-size: 18px;
  color: #222;
  font-weight: 600;
}

.widget-title-two {
  position: relative;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Animation */

.about-us-section-four .image:after,
.news-block-one .image:after,
.about-us-section .image-block .image:after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.3))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  opacity: 0;
}

.about-us-section-four .image:hover:after,
.news-block-one .inner-box:hover .image:after,
.about-us-section .image-block:hover .image:after {
  -webkit-animation: shine2 1s;
  animation: shine2 1s;
  opacity: 1;
}

@-webkit-keyframes shine2 {
  100% {
    left: 125%;
  }
}

@keyframes shine2 {
  100% {
    left: 125%;
  }
}
