@charset "UTF-8";
/*
Template Name: Archiz
Template URI: 
Description: Architecture HTML Template 
Author: Capricorn Studio
Author URI: 
Version: 1.0
 */
/*-- TABLE OF CONTENTS 
-----------------------

    01. Google Font Import
    02. Default CSS
    03. Section Padding 
    04. Section Title  
    05. Button  
    06. Form 
    07. Bootstrap Customize 
    08. Bacground Color & Overlay
    09. Custom Animation
    10. Margin & Padding 
    11. Preloader
    12. Mouse Cursor
    13. Search Form 

    14. Header Area
    15. Main Menu 
    16. Mobile Menu  
    17. Off Canvas Menu

    18. Hero Area CSS
    19. About CSS
    20. Service CSS
    22. Testimonial CSS
    23. Team CSS
    24. Price CSS
    25. FAQ CSS
    26. Service Slider
    28. Counter 
    29. Clients 
    30. CTA 
    31. Blog 
    32. Contact
    33. Footer Area
    36. Marquee Slider   

--------------------*/
/*-- 01. Google Font Import 
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Six+Caps&display=swap");
/*--02. Default CSS-- */
html,
body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  color: #000000;
  font-family: "Afacad Flux", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1px;
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #0a0000;
}
a:hover {
  color: #000000;
}

p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.5019607843);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 26px;
  }
}

.p-xl {
  font-size: 20px;
}

button,
input,
textarea,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
  outline-width: 0 !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

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

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

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

table,
th,
tr,
td {
  border: 1px solid #ddd;
}

th,
tr,
td {
  padding: 10px;
}

hr {
  border-top: 1px solid #414141;
}

.fix {
  overflow: hidden;
}

/*-- 03.Section Padding CSS
---------------------------*/
.section-padding {
  padding: 150px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-padding {
    padding: 80px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding: 60px 30px;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 30px 15px;
  }
}

.section-headline {
  margin-bottom: 30px;
}

.section-headline h1 {
  font-size: 70px;
  font-weight: 500;
  letter-spacing: -3px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-headline h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .section-headline h1 {
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -1px;
  }
}

.section-headline h2 {
  font-size: 55px;
  font-weight: 400;
  letter-spacing: -3px;
  line-height: 95%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-headline h2 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-headline h2 {
    font-size: 45px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .section-headline h2 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -1px;
  }
}

.section-tagline span {
  font-size: 20px;
  color: #777;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-tagline span {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .section-tagline span {
    font-size: 18px;
  }
}

.section-link {
  display: inline-block;
  align-items: center;
  width: 250px;
  padding: 6px 12px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 1px solid #333;
  transition: 0.3s;
}
.section-link:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}
@media (max-width: 767px) {
  .section-link {
    text-align: start;
    margin-bottom: 30px;
  }
}

.dark-bg .section-link:hover {
  background-color: #fff;
  color: #000 !important;
  border-color: #fff;
}

.section-link i {
  font-size: 22px;
  position: relative;
  top: 3px;
}

/*-- 04. Section Title 
----------------------*/
.section-title {
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 20px;
  }
}

.section-title h2 {
  font-size: 70px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: -3px;
  color: #000000;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title h2 {
    font-size: 60px;
    line-height: 60px;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 50px;
    line-height: 50px;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 40px;
    line-height: 45px;
    margin: 15px 0;
    letter-spacing: -2px;
  }
}

@media (max-width: 767px) {
  .section-title h2 br {
    display: none;
  }
}

.section-title h3 {
  font-size: 45px;
  font-weight: 600;
  line-height: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title h3 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h3 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .section-title h3 {
    font-size: 24px;
    line-height: 30px;
  }
}

.section-title h5 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title h5 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h5 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section-title h5 {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

span.subtitle {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  span.subtitle.mb-30 {
    margin-bottom: 0;
  }
}

.section-sub-title span {
  color: #000000;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 125px 10px 0px;
  border-bottom: 2px solid;
  margin-bottom: 30px;
  letter-spacing: 1px;
  opacity: 0.5;
}

.section-title img {
  border-radius: 0;
  height: 50px;
  position: relative;
  bottom: 0;
}
@media (max-width: 767px) {
  .section-title img {
    height: 40px;
  }
}

/*--05. Button Style 
--------------------*/
.theme-btn, .bordered-btn, .white-btn {
  display: inline-flex;
  background: #000000;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 25px 40px;
  border: 2px solid #000000;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .theme-btn, .bordered-btn, .white-btn {
    padding: 20px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .theme-btn, .bordered-btn, .white-btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .theme-btn, .bordered-btn, .white-btn {
    padding: 15px 20px;
  }
}
.theme-btn:hover, .bordered-btn:hover, .white-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.bordered-btn, .white-btn {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}
.bordered-btn:hover, .white-btn:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

.white-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.white-btn:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none;
}

