/********************************************************** */
/**********************  Conset ************************* */
/**********************************************************

    TABLE OF CONTENT
    ========================

    01. Default CSS
    02. Hero Section
    03. Page Banner
    04. Our Success
    05. About Us
    06. Service Section
    07. Partners
    08. Cases Section
    09. Team Section
    10. Call Back Section
    11. Testimonial Section
    12. Call To Action
    13. About Page
    14. Vission Mission
    15. Service Details
    16. Case Details
    17. Contact Page
    18. Error Page
    19. Footer Section


/****************************************************** */
/*******************  01. Default CSS ***************** */
/****************************************************** */
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

:root {
  --heading-color: #2d2d2d;
  --primary-color: #fe6600;
  --primary-color-rgb: 254, 102, 0;
}

body {
  color: #747474;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Roboto", sans-serif;
}

a {
  color: #747474;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:focus,
a:visited {
  outline: none;
  color: var(--primary-color, #fe6600);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color, #2d2d2d);
  line-height: 1.1;
  font-family: "Roboto", sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  font-size: 100px;
  font-weight: 700;
}

h2 {
  font-size: 60px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 15px;
}

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

img {
  max-width: 100%;
  display: inline-block;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

header:after,
section:after,
footer:after {
  display: block;
  clear: both;
  content: "";
}

/** Section Title style */
.section-title h2 {
  line-height: 1.17;
}

.section-title h2 span {
  color: var(--primary-color, #fe6600);
}

/*** Preloader style ** */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/preloader.gif);
}

/* input buttons */
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  outline: none;
}

.overlay {
  position: relative;
}

.overlay:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.1;
  background: #000000;
}

.overlay * {
  z-index: 2;
  position: relative;
}

.bg-black {
  background: #292929;
}

.bg-snow {
  background: #f9f9f9;
}

/****************************************************** */
/****************** 02. Hero Section  *************** */
/****************************************************** */
.hero-section {
  height: 1000px;
  margin-top: 50px;
  background: url(../images/home/home-bg.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 900px;
  padding: 30px 0 85px;
}

.hero-inner .sub-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--primary-color, #fe6600);
}

.hero-inner h2 {
  color: #ffffff;
  margin: 35px 0 45px;
  line-height: 1.1;
}

.hero-inner h2 span {
  display: inline-block;
}

.hero-inner h2 span:after {
  content: ".";
  color: var(--primary-color, #fe6600);
}

/****************************************************** */
/**************** 05. About Us Section  *************** */
/****************************************************** */
.about-image {
  max-width: 500px;
  padding: 50px;
  position: relative;
}

.about-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  z-index: -1;
  background: var(--primary-color, #fe6600);
}

.about-image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 191px;
  height: 191px;
  z-index: -1;
  background: #292929;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
}

.about-image img {
  border-radius: 100px 0 0 0;
  clip-path: polygon(100% 0, 100% 100%, 110px 100%, 0 calc(100% - 110px), 0 0);
}

