@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #777777;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #15151a;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
    font-size: 22px;
    padding-top: 20px;
}

h4 {
    font-size: 18px;
    padding-top: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #777777;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== Custom Container =====*/
@media only screen and (min-width: 1400px) {
  .custom-container {
    max-width: 1560px;
  }
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0 40px;
  font-size: 16px;
  height: 65px;
  line-height: 65px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  background-color: #15151a;
  position: relative;
}
@media (max-width: 767px) {
  .main-btn {
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-size: 14px;
  }
}
.main-btn i {
  margin-left: 3px;
  color: #ff5e15;
}
.main-btn::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50%;
  top: 0;
  left: 0;
  border-top: 2px solid #ff5e15;
  border-left: 2px solid #ff5e15;
  background-color: transparent;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.main-btn:hover {
  background-color: #ff5e15;
  color: #fff;
  border-color: #ff5e15;
}
.main-btn:hover i {
  color: #fff;
}
.main-btn:hover::before {
  border-color: #fff;
}
.main-btn.main-btn-2 {
  background-color: #ff5e15;
  color: #fff;
  border-color: #ff5e15;
}
.main-btn.main-btn-2 i {
  color: #fff;
}
.main-btn.main-btn-2::before {
  border-color: #fff;
}
.main-btn.main-btn-2:hover {
  background-color: #15151a;
}
.main-btn.main-btn-2:hover i {
  color: #ff5e15;
}
.main-btn.main-btn-2:hover::before {
  border-color: #ff5e15;
}

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0;
}

/*===== All Section Title Style =====*/
.section-title .sub-title {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ff5e15;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section-title .sub-title {
    font-size: 14px;
  }
}
.section-title .main-title {
  font-size: 32px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .section-title .main-title {
    font-size: 24px;
  }
}
.section-title .main-title span {
  color: #ff5e15;
}
.section-title.section-title-2 .main-title {
  color: #fff;
}

/*===== All tab content Custom Style =====*/
.tab-content .tab-pane {
  display: block;
  overflow: hidden;
  height: 0;
  visibility: hidden;
  max-width: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

/*===== All Pagination Style =====*/
.pagination {
    justify-content: center!important;
}
.pagination  li {
  padding: 0 5px;
}
.pagination li a {
  width: 35px !important;
  height: 39px !important;
  line-height: 26px !important;
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(21, 21, 26, 0.1) !important;
  color: #15151a;
  border-radius: 3px;
  font-size: 16px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.pagination li a.active, .pagination li a:hover {
  color: #fff;
  background-color: #ff5e15;
  border-color: #ff5e15;
}
.page-item.active .page-link {
    color: #fff;
    background-color: #ff5e15;
    border-color: #ff5e15;
    border: 1px solid rgba(21, 21, 26, 0.1) !important;
    border-radius: 3px;
}

/*===== All Form Style =====*/
.single-form {
  margin-top: 25px;
}
.single-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}
.single-form input, .single-form textarea {
  width: 100%;
  height: 50px;
  border: 1px solid #eceff8;
  padding: 0 15px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #777777;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.single-form input + input, .single-form textarea + input {
  margin-top: 10px;
}
.single-form input:focus, .single-form textarea:focus {
  border-color: #ff5e15;
}
.single-form textarea {
  height: 200px;
  padding-top: 10px;
  resize: none;
}
/*===== All Overlay Style =====*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 21, 26, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
}

/*===========================
        02.HEADER css
===========================*/
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 30px 0;
}
.navbar .custom-container {
  position: relative;
}
.navbar .navbar-toggler {
  padding: 0 5px;
  border: 0;
}
.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 130%;
    left: 0;
    width: 100%;
    background-color: #15151a;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 130%;
    left: 0;
    width: 100%;
    background-color: #15151a;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}
.navbar .navbar-nav li {
  margin: 0 15px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav li {
    margin: 5px 0;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav li {
    margin: 5px 0;
  }
}
.navbar .navbar-nav li a {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 20px 0;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav li a {
    padding: 5px 0;
  }
}
.navbar .navbar-nav li .sub-menu {
  position: absolute;
  top: 115%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 170px;
  z-index: 9;
  background-color: #fff;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
  -moz-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
  box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav li .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0s linear;
    -moz-transition: all 0s linear;
    -ms-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
    border-top: 0;
    padding: 0 10px;
    background-color: #15151a;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav li .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0s linear;
    -moz-transition: all 0s linear;
    -ms-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
    border-top: 0;
    padding: 0 10px;
    background-color: #15151a;
  }
}
.navbar .navbar-nav li .sub-menu li a {
  color: #15151a;
  padding: 8px 12px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav li .sub-menu li a {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav li .sub-menu li a {
    color: #fff;
  }
}
.navbar .navbar-nav li .sub-menu li:hover > a {
  color: #ff5e15;
  padding-left: 15px;
}
.navbar .navbar-nav li .sub-nav-toggler {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav li .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #777777;
    font-size: 16px;
    border: 0;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav li .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #777777;
    font-size: 16px;
    border: 0;
    width: 35px;
    height: 35px;
  }
}
.navbar .navbar-nav li .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}
.navbar .navbar-nav li.active > a, .navbar .navbar-nav li:hover > a {
  color: #ff5e15;
}
.navbar .navbar-nav li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav li:hover .sub-menu {
    top: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav li:hover .sub-menu {
    top: 0;
    left: 0;
  }
}
.navbar .navbar-side-menu a {
  position: relative;
  padding-left: 45px;
}
.navbar .navbar-side-menu a .menu {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.navbar .navbar-side-menu a .line {
  display: block;
  background-color: #fff;
  height: 1px;
  margin: 7px 0;
  margin-left: auto;
}
.navbar .navbar-side-menu a .line:nth-of-type(1) {
  width: 30px;
}
.navbar .navbar-side-menu a .line:nth-of-type(2) {
  width: 36px;
}
.navbar .navbar-side-menu a .line:nth-of-type(3) {
  width: 28px;
}
.navbar .navbar-side-menu a .line:nth-of-type(4) {
  width: 32px;
}
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-animation: sticky 1s;
  -moz-animation: sticky 1s;
  -o-animation: sticky 1s;
  animation: sticky 1s;
  background-color: #fff;
  padding: 5px 0;
}
.navbar.sticky .navbar-toggler .toggler-icon {
  background-color: #15151a;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar.sticky .navbar-collapse {
    background-color: #fff;
  }
}
@media (max-width: 767px) {
  .navbar.sticky .navbar-collapse {
    background-color: #fff;
  }
}
.navbar.sticky .navbar-nav li a {
  color: #15151a;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar.sticky .navbar-nav li a {
    color: #15151a;
  }
}
@media (max-width: 767px) {
  .navbar.sticky .navbar-nav li a {
    color: #15151a;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar.sticky .navbar-nav li .sub-menu {
    background-color: #fff;
  }
}
@media (max-width: 767px) {
  .navbar.sticky .navbar-nav li .sub-menu {
    background-color: #fff;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar.sticky .navbar-nav li .sub-menu li a {
    color: #15151a;
  }
}
@media (max-width: 767px) {
  .navbar.sticky .navbar-nav li .sub-menu li a {
    color: #15151a;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar.sticky .navbar-nav li .sub-nav-toggler span {
    border-color: #15151a;
  }
}
@media (max-width: 767px) {
  .navbar.sticky .navbar-nav li .sub-nav-toggler span {
    border-color: #15151a;
  }
}
.navbar.sticky .navbar-nav li.active > a, .navbar.sticky .navbar-nav li:hover > a {
  color: #ff5e15;
}
.navbar.sticky .navbar-side-menu a .menu {
  color: #15151a;
}
.navbar.sticky .navbar-side-menu a .line {
  background-color: #15151a;
}
.navbar.navbar-dark.sticky {
  background-color: #110f14;
}
.navbar.navbar-dark.sticky .navbar-toggler .toggler-icon {
  background-color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar.navbar-dark.sticky .navbar-collapse {
    background-color: #15151a;
  }
}
@media (max-width: 767px) {
  .navbar.navbar-dark.sticky .navbar-collapse {
    background-color: #15151a;
  }
}
.navbar.navbar-dark.sticky .navbar-nav li a {
  color: #fff;
}
.navbar.navbar-dark.sticky .navbar-nav li .sub-menu {
  background-color: #15151a;
}
.navbar.navbar-dark.sticky .navbar-nav li .sub-menu li a {
  color: #fff;
}
.navbar.navbar-dark.sticky .navbar-nav li .sub-nav-toggler span {
  border-color: #fff;
}
.navbar.navbar-dark.sticky .navbar-nav li.active > a, .navbar.navbar-dark.sticky .navbar-nav li:hover > a {
  color: #ff5e15;
}
.navbar.navbar-dark.sticky .navbar-side-menu a .menu {
  color: #fff;
}
.navbar.navbar-dark.sticky .navbar-side-menu a .line {
  background-color: #fff;
}