/*--06. Form Style CSS 
----------------------*/
input,
textarea,
select {
  width: 100%;
  background: transparent;
  border: 1px solid #ddd;
  padding: 13px 20px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

textarea {
  height: 200px;
}

input[type=submit],
button[type=submit] {
  background: #000000;
  border-color: #000000;
  border-radius: 0;
  display: inline-block;
  color: #fff;
  width: 35%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

input[type=submit]:hover,
button[type=submit]:hover {
  border-color: #000000;
  background: #000000;
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
}

input.form-control {
  padding: 12px 20px;
  line-height: 1.2;
}

/*--07. Bootstrap Customize CSS
--------------------------------*/
@media (max-width: 767px) {
  .container-fluid {
    padding: 0 10px;
  }
}

.container {
  max-width: 1230px;
}

.container-custom {
  max-width: 1170px;
}

/* -- 08. Bacground Color & Overlay CSS 
--------------------------------------- */
.theme-bg {
  background: #000000;
}

.primary-bg {
  background: #B79F4F;
}

.dark-bg {
  background: #000;
}

.dark-bg-2 {
  background: #0A0101;
}

.gray-bg {
  background: #ECECEC;
}

.white-bg {
  background: #fff;
}

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

.overlay, .overlay-5, .overlay-4, .overlay-3, .overlay-2 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #171717;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: -1;
}

.overlay-2 {
  opacity: 0.2;
}

.overlay-3 {
  opacity: 0.3;
}

.overlay-4 {
  opacity: 0.4;
}

.overlay-5 {
  opacity: 0.5;
}

.overlay.active, .active.overlay-2, .active.overlay-3, .active.overlay-4, .active.overlay-5 {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #000;
  z-index: 99;
  opacity: 0.5;
  visibility: visible;
}

.text-dark {
  color: #0a0000 !important;
}

.text-gray {
  color: rgba(0, 0, 0, 0.5019607843) !important;
}

.text-white {
  color: #fff !important;
}

.separator {
  display: block;
  background-color: #ddd;
  width: 30px;
  height: 3px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.b-none {
  border: none !important;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  width: 100%;
  box-shadow: rgba(36, 38, 40, 0.2);
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 99999;
}

.absolute-header .header-sticky {
  background: #000;
}

/* -- 09. Custom Animation 
--------------------------*/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
span.dropcap_style {
  background-color: transparent;
  color: #000;
  font-size: 60px;
  font-weight: 500;
  height: 50px;
  line-height: 55px;
  margin: 0;
  text-align: left;
  width: auto !important;
  min-width: 40px;
  padding-right: 5px;
  overflow: visible;
  float: left;
}

.form-check {
  margin-top: 10px;
  padding-left: 0;
}
@media (max-width: 767px) {
  .form-check {
    text-align: start;
    line-height: 1.4;
  }
}
.form-check input {
  width: 18px;
  height: 18px;
  padding: 0 !important;
  border-color: #0a0000 !important;
  margin-bottom: 0 !important;
}

.form-check-input[type=checkbox] {
  background: transparent;
}

.form-check-label {
  margin-left: 10px;
}

.form-check .form-check-input {
  float: none !important;
  margin-left: 0 !important;
}

.parallax-view {
  overflow: hidden;
}

.owl-carousel,
.owl-stage-outer {
  overflow: hidden;
}

/*--10. Margin & Padding 
--------------------------*/
.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pr-55 {
  padding-right: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pr-65 {
  padding-right: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pr-85 {
  padding-right: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pr-95 {
  padding-right: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-150 {
  padding-left: 150px;
}

.pr-150 {
  padding-right: 150px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-200 {
  padding-right: 200px;
}

.pl-250 {
  padding-left: 250px;
}

.pr-250 {
  padding-right: 250px;
}

.pl-300 {
  padding-left: 300px;
}

.pr-300 {
  padding-right: 300px;
}

.pl-350 {
  padding-left: 350px;
}

.pr-350 {
  padding-right: 350px;
}

.pl-400 {
  padding-left: 400px;
}

.pr-400 {
  padding-right: 400px;
}

.pl-450 {
  padding-left: 450px;
}

.pr-450 {
  padding-right: 450px;
}

.pl-500 {
  padding-left: 500px;
}

.pr-500 {
  padding-right: 500px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.mr-55 {
  margin-right: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.mr-65 {
  margin-right: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.mr-95 {
  margin-right: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-150 {
  margin-left: 150px;
}

.mr-150 {
  margin-right: 150px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-200 {
  margin-right: 200px;
}

.ml-250 {
  margin-left: 250px;
}

.mr-250 {
  margin-right: 250px;
}

.ml-300 {
  margin-left: 300px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-350 {
  margin-left: 350px;
}

.mr-350 {
  margin-right: 350px;
}

.ml-400 {
  margin-left: 400px;
}

.mr-400 {
  margin-right: 400px;
}

.ml-450 {
  margin-left: 450px;
}

.mr-450 {
  margin-right: 450px;
}

.ml-500 {
  margin-left: 500px;
}

.mr-500 {
  margin-right: 500px;
}

.mtm-25 {
  margin-top: -25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtm-25 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .mtm-25 {
    margin-top: 0;
  }
}

.mtm-30 {
  margin-top: -30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtm-30 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .mtm-30 {
    margin-top: 0;
  }
}

.mtm-40 {
  margin-top: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtm-40 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .mtm-40 {
    margin-top: 0;
  }
}

.mtm-50 {
  margin-top: -50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mtm-50 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .mtm-50 {
    margin-top: 0;
  }
}

/* --11. Preloader
------------------*/
.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  left: 0;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #B79F4F;
  z-index: 99999999999999;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #000;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 120px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -10px;
  color: #fff;
  z-index: 20;
}

@media only screen and (max-width: 767px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 50px;
    letter-spacing: -5px;
  }
}
.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* -- 12. Mouse Cursor 
-------------------*/
.mouseCursor {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .mouseCursor {
    display: none;
  }
}

.cursor-outer {
  margin-left: -20px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #000000;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  margin: 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner span {
  color: #fff;
  line-height: 80px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.mouseCursor.cursor-big {
  width: 80px;
  height: 80px;
}

.mouseCursor.cursor-big.cursor-outer {
  display: none;
}

.tp-cursor-point-area {
  cursor: none;
}

/*-- 13. Search Form 
--------------------*/
.search-box button {
  text-decoration: none;
  outline: none;
  outline-width: 0 !important;
  border: none;
  background: none;
  position: absolute;
  top: 32px;
  right: 10px;
  font-size: 20px;
}

.search-box button:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -40px;
  height: 40px;
  border-left: 2px solid #eee;
  margin-top: -20px;
}

.search-box button:hover {
  cursor: pointer;
}

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup .search-back-drop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.search-active .search-popup {
  opacity: 1;
  visibility: visible;
}

.search-popup .search-inner {
  position: relative;
  background: #02020B;
  padding: 45px 0 30px;
  z-index: 1;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  height: 400px;
}

.search-active .search-popup .search-inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.search-popup .upper-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}

.search-popup .upper-text .text {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
}

.search-popup .close-search {
  position: absolute;
  right: 80px;
  top: 60px;
  font-size: 30px;
  line-height: 27px;
  z-index: 3;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
  background: none;
  color: #fff;
}

.search-popup .form-group form {
  position: relative;
}

.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
  border-bottom: 1px solid #888E9B;
  width: 100%;
  padding-top: 140px;
}

.search-popup .form-group input[type=text],
.search-popup .form-group input[type=search] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  padding: 10px 14px;
  height: 45px;
  width: 100%;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
  margin-bottom: 5px;
}

.search-popup .form-group input[type=submit],
.search-popup .form-group button {
  position: absolute;
  right: -140px;
  bottom: 5px;
  background: transparent !important;
  text-align: center;
  font-size: 24px;
  line-height: 45px;
  color: #888E9B;
  padding: 0;
  background: none;
  border: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.form-group input::placeholder {
  font-size: 30px;
  color: #888E9B;
}

/* 17. Off Canvas Menu CSS */
.menu-trigger span {
  background-color: #333;
  display: block;
  height: 2px;
  margin: 8px auto;
  margin-left: 5px;
  width: 30px;
  transition: all 0.1s;
}

.menu-trigger span:nth-child(2) {
  margin-left: 0px;
}

.menu-trigger:hover span:nth-child(2) {
  margin-left: 5px;
}

.header-area.absolute-header .menu-trigger span {
  background: #fff;
}

.menu-trigger span:nth-child(2) {
  margin-left: 0px;
}

.off-canvas-menu {
  position: fixed;
  top: 0;
  right: -320px;
  background: #fff;
  box-shadow: -6px -3px 16px -8px rgba(0, 0, 0, 0.25);
  width: 350px;
  padding: 50px;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.off-canvas-menu.show-off-canvas-menu {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.off-canvas-menu p {
  font-size: 16px;
  color: #b4afaf;
  font-weight: 400;
  position: absolute;
  bottom: 15px;
  opacity: 0.5;
}

.menu-close {
  position: absolute;
  right: 25px;
  top: 25px;
  color: #777;
  padding: 7px;
  cursor: pointer;
  font-size: 30px;
  font-weight: 300;
}

.menu-close:hover {
  color: #333;
}

.extra-info {
  background: #000000 none repeat scroll 0 0;
  height: 100%;
  padding: 40px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  width: 400px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
}

.extra-info.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.close-icon {
  margin-top: 0;
  text-align: right;
}

.close-icon > button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}

.close-icon > button i {
  color: #fff;
  font-size: 30px;
}

.side-info {
  padding-top: 10px;
}

.contact-list h4 {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-list p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 30px;
}

.contact-list p i {
  float: left;
  margin-top: 6px;
  width: 25px;
}

.contact-list p span {
  display: block;
  overflow: hidden;
}

.offcanvas-overlay {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.offcanvas-overlay.active {
  opacity: 0.5;
  visibility: visible;
}

.extra-info .site-logo-2 {
  width: 220px;
  text-align: center;
  margin-top: 20px;
}

.social-area-wrap a i {
  font-size: 18px;
}

.social-area-wrap a {
  width: 40px;
  height: 40px;
  background: #0a0000;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.social-area-wrap a:hover {
  opacity: 0.5;
}

.extra-info .logo img {
  width: 130px;
}

/* 14. Header Area CSS */
.header-area .navigation {
  height: 80px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  background: #fff;
}
.header-area .header-inner-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-inner-box {
    justify-content: space-between;
  }
}
.header-area .header-inner-box .logo {
  display: flex;
  align-items: center;
}
.header-area .header-inner-box .logo a {
  font-family: "Jost", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1px;
  color: #000000;
}
@media (max-width: 767px) {
  .header-area .header-inner-box .logo {
    font-size: 30px;
  }
}
.header-area .header-inner-box .logo p.tagline {
  display: inline-flex;
  font-size: 20px;
  align-items: center;
  padding-left: 85px;
  position: relative;
}
@media (max-width: 767px) {
  .header-area .header-inner-box .logo p.tagline {
    padding-left: 25px;
  }
}
.header-area .header-inner-box .logo p.tagline:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 15px;
  width: 60px;
  height: 1px;
  background: #333;
  margin-top: 1px;
}
@media (max-width: 767px) {
  .header-area .header-inner-box .logo p.tagline:before {
    width: 15px;
    left: 5px;
  }
}
.header-area .header-inner-box .logo img {
  width: 110px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-inner-box .logo img {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .header-area .header-inner-box .logo img {
    width: 90px;
  }
}

/* -- 15. Main Menu CSS  
-----------------------*/
.main-menu ul {
  line-height: 1;
}
.main-menu ul > li {
  display: inline-block;
  line-height: 1;
  margin: 0 17px;
  position: relative;
}
.main-menu ul > li:last-child {
  margin-right: 0;
}
.main-menu ul > li > a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  padding: 30px 0;
  overflow: hidden;
  color: #0a0000;
}
.main-menu ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu ul > li > ul {
  position: absolute;
  top: 100%;
  width: 220px;
  background-color: #000;
  left: 0;
  z-index: 999;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
  visibility: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease-in-out;
  padding: 15px 0px;
}
.main-menu ul > li > ul li {
  display: block;
  margin-right: 0;
}
.main-menu ul > li > ul li a {
  display: block;
  color: #A3A7AD !important;
  padding: 12px 25px;
  font-size: 13px;
  font-weight: 500;
}
.main-menu ul > li > ul li a:hover {
  color: #fff !important;
}
.main-menu ul > li > ul li a i {
  transform: rotate(-45deg);
  font-size: 15px;
  position: absolute;
  right: 20px;
  bottom: 11px;
  transition: 0.3s;
}
.main-menu ul > li > ul li a:hover i {
  transform: rotate(0);
}
.main-menu ul > li > ul ul {
  left: 100%;
  top: 0;
}

.main-menu ul li {
  position: relative;
}
.main-menu ul li a.navlink:before {
  position: absolute;
  content: "";
  bottom: 25px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #B79F4F;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
.main-menu ul li a.navlink:hover:before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

.main-menu ul li.active {
  position: relative;
}

.main-menu ul li.active a {
  color: #000000;
}

.main-menu ul li.active:before {
  position: absolute;
  content: "";
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #B79F4F;
}

.main-menu ul > li > ul li a.active {
  position: relative;
  padding-left: 50px;
}

.main-menu ul > li > ul li a.active:before {
  position: absolute;
  content: "";
  bottom: 50%;
  left: 25px;
  width: 16px;
  height: 2px;
  background: #B79F4F;
  margin-bottom: -1px;
  transition: 0.2s ease-out;
}

.header-three .main-menu ul li a {
  color: #fff;
}
.header-three .main-menu ul li.active a {
  color: #fff;
}

/* -- 16. Mobile Menu 
---------------------*/
.mobile-nav {
  position: fixed;
  right: -380px;
  top: 0;
  width: 320px;
  height: 100vh;
  scroll-behavior: smooth;
  overflow-y: scroll;
  transition: right 0.5s ease-in;
  background-color: #000;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.15);
}
.mobile-nav.show {
  right: 0px;
}
.mobile-nav .close-nav {
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 30px;
  font-size: 30px;
  position: absolute;
  left: 20px;
  top: 10px;
}
.mobile-nav .sidebar-nav {
  margin-top: 60px;
}
.mobile-nav .sidebar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: transparent;
}
.mobile-nav .sidebar-nav .metismenu {
  display: flex;
  flex-direction: column;
}
.mobile-nav .sidebar-nav .metismenu > li {
  position: relative;
  display: flex;
  flex-direction: column;
}
.mobile-nav .sidebar-nav .metismenu a {
  position: relative;
  display: block;
  padding: 10px 15px;
  transition: all 0.3s ease-out;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  outline-width: 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #282423;
}
.mobile-nav .sidebar-nav .metismenu ul li {
  display: block;
}
.mobile-nav .sidebar-nav .metismenu ul a {
  padding: 10px 15px 10px 35px;
  position: relative;
}
.mobile-nav .sidebar-nav .metismenu ul a:hover {
  padding-left: 40px;
}
.mobile-nav .sidebar-nav .metismenu ul a:hover::before {
  background-color: #fff;
}
.mobile-nav .sidebar-nav .metismenu ul a::before {
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  content: "";
  top: 50%;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
}
.mobile-nav .sidebar-nav .metismenu ul ul {
  list-style-type: circle !important;
}
.mobile-nav .sidebar-nav .metismenu ul ul a {
  padding: 10px 15px 10px 45px;
  font-weight: 500;
}
.mobile-nav .sidebar-nav .metismenu a:hover,
.mobile-nav .sidebar-nav .metismenu a:focus,
.mobile-nav .sidebar-nav .metismenu a:active {
  text-decoration: none;
  color: #f8f9fa;
  background: #000000;
}

.header-area .container {
  background: #fff;
}

.header-area.absolute-header .container {
  background: transparent;
}

#hamburger {
  color: #171717;
  font-size: 32px;
  line-height: 1;
  text-align: right;
  display: none;
}
#hamburger i {
  cursor: pointer;
}
@media (max-width: 1199px) {
  #hamburger {
    display: block;
  }
}

.dark-bg #hamburger i {
  color: #fff;
}

.absolute-header #hamburger i {
  color: #fff;
}

.action-bar {
  margin-top: 60px;
  padding-left: 20px;
}

.action-bar a {
  color: #fff;
  display: block;
  margin-top: 12px;
  font-size: 16px;
}

.action-bar a i {
  margin-right: 10px;
}

.action-bar .theme-btn, .action-bar .bordered-btn, .action-bar .white-btn {
  margin-top: 30px;
  display: inline-block;
}

/* Header Right  */
.header-right {
  display: flex;
  align-items: center;
}

.header-right .search-trigger i {
  font-size: 24px;
  margin-left: 30px;
  margin-right: 40px;
  position: relative;
  top: 2px;
}
.header-right .search-trigger i:hover {
  cursor: pointer;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-right .search-trigger i {
    display: none;
  }
}

.contact-number {
  align-items: center;
  gap: 15px;
  margin-right: 30px;
}
.contact-number .icon i {
  font-size: 24px;
  background: #eee;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-number .title h4 {
  font-size: 22px;
  font-weight: 400;
}

.social-area a i {
  font-size: 22px;
  color: #fff;
  margin-right: 20px;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .header-btn {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-trigger {
    display: none;
  }
}
@media (max-width: 767px) {
  .menu-trigger {
    display: none;
  }
}

/* Absolute/Transparent Header  */
.header-area.absolute-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.absolute-header {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .header-area.absolute-header {
    margin-top: 0;
  }
}

.header-area.absolute-header .navigation {
  background: inherit;
}

.header-area.absolute-header .logo {
  color: #fff;
}

.header-area.absolute-header .main-menu ul > li > a {
  color: #fff;
}

.header-area.absolute-header .main-menu ul li a:before {
  background: #B79F4F;
}

.header-area.absolute-header .main-menu ul li.active:before {
  background: #B79F4F;
}

.header-area.absolute-header .search-trigger i {
  color: #fff;
}

.header-area.absolute-header .contact-number .title h4 {
  color: #fff;
}

.main-menu ul li .has-homemenu {
  width: 780px;
  opacity: 0;
  left: -100px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background: #fff;
  border-radius: 15px;
}

.main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

ul.sub-menu.has-homemenu li {
  margin: 0;
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
  transition: 0.3s;
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu:hover {
  transform: translateY(-7px);
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  z-index: 1;
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.05);
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px;
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn, .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .bordered-btn, .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .white-btn {
  padding: 12px 18px;
  color: #fff !important;
  width: initial;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: initial;
  border-radius: 10px;
}
.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:before, .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .bordered-btn:before, .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .white-btn:before {
  display: none;
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  margin: 20px 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

#hero-1 .hero-content-wrap h1 {
  font-size: 120px;
  letter-spacing: -5px;
  line-height: 100px;
  margin: 30px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #hero-1 .hero-content-wrap h1 {
    font-size: 100px;
    line-height: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #hero-1 .hero-content-wrap h1 {
    font-size: 80px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  #hero-1 .hero-content-wrap h1 {
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2px;
  }
}
#hero-1 .hero-content-wrap p {
  font-size: 18px;
}
#hero-1 .hero-content-wrap p span {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #333;
}
@media (max-width: 767px) {
  #hero-1 .hero-content-wrap p {
    margin-bottom: 30px;
  }
  #hero-1 .hero-content-wrap p br {
    display: none;
  }
}
@media (max-width: 767px) {
  #hero-1 .hero-content-wrap.pt-120.pb-120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#hero-1 .circle-button {
  position: relative;
  display: inline-block;
  right: -60px;
}
@media (max-width: 767px) {
  #hero-1 .circle-button {
    display: none;
  }
}
#hero-1 .circle-button.in-bord:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
}
#hero-1 .circle-button .rotate-circle svg {
  width: 350px;
  fill: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #hero-1 .circle-button .rotate-circle svg {
    width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #hero-1 .circle-button .rotate-circle svg {
    width: 300px;
  }
}
@media (max-width: 767px) {
  #hero-1 .circle-button .rotate-circle svg {
    width: 200px;
  }
}
#hero-1 .circle-button .rotate-circle text {
  font-size: 20px;
  letter-spacing: 1px;
}
#hero-1 .circle-button .in-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#hero-1 .circle-button.no-animate .rotate-circle {
  -webkit-animation: none;
  animation: none;
}
#hero-1 .rotate-circle {
  -webkit-animation-name: rotateCircle;
  animation-name: rotateCircle;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