/*Custom Animation*/
@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 100px, 0);
    transform: translate3d(-100px, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 100px, 0);
    transform: translate3d(-100px, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

.about-border {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 8px;
  height: 38%;
  background: #efefef;
}

.about-content p {
  color: #3b3b3b;
  margin-bottom: 25px;
}

.about-content > i {
  font-weight: 500;
  margin-bottom: 40px;
  display: inline-block;
  color: var(--heading-color, #2d2d2d);
}

/****************************************************** */
/***************** 06. Service Section  *************** */
/****************************************************** */
.product-section {
  position: relative;
}

.product-section:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  background: rgba(254, 102, 0, 0.15);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.product-section:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 265px;
  height: 265px;
  background: var(--primary-color, #fe6600);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.product-section .section-title h2 {
  margin-bottom: 15px;
}

.product-item {
  background: #fff;
  margin-bottom: 40px;
  padding: 56px 48px 50px;
  position: relative;
  z-index: 1;
}

.product-item .product-icon {
  margin-bottom: 23px;
}

.product-item .product-icon a {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background: #f9f9f9;
  color: var(--primary-color, #fe6600);
}

.product-item:hover .product-icon a {
  color: #fff;
  border-radius: 15px;
  background: var(--primary-color, #fe6600);
}

.product-content h4 {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 15px;
}

.product-content h4 a {
  color: var(--heading-color, #2d2d2d);
}

.product-content h4 a:hover {
  color: var(--primary-color, #fe6600);
}

.product-content p {
  color: #3b3b3b;
  margin-bottom: 0;
}

.separetor {
  width: calc(100% - 30px);
  height: 5px;
  margin-left: 15px;
  margin-bottom: 40px;
  background: var(--primary-color, #fe6600);
}

/****************************************************** */
/****************** 08. Cases Section  **************** */
/****************************************************** */
.cases-section {
  position: relative;
}

.cases-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: rgba(254, 102, 0, 0.15);
  clip-path: polygon(100% 0, 0 100%, 0 0);
}

.cases-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 265px;
  height: 265px;
  background: var(--primary-color, #fe6600);
  clip-path: polygon(100% 0, 0 100%, 0 0);
}

.cases-section .section-title {
  position: relative;
  z-index: 1;
}

.cases-section .section-title h2 {
  color: #ffffff;
  margin-bottom: 30px;
}

.cases-section .section-title p {
  color: #bfbfbf;
}

/****************************************************** */
/************* 11. Testimonial Section  ************** */
/****************************************************** */
.testimonial-area {
  display: flex;
  align-items: center;
}

.review-buttons {
  margin-right: 30px;
}

.review-btn {
  display: block;
  background: rgba(254, 102, 0, 1);
}

.review-btn,
.review-btn img {
  transition: all 0.3s ease;
}

.review-btn img {
  opacity: 1;
  width: 100%;
}

.review-btn:hover img {
  opacity: 0.4;
}

.review-btn.active img {
  opacity: 0.1;
}

.review-btn.active::before {
  transition: transform 0.3s ease 0s, visibility 0.3s ease 0.2s,
    opacity 0.3s ease 0.2s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}

.review-buttons figure {
  width: 100px;
  position: relative;
  margin-bottom: 30px;
}

.review-buttons figure:last-child {
  margin-bottom: 0;
}

.review-buttons figure::before,
.review-buttons figure::after {
  position: absolute;
  content: "";
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease 0s;
}

.review-buttons figure.active-btn::before,
.review-buttons figure.active-btn::after {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.4s ease 0.2s;
}

.review-buttons figure.active-btn::before {
  width: 2px;
  height: 10px;
}

.review-buttons figure.active-btn::after {
  width: 10px;
  height: 2px;
}

.testimony-content {
  width: 100%;
}

.review-single {
  display: none;
  animation: 1s fadeIn;
}

.review-single.active {
  display: flex;
  align-items: center;
}

.review-single .textimonial-image {
  flex: none;
  max-width: 36%;
  margin-right: 40px;
  animation: 1s fadeInDown;
}

.textimonial-content {
  max-width: 566px;
  margin-left: auto;
  animation: 1s fadeInLeft;
}

.textimonial-content p {
  font-size: 28px;
  line-height: 1.57;
  padding-top: 50px;
  position: relative;
  color: var(--heading-color, #2d2d2d);
}

.textimonial-content p:before {
  content: "\f107";
  font-family: "Flaticon";
  font-size: 45px;
  position: absolute;
  top: -34px;
  left: 0;
  color: var(--primary-color, #fe6600);
}

.textimonial-content p:after {
  content: "\f108";
  font-family: "Flaticon";
  font-size: 45px;
  position: absolute;
  right: 15%;
  bottom: -45px;
  color: var(--primary-color, #fe6600);
}

.textimonial-content .reviewer {
  margin-top: 60px;
}

.textimonial-content .reviewer h3 {
  font-size: 32px;
}

.textimonial-content .reviewer span {
  color: var(--primary-color, #fe6600);
}

/****************************************************** */
/***************** 19. Footer Section  **************** */
/****************************************************** */
.widget-title {
  color: #ffffff;
  line-height: 28px;
  margin-bottom: 45px;
}

.widget {
  margin-bottom: 50px;
}

.widget p,
.widget ul li,
.widget ul li a {
  color: #d0d0d0;
}

.widget ul li {
  margin-bottom: 16px;
}

.widget ul li:last-child {
  margin-bottom: 0;
}

.contact-info-widget ul li {
  margin-bottom: 35px;
}

.contact-info-widget h5 {
  margin-bottom: 15px;
  color: var(--primary-color, #fe6600);
}

.contact-info-widget p {
  margin-bottom: 0;
}

/*** Scroll Top style ***/
.scroll-top {
  width: 48px;
  height: 48px;
  color: #ffffff;
  cursor: pointer;
  margin-left: auto;
  border-radius: 15px;
  background: var(--primary-color, #fe6600);
}
.services-image {
  padding: 20px;
  max-width: 500px;
  margin-right: 40px;
  animation: 1s fadeInDown;
}
.services-content {
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
}
.services-content h5 {
  color: white;
}
.services-content p {
  color: white;
}
.inline-flex {
  display: inline-flex;
}
.info-title {
  font-weight: bolder;
  color: var(--primary-color);
}