.navbar-white .navbar-toggler .toggler-icon {
  background-color: #15151a;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-white .navbar-collapse {
    background-color: #fff;
  }
}
@media (max-width: 767px) {
  .navbar-white .navbar-collapse {
    background-color: #fff;
  }
}
.navbar-white .navbar-nav li a {
  color: #15151a;
}
.navbar-white .navbar-nav li.active > a, .navbar-white .navbar-nav li:hover > a {
  color: #ff5e15;
}
.navbar-white .navbar-side-menu a .menu {
  color: #15151a;
}
.navbar-white .navbar-side-menu a .line {
  background-color: #15151a;
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
/*===========================
        03.Slider css
===========================*/
.slider-area {
  position: relative;
}
.slider-area .slider-social {
  position: absolute;
  top: 50%;
  left: 70px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  z-index: 9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area .slider-social {
    left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-social {
    display: none;
  }
}
@media (max-width: 767px) {
  .slider-area .slider-social {
    display: none;
  }
}
.slider-area .slider-social li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  margin: 25px 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
}
.slider-area .slider-social li a:hover {
  color: #ff5e15;
  border-bottom: 1px solid #ff5e15;
}
.slider-area .slider-email {
  position: absolute;
  top: 50%;
  right: -90px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  text-align: center;
  z-index: 9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area .slider-email {
    right: -120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-email {
    display: none;
  }
}
@media (max-width: 767px) {
  .slider-area .slider-email {
    display: none;
  }
}
.slider-area .slider-email p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Oswald", sans-serif;
}
.slider-area .slider-email p i {
  font-size: 20px;
  margin-right: 10px;
}

.slider-active .swiper-pagination {
  bottom: 80px;
  left: calc(15% - 170px);
  width: 490px;
  top: auto;
  background-color: rgba(255, 255, 255, 0.1);
  height: 2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-active .swiper-pagination {
    left: calc(20% - 170px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-active .swiper-pagination {
    left: calc(27% - 170px);
  }
}
@media (max-width: 767px) {
  .slider-active .swiper-pagination {
    width: 220px;
    left: calc(60% - 170px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-active .swiper-pagination {
    width: 220px;
    left: calc(35% - 170px);
  }
}
.slider-active .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #ff5e15;
}

.single-slider {
  height: 750px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
@media only screen and (min-width: 1400px) {
  .single-slider {
    height: 950px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slider {
    height: 700px;
  }
}
@media (max-width: 767px) {
  .single-slider {
    height: 600px;
  }
}
.single-slider .slider-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-slider .slider-image .image {
  width: 775px;
  padding: 0 70px;
}
.single-slider .slider-shape {
  width: 830px;
  height: 510px;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: -425px;
  left: -505px;
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
  opacity: 0.04;
}

.slider-content {
  max-width: 600px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-content {
    max-width: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-content {
    max-width: 400px;
  }
}
.slider-content .sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #ff5e15;
}
@media (max-width: 767px) {
  .slider-content .sub-title {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-content .sub-title {
    font-size: 16px;
  }
}
.slider-content .main-title {
  font-size: 72px;
  color: #fff;
  text-transform: uppercase;
}
.slider-content .main-title span {
  color: #ff5e15;
  display: contents;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-content .main-title {
    font-size: 58px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content .main-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .slider-content .main-title {
    font-size: 28px;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-content .main-title {
    font-size: 38px;
    margin-top: 5px;
  }
}
.slider-content p {
  color: #fff;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .slider-content p {
    font-size: 14px;
  }
}
.slider-content .slider-btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  padding-left: 70px;
  position: relative;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .slider-content .slider-btn {
    font-size: 14px;
    padding-left: 50px;
  }
}
.slider-content .slider-btn::before {
  width: 60px;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #ff5e15;
  bottom: 2px;
  left: 0;
}
@media (max-width: 767px) {
  .slider-content .slider-btn::before {
    width: 40px;
  }
}

.slider-play {
  padding-top: 70px;
}
.slider-play .play {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.slider-play .play i {
  font-size: 46px;
  margin-right: 15px;
}

/*===========================
        04.About css
===========================*/
.about-area {
  padding-top: 115px;
}

.about-title {
  position: relative;
  margin-top: 10px;
}
.about-title .title {
  font-size: 296px;
  background-image: url(../images/text-bg.jpg);
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 284px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-title .title {
    font-size: 240px;
    line-height: 250px;
  }
}
@media (max-width: 767px) {
  .about-title .title {
    font-size: 200px;
    line-height: 220px;
  }
}
.about-title .experiences {
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  color: rgba(21, 21, 26, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  top: 90px;
  left: 270px;
  white-space: nowrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-title .experiences {
    left: 200px;
  }
}
@media (max-width: 767px) {
  .about-title .experiences {
    left: 170px;
    font-size: 14px;
  }
}
.about-title .polygon {
  position: absolute;
  bottom: 0px;
  left: 325px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-title .polygon {
    width: 50px;
    left: 257px;
  }
}
@media (max-width: 767px) {
  .about-title .polygon {
    width: 50px;
    left: 220px;
  }
}

.about-content {
  max-width: 720px;
}
.about-content .title {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .about-content .title {
    font-size: 24px;
  }
  .about-content .title br {
    display: none;
  }
}
.about-content .sub-title {
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  color: #ff5e15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .about-content .sub-title {
    letter-spacing: 0;
  }
}
.about-content p {
  font-size: 14px;
  margin-top: 20px;
}
.about-content .more {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #15151a;
  text-transform: uppercase;
  padding-left: 70px;
  position: relative;
  margin-top: 50px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.about-content .more::before {
  width: 60px;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #ff5e15;
  bottom: 2px;
  left: 0;
}
.about-content .more:hover {
  color: #ff5e15;
}

/*===== About Dark =====*/
.about-dark {
  background-color: #110f14;
}
.about-dark .about-title .experiences {
  color: rgba(255, 255, 255, 0.3);
}
.about-dark .about-content .title {
  color: #fff;
}
.about-dark .about-content .more {
  color: #fff;
}
.about-dark .about-content .more:hover {
  color: #ff5e15;
}

/*===========================
        05.Brand css
===========================*/
.brand-area {
  padding-top: 30px;
}

.brand-wrapper {
  padding-top: 70px;
}

.single-brand {
  border: 1px solid #eceff8;
  padding: 20px 0;
  position: relative;
  margin-top: -1px;
  margin-left: -1px;
  text-align: center;
}
.single-brand .brand {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-brand .polygon {
  width: 25px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.single-brand:hover .brand {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

/*===== Brand 2 =====*/
.brand-area-2 {
  padding-top: 120px;
  padding-bottom: 120px;
}

/*===== Brand Dark =====*/
.brand-dark {
  background-color: #110f14;
}
.brand-dark .single-brand {
  border: 1px solid rgba(236, 239, 248, 0.1);
}

/*===========================
        06.Portfolio css
===========================*/
.portfolio-area {
  padding-top: 70px;
}

.portfolio-menu .nav li a {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #777777;
  text-transform: uppercase;
  padding: 5px 30px;
  border-bottom: 1px solid #eceff8;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-menu .nav li a {
    padding: 5px 20px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-menu .nav li a {
    padding: 5px 20px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .portfolio-menu .nav li a {
    padding: 5px 8px;
    font-size: 12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-menu .nav li a {
    padding: 5px 15px;
    font-size: 14px;
  }
}
.portfolio-menu .nav li a.active {
  border-color: #ff5e15;
  color: #15151a;
}
.portfolio-menu.portfolio-menu-2 .nav li a {
  border-color: rgba(255, 255, 255, 0.1);
}
.portfolio-menu.portfolio-menu-2 .nav li a.active {
  border-color: #ff5e15;
  color: #fff;
}

.portfolio-arrows {
  text-align: right;
}
.portfolio-arrows .portfolio-next, .portfolio-arrows .portfolio-prev {
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
  padding: 0 10px;
  color: #777777;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.portfolio-arrows .portfolio-next:hover, .portfolio-arrows .portfolio-prev:hover {
  color: #ff5e15;
}
.portfolio-arrows .portfolio-prev {
  border-left: 1px solid #eceff8;
}

.portfolio-slide {
  margin-top: 70px;
}
.portfolio-slide .portfolio-item {
  position: relative;
}
.portfolio-slide .portfolio-item .portfolio-image img {
  width: 100%;
}
.portfolio-slide .portfolio-item .portfolio-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 45px 50px;
}
@media (max-width: 767px) {
  .portfolio-slide .portfolio-item .portfolio-content {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .portfolio-slide .portfolio-item .portfolio-content {
    padding: 35px 25px;
  }
}
.portfolio-slide .portfolio-item .portfolio-content .sub-title {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  transition-delay: 0.3s;
}
.portfolio-slide .portfolio-item .portfolio-content .portfolio-title a {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.6s;
}
@media (max-width: 767px) {
  .portfolio-slide .portfolio-item .portfolio-content .portfolio-title a {
    font-size: 20px;
  }
}
.portfolio-slide .portfolio-item.swiper-slide-active .portfolio-content .sub-title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.portfolio-slide .portfolio-item.swiper-slide-active .portfolio-content .portfolio-title a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.portfolio-btn {
  background-color: #f8f8f8;
}

/*===== Portfolio 2 =====*/
.portfolio-area-2 {
  position: relative;
  padding-top: 70px;
  padding-bottom: 120px;
  z-index: 5;
}
.portfolio-area-2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 450px;
  background-color: #15151a;
  top: 0;
  left: 0;
  z-index: -1;
}
.portfolio-area-2 .portfolio-menu .nav li a {
  border-color: rgba(255, 255, 255, 0.1);
}
.portfolio-area-2 .portfolio-menu .nav li a.active {
  border-color: #ff5e15;
  color: #fff;
}

.portfolio-wrapper {
  padding-top: 40px;
}

.single-portfolio-2 {
  position: relative;
  overflow: hidden;
}
.single-portfolio-2 .portfolio-image {
  position: relative;
}
.single-portfolio-2 .portfolio-image img {
  width: 100%;
}
.single-portfolio-2 .portfolio-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 21, 26, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-portfolio-2 .portfolio-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 45px 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-portfolio-2 .portfolio-content {
    padding: 25px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-portfolio-2 .portfolio-content {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .single-portfolio-2 .portfolio-content {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-portfolio-2 .portfolio-content {
    padding: 35px 25px;
  }
}
.single-portfolio-2 .portfolio-content .sub-title {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-portfolio-2 .portfolio-content .portfolio-title a {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-portfolio-2 .portfolio-content .portfolio-title a {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-portfolio-2 .portfolio-content .portfolio-title a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .single-portfolio-2 .portfolio-content .portfolio-title a {
    font-size: 20px;
  }
}
.single-portfolio-2:hover .portfolio-image::before {
  opacity: 1;
  visibility: visible;
}
.single-portfolio-2:hover .portfolio-content .sub-title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 0.3s;
}
.single-portfolio-2:hover .portfolio-content .portfolio-title a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 0.6s;
}

/*===== Brand Dark =====*/
.portfolio-dark {
  background-color: #110f14;
}
.portfolio-dark .portfolio-menu .nav li a {
  border-color: rgba(255, 255, 255, 0.1);
}
.portfolio-dark .portfolio-menu .nav li a.active {
  border-color: #ff5e15;
  color: #fff;
}
.portfolio-dark .portfolio-arrows .portfolio-prev {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.portfolio-dark .portfolio-btn {
  background-color: #110f14;
}

/*===========================
        07.Services css
===========================*/
.services-area {
  padding-top: 115px;
  background-color: #f8f8f8;
}

.services-wrapper {
  padding-top: 40px;
}

.single-services {
  padding: 40px 25px;
  background-color: #fff;
  -webkit-box-shadow: 0px 24px 60px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 24px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 24px 60px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-services {
    padding: 30px 20px;
  }
}
.single-services .services-number {
  font-size: 16px;
  font-weight: 500;
  color: #ff5e15;
  font-family: "Oswald", sans-serif;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-services .services-title a {
  font-size: 18px;
  font-weight: 500;
  color: #15151a;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-transform: uppercase;
  margin-top: 10px;
}
.single-services .services-title a:hover {
  color: #ff5e15;
}
.single-services p {
  font-size: 14px;
  margin-top: 20px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-services .services-icon-arrow {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}
.single-services .services-icon-arrow a {
  font-size: 40px;
  color: rgba(119, 119, 119, 0.4);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-services .services-icon-arrow a:hover {
  color: #ff5e15;
}
.single-services:hover {
  border-color: #ff5e15;
}
.single-services:hover.services-bg-1 {
  background-image: url(../images/service/service-1.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 5;
}
.single-services:hover.services-bg-1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 94, 21, 0.85);
  z-index: -1;
}
.single-services:hover.services-bg-2 {
  background-image: url(../images/service/service-2.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 5;
}
.single-services:hover.services-bg-2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 94, 21, 0.85);
  z-index: -1;
}
.single-services:hover.services-bg-3 {
  background-image: url(../images/service/service-3.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 5;
}
.single-services:hover.services-bg-3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 94, 21, 0.85);
  z-index: -1;
}
.single-services:hover.services-bg-4 {
  background-image: url(../images/service/service-4.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 5;
}
.single-services:hover.services-bg-4::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 94, 21, 0.85);
  z-index: -1;
}

/*===== Service 2 =====*/
.services-area-2 {
  padding-top: 115px;
  padding-bottom: 120px;
}

.services-2:hover .services-number {
  color: #fff;
}
.services-2:hover .services-title a {
  color: #fff;
}
.services-2:hover p {
  color: #fff;
}
.services-2:hover .services-icon-arrow a {
  color: #fff;
}

/*===== Service Dark =====*/
.services-dark {
  background-color: #110f14;
}
.services-dark .single-services {
  background-color: #15151a;
}
.services-dark .single-services .services-title a {
  color: #fff;
}
.services-dark .single-services .services-title a:hover {
  color: #ff5e15;
}
.services-dark .single-services .services-icon-arrow a {
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.services-dark .single-services .services-icon-arrow a:hover {
  color: #ff5e15;
}

.services-area .single-services, #services.zview-section .single-services {
  border: 5px solid transparent;
  transition: all 0.3s ease;
}
.services-area .single-services:hover, #services.zview-section .single-services:hover {
  border-color: #ff5e15;
}

/*===========================
        08.Video css
===========================*/
.video-area {
  padding-top: 120px;
  background-color: #f8f8f8;
}

.video-wrapper {
  border: 10px solid #fff;
  height: 470px;
  -webkit-box-shadow: 0px 15px 21.6px 2.4px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 15px 21.6px 2.4px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 15px 21.6px 2.4px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: -235px;
  z-index: 9;
}
.video-wrapper .play {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: #ff5e15;
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .video-wrapper .play {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
  }
}

/*===== Video 2 =====*/
.video-area-2 {
  padding-top: 60px;
  padding-bottom: 120px;
}
.video-area-2 .video-wrapper {
  margin-bottom: 0px;
  height: 650px;
}

/*===== Video Dark =====*/
.video-dark {
  background-color: #110f14;
}

/*===========================
        09.Counter css
===========================*/
.counter-area {
  padding-top: 275px;
  padding-bottom: 70px;
  position: relative;
  z-index: 5;
}
.counter-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 94, 21, 0.75);
  top: 0;
  left: 0;
  z-index: -1;
}

.single-counter {
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-counter {
    padding: 20px 0;
  }
}
.single-counter .counter-wrapper .counter {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 44px;
  line-height: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-counter .counter-wrapper .counter {
    font-size: 30px;
  }
}
.single-counter .counter-wrapper .counter .plus {
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  margin-left: 3px;
}
.single-counter .counter-wrapper p {
  font-weight: 300;
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-counter .counter-wrapper p {
    font-size: 14px;
  }
}

/*===== Counter 2 =====*/
.counter-area-2 {
  padding-top: 90px;
  padding-bottom: 120px;
}
.counter-area-2 .single-counter {
  border: 2px solid rgba(21, 21, 26, 0.2);
}
.counter-area-2 .single-counter .counter-wrapper .counter {
  color: #15151a;
}
.counter-area-2 .single-counter .counter-wrapper .counter .plus {
  color: #ff5e15;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ff5e15;
  text-stroke: 1px #ff5e15;
  margin-left: 3px;
}
.counter-area-2 .single-counter .counter-wrapper p {
  color: #777777;
}

/*===========================
        10.Our Skill css
===========================*/
.our-skill-area {
  padding-top: 70px;
  padding-bottom: 120px;
}

.our-skill-image {
  padding-right: 30px;
  padding-bottom: 30px;
  max-width: 570px;
  position: relative;
}
.our-skill-image img {
  width: 100%;
}
.our-skill-image .skill-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 56px;
  background-color: #ff5e15;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
}
@media (max-width: 767px) {
  .our-skill-image .skill-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 36px;
  }
}

.our-skill-content {
  position: relative;
}
.our-skill-content .title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #15151a;
}
@media (max-width: 767px) {
  .our-skill-content .title {
    font-size: 24px;
  }
  .our-skill-content .title br {
    display: none;
  }
}
.our-skill-content .sub-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #ff5e15;
  text-transform: uppercase;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .our-skill-content .sub-title {
    font-size: 36px;
  }
}
.our-skill-content p {
  margin-top: 15px;
}
.our-skill-content .skill-wrapper .single-skill-bar {
  margin-top: 45px;
}
.our-skill-content .skill-wrapper .single-skill-bar .skill-title {
  font-size: 14px;
  font-weight: 700;
  color: #15151a;
  text-transform: uppercase;
  background-color: #fff;
  z-index: 5;
  position: relative;
  display: inline-block;
}
.our-skill-content .skill-wrapper .single-skill-bar .skill-progress-bar {
  margin-top: 10px;
}
.our-skill-content .skill-wrapper .single-skill-bar .skill-progress-bar .progress-bar-inner {
  width: 100%;
  height: 3px;
  background-color: #15151a;
  position: relative;
}
.our-skill-content .skill-wrapper .single-skill-bar .skill-progress-bar .progress-bar-inner .progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #ff5e15;
  -webkit-transition: all 2s linear;
  -moz-transition: all 2s linear;
  -ms-transition: all 2s linear;
  -o-transition: all 2s linear;
  transition: all 2s linear;
  width: 0;
}
.our-skill-content .skill-wrapper .single-skill-bar .skill-progress-bar .progress-bar-inner .progress-line .skill-percentage {
  font-size: 14px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #15151a;
  text-transform: uppercase;
  position: absolute;
  right: -15px;
  top: -30px;
}
.our-skill-content .skill-wrapper .single-skill-bar .skill-progress-bar .progress-bar-inner .progress-line .skill-percentage::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 7px solid #ff5e15;
  right: 15px;
  bottom: -9px;
}

/*===== Our Skill 2 =====*/
.our-skill-area-2 {
  padding-top: 70px;
}

/*===== Video Dark =====*/
.skill-dark {
  background-color: #110f14;
}
.skill-dark .our-skill-content .title {
  color: #fff;
}
.skill-dark .our-skill-content .skill-wrapper .single-skill-bar .skill-title {
  color: #fff;
  background-color: #110f14;
}
.skill-dark .our-skill-content .skill-wrapper .single-skill-bar .skill-progress-bar .progress-bar-inner {
  background-color: #15151a;
}
.skill-dark .our-skill-content .skill-wrapper .single-skill-bar .skill-progress-bar .progress-bar-inner .progress-line .skill-percentage {
  color: #fff;
}

/*===========================
      11.Testimonial css
===========================*/
.testimonial-area {
  padding-top: 115px;
  padding-bottom: 140px;
}

.testimonial-wrapper {
  background-color: #c7480f;
  position: relative;
  margin-top: 70px;
  padding: 70px;
  position: relative;
  z-index: 5;
  background-image: url(../images/dots.png);
  background-position: center center;
  background-size: 100% 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper {
    padding: 30px;
  }
}
.testimonial-wrapper::after, .testimonial-wrapper::before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background-color: #c7480f;
  z-index: -1;
  opacity: 0.5;
  margin: 0 auto;
  border-radius: 8px;
}
.testimonial-wrapper::after {
  bottom: -20px;
  width: 80%;
}

.testimonial-arrows {
  text-align: right;
}
.testimonial-arrows .testimonial-next, .testimonial-arrows .testimonial-prev {
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
  padding: 0 10px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.testimonial-arrows .testimonial-next:hover, .testimonial-arrows .testimonial-prev:hover {
  color: #ff5e15;
}
.testimonial-arrows .testimonial-prev {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.testimonial-arrows.arrows-dark .testimonial-next, .testimonial-arrows.arrows-dark .testimonial-prev {
  color: rgba(21, 21, 26, 0.5);
}
.testimonial-arrows.arrows-dark .testimonial-next:hover, .testimonial-arrows.arrows-dark .testimonial-prev:hover {
  color: #ff5e15;
}
.testimonial-arrows.arrows-dark .testimonial-prev {
  border-left-color: rgba(21, 21, 26, 0.3);
}

.single-testimonial {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
@media (max-width: 767px) {
  .single-testimonial {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-testimonial {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}
.single-testimonial .testimonial-author img {
  border-radius: 50%;
}
.single-testimonial .testimonial-content {
  padding-left: 30px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 767px) {
  .single-testimonial .testimonial-content {
    padding-left: 0;
    padding-top: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-testimonial .testimonial-content {
    padding-left: 25px;
    padding-top: 0;
  }
}
.single-testimonial .testimonial-content p {
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .single-testimonial .testimonial-content p {
    font-size: 18px;
    line-height: 26px;
  }
}
.single-testimonial .testimonial-content .author-name {
  color: #fff;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}
.single-testimonial .testimonial-content .author-name span {
  color: #ffd2bd;
  font-size: 14px;
  text-transform: capitalize;
}

/*===========================
        12.Blog css
===========================*/
.blog-area {
  padding-top: 115px;
  padding-bottom: 120px;
}

.blog-wrapper {
  padding-top: 35px;
}

.single-blog .blog-image {
  overflow: hidden;
}
.single-blog .blog-image a {
  display: block;
  position: relative;
}
.single-blog .blog-image a img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-blog .blog-image a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
.single-blog .blog-image a .plus {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 50px;
  text-align: center;
  background-color: #ff5e15;
  color: #fff;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog .blog-image a .plus {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .single-blog .blog-image a .plus {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
  }
}
.single-blog .blog-content {
  padding-top: 15px;
}
.single-blog .blog-content .meta li {
  display: inline-block;
  position: relative;
}
.single-blog .blog-content .meta li + li {
  margin-left: 20px;
}
.single-blog .blog-content .meta li + li::before {
  position: absolute;
  content: "-";
  top: -3px;
  left: -12px;
  font-size: 20px;
  color: #777777;
}
.single-blog .blog-content .meta li a {
  font-size: 14px;
  color: #777777;
}
.single-blog .blog-content .meta li a.author {
  font-weight: 700;
  color: #ff5e15;
  text-transform: uppercase;
}
.single-blog .blog-content .blog-title a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #15151a;
  font-family: "Oswald", sans-serif;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog .blog-content .blog-title a {
    font-size: 16px;
    line-height: 24px;
  }
}
.single-blog .blog-content .blog-title a:hover {
  color: #ff5e15;
}
.single-blog:hover .blog-image a img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.single-blog:hover .blog-image a::before {
  opacity: 1;
  visibility: visible;
}
.single-blog:hover .blog-image a .plus {
  opacity: 1;
  visibility: visible;
}

/*===== Blog 2 =====*/
.blog-area-2 {
  padding-top: 50px;
}

.blog-dark {
  background-color: #110f14;
}
.blog-dark .single-blog .blog-content .blog-title a {
  color: #fff;
}
.blog-dark .single-blog .blog-content .blog-title a:hover {
  color: #ff5e15;
}

/*===========================
        13.Footer css
===========================*/
.footer-widget {
  padding-top: 70px;
  padding-bottom: 120px;
}

.footer-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer-title {
    font-size: 20px;
  }
}
.footer-title span {
  color: #ff5e15;
}

.footer-about {
  margin-top: 50px;
}
.footer-about p {
  font-size: 16px;
  color: #777777;
  margin-top: 15px;
}
.footer-about .footer-social {
  margin-top: 45px;
}
.footer-about .footer-social li {
  display: inline-block;
}
.footer-about .footer-social li + li {
  margin-left: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-about .footer-social li + li {
    margin-left: 13px;
  }
}
.footer-about .footer-social li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-about .footer-social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .footer-about .footer-social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.footer-about .footer-social li a:hover {
  color: #ff5e15;
}

.footer-info {
  margin-top: 45px;
}
.footer-info > p {
  color: #fff;
  font-family: "Oswald", sans-serif;
  margin-top: 35px;
}
.footer-info > p span {
  color: #ff5e15;
}
.footer-info .info-items li .single-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.footer-info .info-items li .single-item .item-icon i {
  font-size: 36px;
  line-height: 36px;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-info .info-items li .single-item .item-icon i {
    font-size: 26px;
  }
}
.footer-info .info-items li .single-item .item-content {
  padding-left: 30px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-info .info-items li .single-item .item-content {
    padding-left: 20px;
  }
}
.footer-info .info-items li .single-item .item-content p {
  font-size: 16px;
  color: #777777;
}
.footer-info .info-items li .single-item .item-content p a {
  color: #777777;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.footer-info .info-items li .single-item .item-content p a:hover {
  color: #ff5e15;
}

.form-message.success, .form-message.error {
  font-size: 16px;
  color: #ff5e15;
  background: #ddd;
  padding: 10px 15px;
  margin-left: 15px;
  margin-top: 15px;
}
.form-message.error {
  color: #f00;
}

.footer-form {
  margin-top: 45px;
}
.footer-form .single-form {
  margin-top: 30px;
}
.footer-form .single-form label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}
.footer-form .single-form textarea, .footer-form .single-form input {
  width: 100%;
  height: 40px;
  padding: 15px;
  background-color: #12111c;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(12, 11, 22, 0.2);
  -moz-box-shadow: 0px 2px 3px 0px rgba(12, 11, 22, 0.2);
  box-shadow: 0px 2px 3px 0px rgba(12, 11, 22, 0.2);
  border: 1px solid transparent;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.footer-form .single-form textarea:focus, .footer-form .single-form input:focus {
  border-color: #ff5e15;
}
.footer-form .single-form textarea {
  height: 100px;
  padding-top: 10px;
  resize: none;
}
.footer-form .single-form .main-btn {
  background-color: #ff5e15;
  color: #fff;
}
.footer-form .single-form .main-btn::before {
  border-color: #fff;
}
.footer-form .single-form .main-btn:hover {
  background-color: #fff;
  color: #15151a;
}
.footer-form .single-form .main-btn:hover::before {
  border-color: #ff5e15;
}

.footer-copyright {
  position: relative;
  z-index: 5;
}
.footer-copyright::before {
  position: absolute;
  content: "";
  width: 55%;
  height: 100%;
  background-color: #ff5e15;
  top: 0;
  left: -5%;
  z-index: -1;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg);
}
.footer-copyright .copyright {
  padding: 30px 0;
}
.footer-copyright .copyright p {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: #fff;
}
.footer-copyright .copyright p a {
  color: #15151a;
}

/*===== Back To Top =====*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  z-index: 99;
  text-align: center;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #fff;
  background-color: #15151a;
}
.back-to-top:hover {
  color: #fff;
  background-color: #ff5e15;
}

/*===========================
      14.Full Page css
===========================*/
.site-main .fullpage-social {
  position: absolute;
  top: 50%;
  left: 70px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  z-index: 11;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .site-main .fullpage-social {
    left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .site-main .fullpage-social {
    left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .site-main .fullpage-social {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-main .fullpage-social {
    display: none;
  }
}
.site-main .fullpage-social li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  margin: 25px 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
}
.site-main .fullpage-social li a:hover {
  color: #ff5e15;
  border-bottom: 1px solid #ff5e15;
}
.site-main .fullpage-social.social-white li a {
  color: rgba(21, 21, 26, 0.3);
}
.site-main .fullpage-social.social-white li a:hover {
  color: #ff5e15;
  border-bottom: 1px solid #ff5e15;
}
.site-main .fullpage-email {
  position: absolute;
  top: 50%;
  right: -90px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  text-align: center;
  z-index: 11;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .site-main .fullpage-email {
    right: -120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .site-main .fullpage-email {
    right: -120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .site-main .fullpage-email {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-main .fullpage-email {
    display: none;
  }
}
.site-main .fullpage-email p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Oswald", sans-serif;
}
.site-main .fullpage-email p i {
  font-size: 20px;
  margin-right: 10px;
}
.site-main .fullpage-email.email-white p {
  color: rgba(21, 21, 26, 0.3);
}
.site-main .fullpage-copyright {
  position: absolute;
  left: calc(19% - 170px);
  bottom: 30px;
  z-index: 11;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .site-main .fullpage-copyright {
    left: calc(25% - 170px);
  }
}
@media (max-width: 767px) {
  .site-main .fullpage-copyright {
    left: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .site-main .fullpage-copyright {
    left: calc(35% - 170px);
  }
}
.site-main .fullpage-copyright p {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: #fff;
}
.site-main .fullpage-copyright p a {
  color: #ff5e15;
}
.site-main .fullpage-copyright.copyright-white p {
  color: #15151a;
}
.site-main .fullpage-progress-bar {
  position: absolute;
  bottom: 50px;
  right: calc(15% - 170px);
  z-index: 9;
  width: 495px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .site-main .fullpage-progress-bar {
    right: calc(8% - 170px);
  }
}
@media (max-width: 767px) {
  .site-main .fullpage-progress-bar {
    display: none;
  }
}
.site-main .fullpage-progress-bar li {
  position: relative;
  width: 40px;
  height: 3px;
  -webkit-transition: background-color 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition: background-color 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  background-color: #ff5e15;
  position: relative;
}
.site-main .fullpage-progress-bar li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #ff5e15;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.site-main .fullpage-progress-bar li.active, .site-main .fullpage-progress-bar li.active ~ li {
  background-color: rgba(255, 255, 255, 0.1);
}
.site-main .fullpage-progress-bar li.active ~ li::before {
  width: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.site-main .fullpage-progress-bar.progress-bar-white li.active, .site-main .fullpage-progress-bar.progress-bar-white li.active ~ li {
  background-color: rgba(21, 21, 26, 0.1);
}
.site-main .section-number {
  position: absolute;
  bottom: 34px;
  right: calc(19% - 170px);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 11;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .site-main .section-number {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-main .section-number {
    display: none;
  }
}
.site-main .section-number span {
  font-family: "Oswald", sans-serif;
  color: #ff5e15;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 30px;
}
.site-main .section-number.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .site-main .testimonial-wrapper {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .site-main .testimonial-wrapper {
    width: 100%;
  }
}

@-webkit-keyframes navWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes navWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.pp-scrollable .intro {
  width: 100%;
  height: 100%;
  white-space: nowrap;
  display: table;
  position: relative;
}
.pp-scrollable .intro .scroll-wrap {
  width: 100%;
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 30px 0 30px;
  white-space: normal;
  z-index: 5;
}
.pp-scrollable.is-white {
  background-color: #fff;
}

/*===========================
      15.Page Banner css
===========================*/
.page-banner-area {
  padding-top: 195px;
  padding-bottom: 195px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-banner-area {
    padding-top: 245px;
    padding-bottom: 145px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-banner-area {
    padding-top: 195px;
    padding-bottom: 95px;
  }
}
@media (max-width: 767px) {
  .page-banner-area {
    padding-top: 195px;
    padding-bottom: 95px;
  }
}
.page-banner-area .slider-social {
  position: absolute;
  top: 50%;
  left: 70px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  z-index: 11;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-banner-area .slider-social {
    left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-banner-area .slider-social {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-banner-area .slider-social {
    display: none;
  }
}
.page-banner-area .slider-social li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  margin: 25px 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
}
.page-banner-area .slider-social li a:hover {
  color: #ff5e15;
  border-bottom: 1px solid #ff5e15;
}
.page-banner-area .slider-email {
  position: absolute;
  top: 50%;
  right: -90px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  text-align: center;
  z-index: 11;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-banner-area .slider-email {
    right: -120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-banner-area .slider-email {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-banner-area .slider-email {
    display: none;
  }
}
.page-banner-area .slider-email p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Oswald", sans-serif;
}
.page-banner-area .slider-email p i {
  font-size: 20px;
  margin-right: 10px;
}
.page-banner-area .shape {
  width: 830px;
  height: 510px;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: -425px;
  left: -505px;
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
  opacity: 0.04;
}

.banner-content .title {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 767px) {
  .banner-content .title {
    font-size: 36px;
  }
}
.banner-content ul {
  margin-top: 20px;
}
.banner-content ul li {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .banner-content ul li {
    font-size: 16px;
  }
}
.banner-content ul li + li::before {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding: 0 20px;
}
.banner-content ul li a {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.banner-content ul li a:hover {
  color: #ff5e15;
}
.banner-content ul li.active {
  color: #ff5e15;
}

/*===========================
    16.Blog Sidebar css
===========================*/
.blog-sidebar .sidebar-title .title {
  font-size: 18px;
  font-weight: 700;
  color: #ff5e15;
}
.blog-sidebar .sidebar-title .title i {
  margin-right: 3px;
}

.sidebar-about {
  position: relative;
  border-top: 0;
  padding: 30px;
  background-color: #f6f6f6;
  border-radius: 5px;
}
.sidebar-about .author-image {
  position: relative;
  display: inline-block;
}
.sidebar-about .author-image img {
  width: 100px;
  border-radius: 50%;
}
.sidebar-about .author-image .social {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #ff5e15;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.sidebar-about .about-content {
  margin-top: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eceff8;
}
.sidebar-about .about-content .title {
  font-size: 18px;
  font-weight: 700;
  color: #ff5e15;
}
.sidebar-about .about-content p {
  margin-top: 15px;
}
.sidebar-about .about-name a {
  font-size: 14px;
  color: #777777;
  margin-top: 15px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-about .about-name a:hover {
  color: #ff5e15;
}

.sidebar-search {
  background-color: #f6f6f6;
  border-top: 0;
  padding: 30px 30px;
  border-radius: 5px;
}
.sidebar-search .sidebar-search-wrapper {
  position: relative;
  margin-top: 25px;
}
.sidebar-search .sidebar-search-wrapper input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 94, 21, 0.1);
  padding: 0 20px;
  padding-right: 50px;
  color: #ff5e15;
  font-size: 16px;
  border-radius: 5px;
}
.sidebar-search .sidebar-search-wrapper button {
  padding: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  border: 0;
  background: none;
  color: #ff5e15;
  font-size: 18px;
}

.blog-sidebar-category {
  background-color: #f6f6f6;
  border-top: 0;
  padding: 30px 30px;
  border-radius: 5px;
}
.blog-sidebar-category .blog-sidebar-category-wrapper {
  position: relative;
  margin-top: 25px;
}
.blog-sidebar-category .blog-sidebar-category-wrapper ul li + li {
  margin-top: 10px;
}
.blog-sidebar-category .blog-sidebar-category-wrapper ul li a {
  font-size: 16px;
  color: #777777;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
}
.blog-sidebar-category .blog-sidebar-category-wrapper ul li a span {
  float: right;
}
.blog-sidebar-category .blog-sidebar-category-wrapper ul li a:hover {
  color: #ff5e15;
}
.blog-sidebar-category .blog-sidebar-category-wrapper ul li a i {
  margin-right: 5px;
  font-size: 18px;
}

.sidebar-post {
  background-color: #f6f6f6;
  border-top: 0;
  padding: 30px 30px;
  border-radius: 5px;
}
.sidebar-post .post-wrapper {
  position: relative;
  margin-top: 25px;
}
.sidebar-post .post-wrapper ul li + li {
  margin-top: 20px;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content {
  padding-left: 15px;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content .title a {
  font-size: 14px;
  color: #ff5e15;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  line-height: 20px;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content .title a:hover {
  color: #ff5e15;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content .date {
  display: block;
  line-height: 18px;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content .date a {
  font-size: 13px;
  color: #777777;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content .date a:hover {
  color: #ff5e15;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content .comment {
  display: block;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content .comment a {
  font-size: 13px;
  color: #ff5e15;
  font-weight: 700;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-post .post-wrapper .single-mini-post .mini-post-content .comment a:hover {
  color: #ff5e15;
}

.sidebar-archive {
  background-color: #f6f6f6;
  border-top: 0;
  padding: 30px 30px;
  border-radius: 5px;
}
.sidebar-archive .sidebar-archive-wrapper {
  position: relative;
  margin-top: 25px;
}
.sidebar-archive .sidebar-archive-wrapper ul li + li {
  margin-top: 10px;
}
.sidebar-archive .sidebar-archive-wrapper ul li a {
  font-size: 16px;
  color: #777777;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
}
.sidebar-archive .sidebar-archive-wrapper ul li a span {
  float: right;
}
.sidebar-archive .sidebar-archive-wrapper ul li a:hover {
  color: #ff5e15;
}
.sidebar-archive .sidebar-archive-wrapper ul li a i {
  margin-right: 5px;
  font-size: 18px;
}

.sidebar-tags {
  background-color: #f6f6f6;
  border-top: 0;
  padding: 30px 30px;
  border-radius: 5px;
}
.sidebar-tags .sidebar-tags-wrapper {
  position: relative;
  margin-top: 25px;
}
.sidebar-tags .sidebar-tags-wrapper ul {
  margin-left: -3px;
  margin-right: -3px;
}
.sidebar-tags .sidebar-tags-wrapper ul li {
  display: inline-block;
  margin-top: 10px;
  padding: 0 3px;
}
.sidebar-tags .sidebar-tags-wrapper ul li a {
  background-color: #f2f9fa;
  font-size: 14px;
  color: #777777;
  height: 30px;
  line-height: 30px;
  padding: 0 8px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-tags .sidebar-tags-wrapper ul li a:hover {
  background-color: #ff5e15;
  color: #fff;
  border-color: #ff5e15;
}

/*===========================
    17.Blog Archive Post css
===========================*/
.blog-archive {
  padding-top: 0px;
}

.sing-blog-post .blog-post-image a {
  display: block;
}
.sing-blog-post .blog-post-image img {
  width: 100%;
}
.sing-blog-post .blog-post-content {
  margin-top: 20px;
}
.sing-blog-post .blog-post-content .blog-meta li {
  display: inline-block;
}
.sing-blog-post .blog-post-content .blog-meta li + li {
  margin-left: 80px;
}
@media (max-width: 767px) {
  .sing-blog-post .blog-post-content .blog-meta li + li {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sing-blog-post .blog-post-content .blog-meta li + li {
    margin-left: 30px;
  }
}
.sing-blog-post .blog-post-content .blog-meta li a {
  font-size: 14px;
  color: #777777;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 767px) {
  .sing-blog-post .blog-post-content .blog-meta li a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sing-blog-post .blog-post-content .blog-meta li a {
    font-size: 15px;
  }
}
.sing-blog-post .blog-post-content .blog-meta li a i {
  margin-right: 3px;
  color: #ff5e15;
}
.sing-blog-post .blog-post-content .blog-meta li a:hover {
  color: #ff5e15;
}
.sing-blog-post .blog-post-content .post-title a {
  font-size: 24px;
  font-weight: 700;
  color: #15151a;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .sing-blog-post .blog-post-content .post-title a {
    font-size: 18px;
  }
}
.sing-blog-post .blog-post-content .post-title a:hover {
  color: #ff5e15;
}
.sing-blog-post .blog-post-content .author {
  margin-top: 10px;
  color: #ff5e15;
  font-size: 16px;
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
}
.sing-blog-post .blog-post-content .author a {
  color: #ff5e15;
}
.sing-blog-post .blog-post-content p {
  margin-top: 10px;
}
.sing-blog-post .blog-post-content .main-btn {
  margin-top: 30px;
}
.sing-blog-post .blog-post-content .main-btn i {
  margin-left: 5px;
}
.sing-blog-post .blog-audio-url iframe {
  padding: 0;
  border: 0;
  border-radius: 0;
}
.sing-blog-post.blog-quota {
  padding: 10px 20px;
  border: 5px solid rgba(255, 94, 21, 0.1);
  position: relative;
  z-index: 5;
  background-color: #fff;
}
@media (max-width: 767px) {
  .sing-blog-post.blog-quota {
    padding: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sing-blog-post.blog-quota {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .sing-blog-post.blog-quota .blog-quota-content {
    padding-bottom: 10px;
  }
}
.sing-blog-post.blog-quota .blog-quota-content .blog-quota-icon img {
  width: 85px;
}
.sing-blog-post.blog-quota .blog-quota-content .blog-quota-title {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .sing-blog-post.blog-quota .blog-quota-content .blog-quota-title {
    padding-left: 10px;
  }
}
.sing-blog-post.blog-quota .blog-quota-content .blog-quota-title .title {
  font-size: 18px;
  font-weight: 400;
  color: #ff5e15;
  font-style: italic;
}
@media (max-width: 767px) {
  .sing-blog-post.blog-quota .blog-quota-content .blog-quota-title .title {
    font-size: 16px;
  }
}
.sing-blog-post.blog-quota .blog-quota-content .blog-quota-title span a {
  color: #777777;
  font-weight: 400;
  margin-top: 5px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .sing-blog-post.blog-quota .blog-quota-content .blog-quota-title span a {
    font-size: 14px;
  }
}
.sing-blog-post.blog-video .blog-post-video {
  position: relative;
}
.sing-blog-post.blog-video .blog-post-video img {
  width: 100%;
}
.sing-blog-post.blog-video .blog-post-video .play {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
  font-size: 20px;
  color: #ff5e15;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*===========================
   25.Blog Details css
===========================*/
.blog-details img {
  width: 100%;
}
.blog-details .blog-meta {
  margin-top: 30px;
}
.blog-details .blog-meta li {
  display: inline-block;
}
.blog-details .blog-meta li + li {
  margin-left: 80px;
}
@media (max-width: 767px) {
  .blog-details .blog-meta li + li {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details .blog-meta li + li {
    margin-left: 30px;
  }
}
.blog-details .blog-meta li a {
  font-size: 14px;
  color: #777777;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 767px) {
  .blog-details .blog-meta li a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details .blog-meta li a {
    font-size: 15px;
  }
}
.blog-details .blog-meta li a i {
  margin-right: 3px;
  color: #ff5e15;
}
.blog-details .blog-meta li a:hover {
  color: #ff5e15;
}
.blog-details .blog-title {
  font-size: 26px;
  font-weight: 700;
  color: #ff5e15;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .blog-details .blog-title {
    font-size: 18px;
  }
}
.blog-details p {
  padding-top: 15px;
}
.blog-details .blog-img {
  margin-top: 30px;
  padding-bottom: 15px;
}
.blog-details .blog-img img {
  width: 100%;
  border-radius: 10px;
}
.blog-details .blockquote {
  margin-bottom: 15px;
  padding: 45px 50px;
  border-radius: 8px;
  background-color: #f6f6f6;
  margin-top: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details .blockquote {
    padding: 35px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details .blockquote {
    padding: 35px 40px;
  }
}
@media (max-width: 767px) {
  .blog-details .blockquote {
    padding: 15px 20px;
  }
}
.blog-details .blockquote p {
  padding-top: 0;
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  font-style: italic;
  color: #ff5e15;
  line-height: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details .blockquote p {
    font-size: 28px;
    line-height: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details .blockquote p {
    font-size: 28px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .blog-details .blockquote p {
    font-size: 18px;
    line-height: 30px;
  }
}
.blog-details .blockquote p i {
  font-size: 16px;
  color: #ff5e15;
}
@media (max-width: 767px) {
  .blog-details .blockquote p i {
    font-size: 14px;
  }
}
.blog-details ul {
    list-style: disc;
    margin-left: 50px;
}
/*===========================
   16.Off Canvas Sidebar css
===========================*/
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  right: -430px;
  width: 420px;
  height: 100%;
  z-index: 999999;
  background-color: #fff;
  overflow: auto;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .off-canvas-sidebar {
    padding: 30px;
    width: 380px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .off-canvas-sidebar {
    padding: 30px;
    width: 340px;
  }
}
@media (max-width: 767px) {
  .off-canvas-sidebar {
    padding: 15px;
    width: 260px;
  }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper {
  padding-top: 10px;
  position: relative;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .sidebar-close {
  position: absolute;
  top: -30px;
  right: -20px;
  line-height: 35px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 30px;
  color: rgba(34, 34, 34, 0.6);
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .sidebar-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about p {
  font-size: 16px;
  color: #777777;
  margin-top: 15px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social {
  margin-top: 25px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li {
  display: inline-block;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li + li {
  margin-left: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li + li {
    margin-left: 13px;
  }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: rgba(34, 34, 34, 0.04);
  border-radius: 50%;
  color: #15151a;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li a:hover {
  color: #ff5e15;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-image {
  padding-top: 30px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-image img {
  width: 100%;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info {
  margin-top: 25px;
  padding-bottom: 50px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .sidebar-title {
  font-size: 24px;
  font-weight: 500;
  color: #15151a;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .sidebar-title {
    font-size: 20px;
  }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .sidebar-title span {
  color: #ff5e15;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info > p {
  color: #777777;
  font-family: "Oswald", sans-serif;
  margin-top: 35px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info > p span {
  color: #ff5e15;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-icon i {
  font-size: 36px;
  line-height: 36px;
  color: #15151a;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-icon i {
    font-size: 26px;
  }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content {
  padding-left: 30px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content {
    padding-left: 20px;
  }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content p {
  font-size: 16px;
  color: #777777;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content p a {
  color: #777777;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content p a:hover {
  color: #ff5e15;
}
.off-canvas-sidebar.open {
  right: 0;
}

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