#hero-1 .text-u {
  text-transform: uppercase !important;
}
#hero-1 .hover-this .hover-anim {
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
#hero-1 .rotate-circle {
  -webkit-animation-name: rotateCircle;
  animation-name: rotateCircle;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#hero-1 .hero-content-wrap.pt-150.pb-150 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Hero Area # 02 */
#home-2 .single-slide-item {
  background-image: url(../img/slider/slide-1.jpg);
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  color: #fff;
  width: 100%;
  height: 800px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  #home-2 .single-slide-item {
    height: 700px;
  }
}
#home-2 .single-slide-item h1 {
  font-size: 100px;
  font-weight: 400;
  line-height: 85%;
  letter-spacing: -5px;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-2 .single-slide-item h1 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  #home-2 .single-slide-item h1 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -2px;
  }
}
@media only screen and (min-width: 540px) and (max-width: 767px) {
  #home-2 .single-slide-item h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
#home-2 .single-slide-item h1 span {
  color: #B79F4F;
}
#home-2 .hero-area-content {
  padding-top: 120px;
  padding-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-2 .hero-area-content {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  #home-2 .hero-area-content {
    padding-left: 0;
    padding-top: 0;
  }
}
#home-2 .hero-area-content p {
  font-size: 18px;
}
@media (max-width: 767px) {
  #home-2 .hero-area-content p br {
    display: none;
  }
}

.homepage-slides .owl-nav button.owl-prev,
.homepage-slides .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border: 2px solid;
  font-size: 20px;
  font-weight: 100;
  line-height: 16px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -25px;
  color: #B79F4F;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.homepage-slides .owl-nav button.owl-next {
  left: auto;
  right: 15px;
}

.homepage-slides:hover .owl-nav button.owl-prev,
.homepage-slides:hover .owl-nav button.owl-next {
  visibility: visible;
  opacity: 0.3;
}

.homepage-slides .owl-nav button.owl-prev:hover,
.homepage-slides .owl-nav button.owl-next:hover {
  background: #B79F4F;
  color: #fff;
  border-color: #B79F4F;
  opacity: 1;
}

#hero-3 .hero-content-wrap h1 {
  font-size: 70px;
  letter-spacing: -5px;
  line-height: 90%;
  margin: 30px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #hero-3 .hero-content-wrap h1 {
    font-size: 65px;
    line-height: 90%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #hero-3 .hero-content-wrap h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  #hero-3 .hero-content-wrap h1 {
    font-size: 45px;
    line-height: 50px;
    letter-spacing: -2px;
  }
}
#hero-3 .hero-content-wrap p {
  font-size: 18px;
}
#hero-3 .hero-content-wrap p span {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #333;
}
@media (max-width: 767px) {
  #hero-3 .hero-content-wrap p {
    margin-bottom: 30px;
  }
  #hero-3 .hero-content-wrap p br {
    display: none;
  }
}

@media (max-width: 767px) {
  #hero-3 .hero-content-wrap.pt-150.pb-150 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

#home-4 .hero-area {
  position: relative;
  z-index: 1;
}
#home-4 .hero-bg-video {
  position: relative;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 750px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #home-4 .hero-bg-video {
    height: 850px;
  }
}
@media (max-width: 767px) {
  #home-4 .hero-bg-video {
    height: 500px;
  }
}
#home-4 .hero-bg-video::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  z-index: 2;
}
#home-4 .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home-4 .hero-area-content {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
@media (max-width: 767px) {
  #home-4 .hero-area-content {
    left: 0;
  }
}
#home-4 .hero-area-content h1 {
  font-size: 100px;
  font-weight: 500;
  line-height: 90%;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #home-4 .hero-area-content h1 {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-4 .hero-area-content h1 {
    font-size: 80px;
    line-height: 95%;
  }
}
@media (max-width: 767px) {
  #home-4 .hero-area-content h1 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 540px) and (max-width: 767px) {
  #home-4 .hero-area-content h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
#home-4 .hero-area-content p {
  font-size: 18px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-4 .hero-area-content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  #home-4 .hero-area-content p br {
    display: none;
  }
}

#service-1 .service-sl {
  border-bottom: 1px solid #ddd;
  text-align: end;
}
#service-1 .service-sl span {
  font-size: 15px;
  color: #0a0000;
}
#service-1 .service-content {
  display: flex;
  align-items: end;
}
@media (max-width: 767px) {
  #service-1 .service-content {
    display: block;
  }
}
#service-1 .service-icon {
  flex: 0 0 25%;
}
#service-1 .service-icon img {
  width: 50px;
}
#service-1 .service-text {
  flex: 0 0 75%;
}
#service-1 .service-text span.title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #service-1 .service-text span.title {
    margin-top: 30px;
  }
}
#service-1 .service-content {
  padding-top: 20px;
  padding-bottom: 30px;
}
#service-1 .service-text p {
  font-size: 17px;
  line-height: 1.4;
}
#service-1 .service-feature-list li {
  font-size: 17px;
  margin-bottom: 5px;
}
#service-1 .service-feature-list {
  padding-left: 90px;
}
@media (max-width: 767px) {
  #service-1 .service-feature-list {
    padding-left: 0;
  }
}

#service-2 .service-inner {
  display: flex;
  flex-wrap: wrap;
}
#service-2 .service-left {
  width: 30%;
  padding: 0 45px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-2 .service-left {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #service-2 .service-left {
    width: 100%;
    padding: 0;
  }
}
#service-2 .service-right {
  width: 70%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-2 .service-right {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #service-2 .service-right {
    width: 100%;
  }
}
#service-2 .service-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  z-index: 1;
  padding: 100px 70px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-2 .service-item {
    padding: 50px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  #service-2 .service-item {
    padding: 40px 20px;
    height: 400px;
  }
}
#service-2 .service-icon img {
  width: 50px;
}
#service-2 .service-title span {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  color: #fff;
  margin: 40px 0 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-2 .service-title span {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  #service-2 .service-title span {
    font-size: 28px;
  }
}
#service-2 .service-item p {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
}
#service-2 a.service-link {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  margin: 30px 0;
}

#service-3 .single-service-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}
@media (max-width: 767px) {
  #service-3 .single-service-wrap {
    flex-flow: column;
    align-items: start;
    gap: 30px;
  }
}
#service-3 .service-num {
  flex: 0 0 20%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #service-3 .service-num {
    flex: 0 0 15%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-3 .service-num {
    flex: 0 0 10%;
  }
}
#service-3 .service-title {
  flex: 0 0 35%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #service-3 .service-title {
    flex: 0 0 35%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-3 .service-title {
    flex: 0 0 40%;
  }
}
#service-3 .service-text {
  flex: 0 0 50%;
}
#service-3 .service-num span {
  font-size: 16px;
  font-weight: 500;
}
#service-3 .service-title img {
  width: 50px;
}
#service-3 .service-title span.title {
  font-size: 28px;
  font-weight: 500;
  padding-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #service-3 .service-title span.title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-3 .service-title span.title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #service-3 .service-title span.title {
    font-size: 24px;
    display: block;
    padding-left: 0;
    margin-top: 30px;
  }
}
#service-3 .service-text p {
  font-size: 18px;
  padding-right: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-3 .service-text p {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  #service-3 .service-text p {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .service-wrap.mt-60 {
    margin-top: 0;
  }
}

#service-4 .service-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  position: relative;
  z-index: 1;
  padding: 40px 45px;
  border-radius: 12px;
}
#service-4 .overlay, #service-4 .overlay-2, #service-4 .overlay-3, #service-4 .overlay-4, #service-4 .overlay-5 {
  border-radius: 12px;
}
#service-4 .service-icon img {
  width: 40px;
}
#service-4 .service-title span {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  color: #fff;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-4 .service-title span {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  #service-4 .service-title span {
    font-size: 20px;
  }
}
#service-4 .service-item p {
  font-size: 16px;
  color: #fff;
}
#service-4 a.service-link {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  margin: 30px 0;
}

#service-4 .section-title h1 {
  font-size: 120px;
  line-height: 90%;
  letter-spacing: -5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #service-4 .section-title h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  #service-4 .section-title h1 {
    font-size: 50px;
    letter-spacing: -2px;
  }
}

#service-4 span.sub-title {
  text-transform: uppercase;
  margin-bottom: 30px;
}

#service-4 p {
  font-size: 18px;
  margin-top: 20px;
}

.service-details span.title {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.service-details p {
  font-size: 18px;
  padding-right: 60px;
}
@media (max-width: 767px) {
  .service-details p {
    font-size: 16px;
    padding-right: 0;
  }
}

.service-details p span {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.project-section {
  position: relative;
  overflow: hidden;
}

.project-content-wrap {
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-content-wrap {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .project-content-wrap {
    flex-direction: column;
  }
}

.project-heading {
  flex: 0 0 34%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: end;
  padding: 50px;
  height: 750px;
}

.project-slider {
  flex: 0 0 66%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-slider {
    flex: 0 0 30%;
  }
}
@media (max-width: 767px) {
  .project-slider {
    flex: 0 0 30%;
  }
}

.single-project-item {
  height: 750px;
}
@media (max-width: 767px) {
  .single-project-item {
    height: 400px;
  }
}

.project-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 750px;
}
@media (max-width: 767px) {
  .project-bg {
    height: 400px;
  }
}

.project-desc {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 50px 60px;
  height: 100%;
}
@media (max-width: 767px) {
  .project-desc {
    display: none;
  }
}

.project-desc h3 a {
  font-size: 55px;
  line-height: 60px;
  letter-spacing: -2px;
}

.project-desc p {
  font-size: 16px;
  margin-top: 30px;
}

.project-slider {
  position: relative;
  z-index: 1;
}

.project-slider .owl-nav button.owl-prev,
.project-slider .owl-nav button.owl-next {
  background-color: #000;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .project-slider .owl-nav button.owl-prev,
  .project-slider .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
  }
}

.project-slider .owl-nav button.owl-prev:hover,
.project-slider .owl-nav button.owl-next:hover {
  background: #171717;
  border-color: #171717;
  color: #fff;
}

.project-slider .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
}

.project-slider .owl-nav i {
  font-size: 20px;
  color: #fff;
}

#project-2 .project-inner {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #project-2 .project-inner {
    flex-flow: column;
    display: block;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  #project-2 .project-inner {
    display: block;
    flex-flow: column;
    gap: 30px;
  }
}
#project-2 .project-slider {
  width: 60%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #project-2 .project-slider {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #project-2 .project-slider {
    width: 100%;
  }
}
#project-2 .project-content-wrap {
  width: 30%;
  flex-flow: column;
  justify-content: space-between;
  padding: 0 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #project-2 .project-content-wrap {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  #project-2 .project-content-wrap {
    width: 100%;
    padding: 0;
  }
}
#project-2 .single-project-item {
  height: 600px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  #project-2 .single-project-item {
    height: 400px;
  }
}
#project-2 .single-project-item img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 767px) {
  #project-2 .single-project-item img {
    height: 400px;
  }
}
#project-2 .project-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #project-2 .project-info {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 767px) {
  #project-2 .project-info {
    flex-direction: column;
    align-items: start;
  }
}
#project-2 .project-title span {
  display: block;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  text-decoration-color: #ddd;
}
@media (max-width: 767px) {
  #project-2 .project-title span {
    font-size: 24px;
    margin-bottom: 5px;
    text-underline-offset: 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #project-2 .project-meta {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  #project-2 .project-meta {
    margin-top: 0;
  }
}
#project-2 .project-meta span {
  display: block;
  font-size: 18px;
  font-weight: 400;
}
#project-2 .project-img {
  border-radius: 12px;
  overflow: hidden;
}
#project-2 .project-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.35s ease-in-out;
}
#project-2 .project-img img:hover {
  transform: scale(1.07);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    margin-top: 60px;
  }
}

#project-3 .single-project-item {
  display: flex;
  align-items: center;
  height: 600px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  #project-3 .single-project-item {
    height: 400px;
  }
}
#project-3 .project-title h1 a {
  font-size: 60px;
  color: #fff;
}
@media (max-width: 767px) {
  #project-3 .project-title h1 a {
    font-size: 40px;
  }
}
#project-3 .project-info {
  padding-left: 120px;
}
@media (max-width: 767px) {
  #project-3 .project-info {
    padding: 0;
  }
}
#project-3 .single-project-item .section-link {
  color: #fff;
  border-color: #fff;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .project-section.pt-80.pb-60 {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.portfolio-details span.sub-title {
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  color: #777;
}

.portfolio-details span.title {
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .portfolio-details span.title {
    font-size: 60px;
    letter-spacing: -1px;
  }
}

.portfolio-details p {
  font-size: 18px;
  margin-top: 30px;
}

.single-client-info span.title {
  display: block;
  font-size: 17px;
  text-transform: uppercase;
  color: #777;
}

.single-client-info span.info {
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 5px;
}

.client-info-wrap {
  padding-left: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-info-wrap {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .client-info-wrap {
    padding-left: 0;
  }
}

.project-details-img {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 400px;
  margin-top: 60px;
}

.project-details-inner span.sub-title {
  text-transform: uppercase;
  display: block;
  color: #777;
  font-size: 15px;
  letter-spacing: 1px;
}

.project-details-inner span.title {
  font-size: 120px;
  line-height: 1;
  letter-spacing: -3px;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-details-inner span.title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .project-details-inner span.title {
    font-size: 50px;
  }
}

.project-details-inner .inner-text {
  padding-right: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-details-inner .inner-text {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .project-details-inner .inner-text {
    padding-right: 0;
  }
}

.project-details-inner p {
  font-size: 20px;
  line-height: 28px;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-details-inner p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .project-details-inner p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .project-details-inner .mt-120 {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .project-details-inner .pl-60 {
    padding-left: 20px;
  }
}

#project-video .video-content-wrap {
  width: 100%;
  height: 500px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #project-video .video-content-wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #project-video .video-content-wrap {
    width: 100%;
    height: auto;
  }
}
#project-video .video-content-wrap video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 767px) {
  #project-video .video-content-wrap video {
    height: 300px;
  }
}

.about-left-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.about-middle-wrap {
  padding-left: 60px;
  padding-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-middle-wrap {
    padding-left: 15px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .about-middle-wrap {
    padding-left: 0;
    padding-top: 0;
  }
}

.about-tab {
  padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-tab {
    padding-left: 0;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .about-tab {
    padding-left: 0;
    margin-top: 30px;
    padding-right: 0;
  }
}

.about-tab .nav-tabs {
  border-bottom: none;
}

.about-tab .nav-item {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .about-tab .nav-item {
    margin-right: 20px;
  }
}

.about-tab .nav-link {
  border: none;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4509803922);
  padding: 0 0 5px;
}

.about-tab .nav-link.active {
  color: #0a0000;
  border-bottom: 2px solid #0a0000;
}

.tab-content p span {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.about-right-wrap {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 767px) {
  .about-right-wrap {
    gap: 30px;
  }
}

.about-right-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 170px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-right-img {
    height: 100px;
  }
}

@media (max-width: 767px) {
  .about-counter {
    text-align: center;
  }
}

.about-counter span.num {
  font-family: "Six Caps", sans-serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
}

.about-counter span.operator {
  font-family: "Six Caps", sans-serif;
  font-size: 80px;
  font-weight: 400;
}

.about-counter p.title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 20px;
}

#about-2 .about-inner {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #about-2 .about-inner {
    margin-top: 60px;
  }
}
#about-2 .about-content-wrap {
  width: 35%;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #about-2 .about-content-wrap {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #about-2 .about-content-wrap {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
#about-2 .about-content-wrap p {
  font-size: 18px;
}
#about-2 .video-content-wrap {
  width: 65%;
  height: 600px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #about-2 .video-content-wrap {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #about-2 .video-content-wrap {
    width: 100%;
    height: auto;
  }
}
#about-2 .video-content-wrap video {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 767px) {
  #about-2 .video-content-wrap video {
    height: 300px;
  }
}

#about-3 .about-counter {
  border-left: 1px solid #ddd;
  padding-left: 50px;
}
@media (max-width: 767px) {
  #about-3 .about-counter {
    padding-left: 0;
    border: none;
  }
}
#about-3 .single-counter-item {
  display: flex;
  align-items: center;
  margin-top: 30px;
  justify-content: start;
}
#about-3 .about-counter span.num {
  flex: 0 0 20%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #about-3 .about-counter span.num {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #about-3 .about-counter span.num {
    flex: 0 0 10%;
  }
}
@media (max-width: 767px) {
  #about-3 .about-counter span.num {
    font-size: 70px;
  }
}
#about-3 .about-counter span.operator {
  flex: 0 0 15%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #about-3 .about-counter span.operator {
    flex: 0 0 10%;
  }
}
#about-3 .about-counter p.title {
  flex: 0 0 50%;
  padding-left: 30px;
  justify-items: start;
}

@media (max-width: 767px) {
  #about-3.about-section.pt-100 {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .about-desc.mt-60 {
    margin-top: 0;
  }
}

.about-desc p {
  font-size: 18px;
}
.about-desc p span {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.about-right-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-right-content {
    flex-direction: column;
    gap: 30px;
  }
}

.img-one {
  flex: 0 0 48%;
  margin-bottom: 25px;
}

.about-fact-wrap {
  flex: 0 0 48%;
  height: 300px;
}

.img-two {
  flex: 0 0 48%;
}

.img-one img {
  height: 300px;
  object-fit: cover;
}

.img-two img {
  height: 300px;
}

.about-left-content img {
  height: 625px;
  width: 100%;
  object-fit: cover;
}

.about-fact-wrap {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-fact-wrap {
    gap: 30px;
  }
}

.about-fact-wrap span.title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
}

.about-fact-wrap span.num {
  font-size: 85px;
  line-height: 1;
}
@media (max-width: 767px) {
  .about-fact-wrap span.num {
    font-size: 60px;
  }
}

.about-fact-wrap span.operator {
  font-size: 60px;
}

#team-1 .single-team-wrap {
  text-align: center;
  padding: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #team-1 .single-team-wrap {
    padding: 0;
  }
}
@media (max-width: 767px) {
  #team-1 .single-team-wrap {
    padding: 0;
  }
}
#team-1 .team-img img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #team-1 .team-img img {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 767px) {
  #team-1 .team-img img {
    width: 180px;
    height: 180px;
  }
}
#team-1 .team-content span.title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 30px 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #team-1 .team-content span.title {
    font-size: 24px;
    margin: 20px 0 10px;
  }
}
@media (max-width: 767px) {
  #team-1 .team-content span.title {
    font-size: 20px;
    margin: 20px 0 10px;
  }
}
#team-1 .team-content span.sub-title {
  display: block;
  font-size: 15px;
  opacity: 0.5;
}
#team-1 .team-content p {
  font-size: 18px;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #team-1 .team-content p {
    font-size: 16px;
  }
}
#team-1 .social-wrap ul li {
  display: inline-flex;
  align-items: center;
  margin: 0 4px;
}
#team-1 .social-wrap ul li a {
  width: 40px;
  height: 40px;
  background: #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
#team-1 .social-wrap ul li a:hover {
  background: #000;
}
#team-1 .social-wrap ul li a:hover i {
  color: #fff;
}
#team-1 .social-wrap {
  margin-top: 30px;
}
#team-1 .social-wrap ul li a i {
  font-size: 14px;
}
@media (max-width: 767px) {
  #team-1.team-section .mt-120 {
    margin-top: 60px;
  }
}

.team-left {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}

.team-left p {
  padding-right: 30px;
}

.single-team-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 280px;
  position: relative;
  z-index: 1;
}

.team-info span.title {
  font-size: 23px;
  display: block;
  color: #000;
  margin-bottom: 15px;
}

.team-info {
  background: #fff;
  text-align: center;
  height: 85%;
  width: 85%;
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-info span.sub-title {
  color: #777;
}

.single-team-item:hover .team-info {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

#team-3 .single-team-item {
  height: 360px;
  margin: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #team-3 .single-team-item {
    margin: 0;
  }
}

@media (max-width: 767px) {
  #team-3 .mt-120 {
    margin-top: 60px;
  }
}

#team-4 .single-team-wrap {
  position: relative;
  z-index: 1;
  border-right: 2px solid #fff;
}
#team-4 .single-team-wrap:hover .team-desc {
  transform: translateY(0);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #team-4 .single-team-wrap {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  #team-4 .single-team-wrap {
    padding: 15px;
  }
}
#team-4 .team-img {
  position: relative;
  overflow: hidden;
}
#team-4 .team-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  width: 100%;
  padding: 30px 30px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#team-4 .team-desc span.title {
  display: block;
  font-size: 22px;
  color: #fff;
}
#team-4 .team-desc p {
  margin: 0;
  color: #fff;
}

@media (max-width: 767px) {
  #team-4 p.pt-40 {
    padding-top: 0;
  }
}

#team .section-title h1 {
  font-size: 120px;
  line-height: 90%;
  letter-spacing: -5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #team .section-title h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  #team .section-title h1 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -1px;
  }
}

#team span.sub-title {
  text-transform: uppercase;
  margin-bottom: 30px;
}

#team p {
  font-size: 18px;
  margin-top: 20px;
}

.single-process-item {
  text-align: center;
}
.single-process-item .process-inner {
  padding: 40px 45px 0 20px;
  border-right: 1px solid #ddd;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-process-item .process-inner {
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .single-process-item .process-inner {
    border-right: none;
  }
}

.process-img span {
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
  border: 3px solid;
  border-radius: 5px;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-process-item span.title {
  font-size: 22px;
  font-weight: 500;
  margin: 30px 0 20px;
}

.single-process-item p {
  font-size: 17px;
}

.process-num span {
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 30px 0;
  border-bottom: 1px solid #ddd;
}

.process-section .row > div:last-child .process-inner {
  border-right: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-section .row > div:nth-of-type(2) .process-inner {
    border-right: none;
  }
}

#process-3 .single-process-wrap {
  text-align: center;
  padding: 30px 40px;
  border-right: 1px solid #ddd;
}
@media (max-width: 767px) {
  #process-3 .single-process-wrap {
    padding: 20px;
  }
}
#process-3 .process-num span {
  display: block;
  font-size: 130px;
  font-weight: 500;
  font-family: "Afacad Flux", sans-serif;
  letter-spacing: -5px;
  color: #ddd;
  line-height: 1;
  justify-content: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  #process-3 .process-num span {
    font-size: 100px;
  }
}
#process-3 .process-icon {
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#process-3 .process-icon img {
  width: 50px;
}
@media (max-width: 767px) {
  #process-3 .process-icon img {
    width: 40px;
  }
}
@media (max-width: 767px) {
  #process-3 .process-icon {
    width: 120px;
    height: 120px;
  }
}
#process-3 .process-content span.title {
  font-size: 24px;
  font-weight: 500;
  margin: 30px 0 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #process-3 .process-content span.title {
    font-size: 20px;
  }
}

.single-client img {
  width: 100px !important;
  height: auto;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .single-client img {
    width: 100px !important;
  }
}

.single-client {
  width: 180px;
  height: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ddd;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .single-client {
    width: 140px;
    height: 140px;
  }
}
.single-client:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  visibility: hidden;
  opacity: 0;
}
.single-client:hover:before {
  visibility: visible;
  opacity: 1;
}

.clients-section .owl-carousel.owl-drag .owl-item {
  text-align: center;
}

#client-2 .single-client {
  background: none;
  border: none;
  height: 100px;
  margin-top: 30px;
}
#client-2 .single-client img {
  width: 130px !important;
}

.clients-wrap {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .clients-wrap {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .clients-wrap {
    padding-left: 0;
  }
}

.clients-text p {
  font-size: 18px;
}

.clients-text {
  width: 90%;
}

#clients-3 .client-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border: 1px solid #333;
}
@media (max-width: 767px) {
  #clients-3 .client-img-wrap {
    display: none;
  }
}
#clients-3 .client-img-inner {
  flex: 1;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #333;
}
#clients-3 .client-img-inner:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  #clients-3 .client-img-inner {
    flex: 0 0 50%;
    border-bottom: 1px solid #333;
  }
  #clients-3 .client-img-inner:first-child {
    border-bottom: none;
  }
  #clients-3 .client-img-inner:nth-child(2) {
    border-bottom: none;
    border-right: none;
  }
  #clients-3 .client-img-inner:last-child {
    border-right: 1px solid #333;
  }
}
#clients-3 .client-img-inner img {
  width: 150px;
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #clients-3 .client-img-inner img {
    width: 110px;
  }
}
@media (max-width: 767px) {
  #clients-3 .client-img-inner img {
    width: 60px;
  }
}
@media (max-width: 767px) {
  #clients-3 .client-img-wrap {
    height: 100px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  #clients-3 .clients-section {
    height: 300px;
    position: relative;
    overflow: hidden;
  }
}

.single-blog-item {
  border: 1px solid #333;
  padding: 50px;
}

.blog-meta i {
  font-size: 24px;
  color: #777;
}

.blog-meta span {
  font-size: 15px;
  color: #777;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-title span.title {
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0 30px;
}
.blog-title span.title:hover {
  color: #B79F4F;
}

.read-more-link a {
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 8px;
}

@media (max-width: 767px) {
  .blog-section .mt-60 {
    margin-top: 0;
  }
}

#blog-3 .single-blog-item {
  padding: 50px 0;
  border: none;
}
@media (max-width: 767px) {
  #blog-3 .single-blog-item {
    padding: 0;
  }
}
#blog-3 .blog-meta {
  margin: 30px 0 10px;
}

.blog-section h1 {
  font-size: 150px;
  font-weight: 400;
  letter-spacing: -8px;
  line-height: 95%;
}

.single-blog-post {
  margin-bottom: 100px;
}
.single-blog-post:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .single-blog-post {
    margin-bottom: 50px;
  }
}
.single-blog-post .blog-content-up {
  padding-left: 240px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog-post .blog-content-up {
    padding-left: 200px;
  }
}
@media (max-width: 767px) {
  .single-blog-post .blog-content-up {
    padding-left: 0;
  }
}
.single-blog-post .blog-title {
  width: 430px;
}

h2.blog-title a {
  font-size: 60px;
  line-height: 95%;
  letter-spacing: -3px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  h2.blog-title a {
    font-size: 40px;
    letter-spacing: -1px;
  }
}

span.blog-date {
  font-size: 16px;
  color: #777;
  padding-right: 15px;
}

a.blog-cat {
  font-size: 16px;
  font-weight: 500;
}

.blog-thumb img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  margin-top: 30px;
}

.blog-content-bottom {
  padding-left: 240px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .blog-content-bottom {
    padding-left: 0;
    margin-top: 30px;
  }
}

.blog-text {
  width: 75%;
}
@media (max-width: 767px) {
  .blog-text {
    width: 100%;
  }
}

.blog-text p {
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 767px) {
  .blog-text p {
    font-size: 16px;
  }
}

.blog-btn .bordered-btn, .blog-btn .white-btn {
  border-radius: 50px;
  padding: 18px 26px;
  margin-top: 30px;
  border-color: #B79F4F;
  color: #B79F4F;
  border-width: 2px;
}
.blog-btn .bordered-btn:hover, .blog-btn .white-btn:hover {
  background-color: #B79F4F;
  color: #fff;
}

.blog-details h1 {
  font-size: 150px;
  font-weight: 400;
  letter-spacing: -8px;
  line-height: 95%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details h1 {
    font-size: 100px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog-details h1 {
    font-size: 60px;
    margin-bottom: 30px;
    letter-spacing: -4px;
  }
}

.blog-details h2 {
  font-size: 60px;
  line-height: 95%;
  letter-spacing: -3px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .blog-details h2 {
    font-size: 40px;
  }
}
.blog-details span.blog-date {
  font-size: 16px;
  color: #777;
  padding-right: 15px;
}
.blog-details .blog-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details .blog-inner-img {
  margin-top: 60px;
  margin-bottom: 60px;
}

.related-post-section .related-post-inner span.title {
  font-size: 26px;
  margin-bottom: 30px;
}
.related-post-section .single-post-item {
  display: block;
}
.related-post-section .single-post-item .post-thumnails img {
  height: 130px;
  width: 100%;
  object-fit: cover;
}
.related-post-section .post-title span {
  font-size: 22px;
  margin-top: 20px;
}
.related-post-section .post-title {
  padding-left: 60px;
}
@media (max-width: 767px) {
  .related-post-section .post-title {
    padding-left: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .related-post-section.pt-60 {
    padding-top: 0;
  }
}

.comments-headline span {
  font-size: 22px;
  font-weight: 500;
}

.single-comments-inner {
  display: inline-flex;
  justify-content: space-around;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .single-comments-inner {
    flex-direction: column;
  }
}

.comments-autor-thumb img {
  width: 100px;
}
@media (max-width: 767px) {
  .comments-autor-thumb img {
    margin-bottom: 10px;
  }
}

.comments-content {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .comments-content {
    padding-left: 0;
  }
}
.comments-content span.title {
  font-size: 20px;
}

p.comments-date {
  margin-bottom: 30px;
}

a.reply-btn {
  font-size: 17px;
  color: #777;
}
a.reply-btn i {
  margin-right: 15px;
}

.comments-form-wrap {
  background: #fff;
  margin-top: 60px;
}
.comments-form-wrap h3 {
  margin: 0 0 30px;
}
.comments-form-wrap .comments-form input,
.comments-form-wrap .comments-form textarea {
  border: 1px solid #ddd;
  margin-bottom: 30px;
}
.comments-form-wrap .comments-form textarea {
  height: 200px;
}
.comments-form-wrap input[type=submit] {
  width: 170px;
  font-size: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .comments-form.pt-120 {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .comments-form.pt-120 {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .commetns-section-wrap.mt-100 {
    margin-top: 0;
  }
}

.single-fact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  margin-top: 30px;
  border-top: 1px solid;
}
@media (max-width: 767px) {
  .single-fact-item {
    flex-flow: column;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
  }
}

.fact-icon {
  flex: 0 0 12%;
}

.fact-icon i {
  width: 120px;
  height: 120px;
  background: #1B1B1B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 50px;
  color: #fff;
  rotate: -45deg;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fact-icon i {
    width: 90px;
    height: 90px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .fact-icon i {
    width: 90px;
    height: 90px;
    font-size: 40px;
  }
}

.fact-title {
  flex: 0 0 30%;
}

.fact-title span {
  font-size: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fact-title span {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .fact-title span {
    font-size: 24px;
    margin-top: 15px;
  }
}

.fact-desc {
  flex: 0 0 40%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .fact-desc {
    flex: 0 0 35%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fact-desc {
    flex: 0 0 30%;
  }
}

.fact-desc p {
  font-size: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fact-desc p {
    font-size: 16px;
  }
  .fact-desc p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .fact-desc p {
    font-size: 16px;
  }
  .fact-desc p br {
    display: none;
  }
}

.fact-num {
  flex: 0 0 18%;
  text-align: end;
}

.fact-num span.num {
  font-size: 80px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fact-num span.num {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .fact-num span.num {
    font-size: 50px;
  }
}

.fact-num span.operator {
  font-size: 70px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fact-num span.operator {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .fact-num span.operator {
    font-size: 50px;
  }
}

#fact-2 .single-fact-item {
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  #fact-2 .single-fact-item {
    margin-bottom: 0;
    margin-top: 30px;
  }
}

#fact-2 .fact-num span.num {
  font-size: 70px;
  line-height: 1;
  color: #1B1B1B;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #fact-2 .fact-num span.num {
    font-size: 50px;
  }
}

#fact-2 .fact-num span.operator {
  font-size: 70px;
  color: #1B1B1B;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #fact-2 .fact-num span.operator {
    font-size: 50px;
  }
}

#fact-2 .fact-desc p {
  color: #0a0000;
}

.single-img-wrap img {
  height: 600px;
}
@media (max-width: 767px) {
  .single-img-wrap img {
    width: 100%;
    height: 300px;
  }
}

.img-slider-2 {
  text-align: center;
}

.img-slider-2 .single-img-wrap img {
  width: 560px;
  height: 360px;
}

@media (max-width: 767px) {
  .image-slider-wrap.pt-150 {
    padding-top: 60px;
  }
}

.img-slider-3 .single-img-wrap img {
  width: 320px;
  height: 320px;
  object-fit: cover;
}

.img-slider-4 .single-img-wrap img {
  width: 600px;
  height: 480px;
  object-fit: cover;
}

#testimonial-1.testimonial-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#testimonial-1.testimonial-section::after {
  position: absolute;
  content: "";
  background: #000;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
#testimonial-1 .testimonial-inner {
  width: 80%;
  margin: 0 auto;
  background: #fff;
  padding: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testimonial-1 .testimonial-inner {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  #testimonial-1 .testimonial-inner {
    padding: 20px;
  }
}
#testimonial-1 .quote-wrap img {
  width: 40px !important;
  height: auto;
}
#testimonial-1 .testimonial-text p {
  font-size: 35px;
  line-height: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testimonial-1 .testimonial-text p {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  #testimonial-1 .testimonial-text p {
    font-size: 20px;
    line-height: 30px;
  }
}
#testimonial-1 .testimonial-text {
  margin-top: 30px;
}
#testimonial-1 .testimonial-author {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
#testimonial-1 .author-thumb img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
#testimonial-1 .author-title span.title {
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
}
#testimonial-1 .author-title span.sub-title {
  display: block;
  font-size: 16px;
  opacity: 0.5;
}

#testimonial-2 .single-testimonial-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  height: 700px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 80px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  #testimonial-2 .single-testimonial-wrap {
    padding: 20px;
  }
}
#testimonial-2 .single-testimonial-wrap::after {
  position: absolute;
  content: "";
  background: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
#testimonial-2 .rating-wrap i {
  font-size: 20px;
  color: #F7AF54;
}
#testimonial-2 .testimonial-text p {
  font-size: 45px;
  line-height: 55px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testimonial-2 .testimonial-text p {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  #testimonial-2 .testimonial-text p {
    font-size: 20px;
    line-height: 30px;
  }
}
#testimonial-2 .testimonial-text {
  margin-top: 30px;
}
#testimonial-2 .testimonial-author {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
#testimonial-2 .author-thumb img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
#testimonial-2 .author-title span.title {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}
#testimonial-2 .author-title span.sub-title {
  display: block;
  font-size: 16px;
  color: #fff;
}

#testimonial-3 .rating-wrap i {
  color: #F7AF54;
}
#testimonial-3 .testimonial-text {
  margin-top: 20px;
}
#testimonial-3 .testimonial-text p {
  font-size: 18px;
  font-weight: 400;
  color: #0a0000;
  line-height: 28px;
}
#testimonial-3 .testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
#testimonial-3 .author-img img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
}
#testimonial-3 .author-title span.title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testimonial-3 p.p-xl br {
    display: none;
  }
}
@media (max-width: 767px) {
  #testimonial-3 p.p-xl br {
    display: none;
  }
}

/* 28. Service Slider  */
.service_slider_wrap {
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service_slider_wrap.pt-120.pb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .service_slider_wrap.pt-120.pb-100 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.service_slider_item {
  display: flex;
  align-items: center;
  height: 150px;
  gap: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service_slider_item {
    height: 150px;
  }
}
@media (max-width: 767px) {
  .service_slider_item {
    height: 100px;
  }
}

.service_slider_item h1 {
  text-transform: uppercase;
  font-size: 160px;
  font-weight: 500;
  letter-spacing: -4.5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service_slider_item h1 {
    font-size: 120px;
  }
}
@media (max-width: 767px) {
  .service_slider_item h1 {
    font-size: 60px;
    letter-spacing: -2px;
  }
}

.service_slider_item h5.stroke {
  -webkit-text-stroke: 0.8px #fff;
  -webkit-text-fill-color: #000000;
}

.service_slider_item img {
  display: inline-block;
  margin-left: 50px;
  margin-right: 30px;
  position: relative;
  top: -7px;
  width: 64px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service_slider_item img {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .service_slider_item img {
    width: 45px;
    margin-right: 0;
  }
}

.service_slider_item {
  animation: dazio-scroller 25s linear infinite;
  will-change: transform;
  white-space: nowrap;
}

@keyframes dazio-scroller {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes dazio-scroller-reverse {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@media (max-width: 767px) {
  .service_slider_wrap.pb-120 {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .service_slider_wrap.pb-100 {
    padding-bottom: 30px;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .service_slider_wrap.pb-90 {
    padding-bottom: 30px;
  }
}

.service_slider_item img {
  animation: rotation 6s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.footer-title span.title {
  display: block;
  font-size: 150px;
  line-height: 95%;
  letter-spacing: -8px;
  color: #000000;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-title span.title {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .footer-title span.title {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: -2px;
  }
}

.footer-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .footer-info {
    flex-direction: column;
    gap: 30px;
  }
}

.single-info span.title {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 15px;
}

.single-info span.title:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -30px;
  width: 19px;
  height: 2px;
  background: #333;
}

.single-info {
  flex: 0 0 25%;
}
.single-info span {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-info {
    flex: 0 0 35%;
  }
}

.single-info span.bold-text {
  font-size: 20px;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  .footer-bottom {
    padding-top: 30px;
  }
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-content .social-wrap {
  margin-top: 0;
}

.footer-bottom-content .social-wrap ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom .social-wrap ul li a {
  background: none;
}
.footer-bottom .social-wrap ul li a i {
  font-size: 20px;
}

.footer-bottom .social-wrap ul li a:hover i {
  color: inherit;
  opacity: 0.5;
}

#footer-2.footer-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 600px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  #footer-2.footer-section {
    height: auto;
  }
}
#footer-2.footer-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #060e12;
  opacity: 0.5;
  z-index: -1;
}
#footer-2 .footer-content-wrap p {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767px) {
  #footer-2 .footer-content-wrap p br {
    display: none;
  }
}
#footer-2 .footer-content-wrap h1 {
  font-size: 100px;
  font-weight: 400;
  letter-spacing: -4px;
  line-height: 90%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #footer-2 .footer-content-wrap h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  #footer-2 .footer-content-wrap h1 {
    font-size: 50px;
  }
}
#footer-2 .footer-content-wrap h1 span {
  font-weight: 500;
  text-decoration: underline;
  color: #B79F4F;
}
#footer-2 .site-info {
  padding: 15px 0;
}
#footer-2 .site-info p {
  font-size: 15px;
}
#footer-2 .single-contact-info span {
  font-size: 20px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
#footer-2 .single-contact-info .p-xl {
  font-size: 22px;
}
#footer-2 .single-contact-info p {
  color: rgba(255, 255, 255, 0.6901960784);
  font-size: 18px;
  margin: 0;
}
#footer-2 .single-contact-info {
  margin-bottom: 30px;
}
#footer-2 .single-contact-info h6:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 15px;
  height: 2px;
  background: #fff;
  margin-top: -1px;
}

#footer-3 .footer-info {
  display: block;
  margin-top: 120px;
}

#footer-3 span.title span {
  text-decoration: underline;
}

#footer-3 .single-info {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  #footer-3.pb-90 {
    padding-bottom: 0;
  }
}

.breadcrumb-bg {
  background-image: url(../img/breadcrumb/about-bg.jpg);
}

.breadcrumb-bg.service-bg {
  background-image: url(../img/breadcrumb/service-bg.jpg);
}

.breadcrumb-bg.service-details {
  height: 550px;
  align-items: center;
  background-position: center center;
  background-image: url(../img/breadcrumb/service-details.jpg);
}

.breadcrumb-bg.team-bg {
  background-image: url(../img/breadcrumb/team-bg.jpg);
}

.breadcrumb-bg.price-bg {
  background-image: url(../img/breadcrumb/price-bg.jpg);
}

.breadcrumb-bg.testimonial-bg {
  background-image: url(../img/breadcrumb/testimonial-bg.jpg);
}

.breadcrumb-bg.faq-bg {
  background-image: url(../img/breadcrumb/faq-bg.jpg);
}

.breadcrumb-bg.process-bg {
  background-image: url(../img/breadcrumb/process-bg.jpg);
}

.breadcrumb-bg.project-bg {
  background-image: url(../img/breadcrumb/project-bg.jpg);
}

.breadcrumb-bg.blog-bg {
  background-image: url(../img/breadcrumb/blog-bg.jpg);
}

.breadcrumb-bg.contact-bg {
  background-image: url(../img/breadcrumb/contact.jpg);
}

.breadcrumb-bg {
  height: 480px;
  background-size: cover;
  background-position: center bottom;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.breadcrumb-bg .breadcrumb-title {
  position: relative;
  z-index: 999;
}
.breadcrumb-bg .breadcrumb-title h1 {
  font-size: 130px;
  font-weight: 400;
  letter-spacing: -5px;
  line-height: 90%;
  color: #fff;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-bg .breadcrumb-title h1 {
    font-size: 100px;
  }
}
@media only screen and (min-width: 540px) and (max-width: 767px) {
  .breadcrumb-bg .breadcrumb-title h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-bg .breadcrumb-title h1 {
    font-size: 60px;
    letter-spacing: -1px;
  }
}

.breadcrumb-tagline span {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 767px) {
  .breadcrumb-tagline span {
    margin-top: 20px;
  }
}

/* 35. Price CSS */
.single-price-item {
  margin-top: 50px;
  transition: 0.3s;
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 30px 10px;
  min-height: 600px;
  margin-bottom: 30px;
}
.single-price-item span.title {
  display: block;
  font-size: 24px;
  font-weight: 400;
  position: relative;
  margin: 20px 0 0;
}
.single-price-item p {
  margin: 40px 0px;
}
.single-price-item .bordered-btn, .single-price-item .white-btn {
  color: #333;
  border-color: #333;
}

.price-box {
  margin-top: 10px;
  border-bottom: 1px solid #ddd;
}
.price-box h3 {
  font-size: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .price-box h3 {
    font-size: 35px;
  }
}
.price-box h3 span {
  font-size: 20px;
}

.price-list {
  margin-top: 40px;
}

.price-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-list ul li {
  display: block;
  margin: 20px 0;
  color: #878787;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
  padding-left: 30px;
}
.price-list ul li i {
  margin-right: 15px;
  position: absolute;
  top: 4px;
  left: 0;
}

#price_page .section-title h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #price_page .section-title h1 {
    font-size: 70px;
    line-height: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #price_page .section-title h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  #price_page .section-title h1 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 540px) and (max-width: 767px) {
  #price_page .section-title h1 {
    font-size: 50px;
    line-height: 60px;
  }
}

#price_page .hero-area-inner {
  padding: 80px 0 40px;
}

#price_page .hero-area-content p {
  padding-left: 400px;
  text-align: justify;
  margin-top: -25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #price_page .hero-area-content p {
    padding-left: 0;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  #price_page .hero-area-content p {
    padding-left: 0;
    margin-top: 50px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  #price_page .section-title h1 br {
    display: none;
  }
}

@media (max-width: 767px) {
  .pricing-section.pb-90 {
    padding-bottom: 0;
  }
}

.cp-custom-accordion .accordion-items {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cp-custom-accordion .accordion-items {
    margin-top: 30px;
  }
}

.cp-custom-accordion .accordion-buttons {
  position: relative;
  width: 100%;
  padding: 20px 0px 30px 20px;
  background-color: #fff;
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  color: #000000;
  border: none;
  border-bottom: 1px solid #ddd;
  padding-top: 0;
  padding-left: 0;
}

.cp-custom-accordion .accordion-buttons span {
  font-size: 16px;
  margin-right: 30px;
  color: rgba(0, 0, 0, 0.5019607843);
}
@media (max-width: 767px) {
  .cp-custom-accordion .accordion-buttons span {
    margin-right: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cp-custom-accordion .accordion-buttons {
    padding: 20px 28px;
    padding-left: 0;
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cp-custom-accordion .accordion-buttons {
    padding: 20px 28px;
    padding-left: 0;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .cp-custom-accordion .accordion-buttons {
    padding-right: 50px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
  }
}
.cp-custom-accordion .accordion-buttons::after {
  position: absolute;
  content: "\f068";
  font-family: "Line Awesome Free";
  top: 0;
  right: 30px;
  font-size: 24px;
  font-weight: 500;
  opacity: 1;
  color: #000000;
}

@media (max-width: 767px) {
  .cp-custom-accordion .accordion-buttons::after {
    top: 0;
    right: 25px;
    font-size: 16px;
  }
}
.cp-custom-accordion .accordion-buttons.collapsed::after {
  content: "\f067";
}

.cp-custom-accordion .collapsed {
  position: relative;
  z-index: 9;
}

.cp-custom-accordion .accordion-body {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.5019607843);
  padding: 20px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cp-custom-accordion .accordion-body {
    padding-right: 25px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cp-custom-accordion .accordion-body {
    padding-right: 30px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cp-custom-accordion .accordion-body {
    padding-right: 0;
    padding-left: 0;
  }
}
.faq-section-bg {
  max-width: calc(100% - 10px);
}

@media (max-width: 767px) {
  .faq-section p br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section h2 br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cp-custom-accordion {
    margin-top: 30px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .cp-custom-accordion {
    margin-top: 30px;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .faq-section .mt-100 {
    margin-top: 50px;
  }
}

.accordion-header {
  margin-bottom: 0;
  display: flex;
  gap: 20px;
}

.accordion-header span {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5019607843);
  position: relative;
  top: 3px;
}

.contact-info-wrap span.sub-title {
  text-transform: uppercase;
}

.contact-info-wrap h1 {
  font-size: 150px;
  line-height: 90%;
  letter-spacing: -5px;
}
@media (max-width: 767px) {
  .contact-info-wrap h1 {
    font-size: 80px;
  }
}

.contact-info-wrap p {
  font-size: 26px;
  line-height: 1.2;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .contact-info-wrap p {
    font-size: 20px;
  }
}

.contact-num {
  margin-top: 60px;
}

.contact-num span.title {
  display: block;
  font-size: 26px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contact-num span.title {
    font-size: 20px;
  }
}

.contact-num span.num {
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .contact-num span.num {
    font-size: 30px;
  }
}

.contact-form-wrap {
  padding-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-wrap {
    padding-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .contact-form-wrap {
    padding-left: 0;
  }
}

.contact-form-wrap input {
  border: none;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  width: 90%;
}

.contact-form-wrap textarea {
  width: 90%;
  margin-bottom: 20px;
}

/*







 */