* {
  margin: 0;
  padding: 0;
  outline: 0;
}
html {
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar {
  width: 10px;
  background-color: #111414;
}
html ::-webkit-scrollbar-thumb {
  background: linear-gradient(160deg, #ed3201, #136d40);
  width: 10px;
  border-radius: 5px;
}
body {
  background: #171a1b;
  font-family: 'Raleway', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Rubik', sans-serif;
  font-family: 'Poppins', sans-serif;
}
:root {
  --green-color: #ed3201;
  --green2-color: #2b9144;
  --yellow-color: #f8d509;
  --dark-color: #1a1d20;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
img,
span,
input,
form,
label,
.btn,
.navbar,
.navbar-brand {
  margin: 0;
  padding: 0;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
p::selection,
a::selection,
ol::selection,
ul::selection,
li::selection,
img::selection,
span::selection,
input::selection,
form::selection,
label::selection,
.btn::selection,
.navbar::selection,
.navbar-brand::selection {
  color: #fff;
  background: #ed3201;
}
ol,
ul,
li {
  list-style-type: none;
}
a,
a:hover {
  text-decoration: none;
  color: #eee;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
h1 {
  font-size: 35px;
  color: #62b5e9;
  padding-bottom: 10px;
}
h2 {
  color: #ffffff;
  font-size: 30px;
  margin-top: 20px;
  padding-bottom: 10px;
}
h3 {
  color: #ddd;
  font-size: 22px;
  margin-top: 20px;
  padding-bottom: 10px;
}
h4 {
  font-size: 30px;
  color: #eee;
  font-weight: 600;
}
h5 {
  font-size: 25px;
  color: #eee;
  font-weight: 600;
}
h6 {
  font-size: 18px;
  color: #eee;
}
p {
  font-size: 15px;
  color: #eee;
  line-height: 1.5;
}
p b {
  color: #fff;
  font-weight: 500;
}
ul li {
  font-size: 15px;
  color: #eee;
  line-height: 1.5;
}
.ptb {
  padding: 70px 0px;
}
.mtb-15 {
  margin: 15px 0;
}
.btn {
  background: linear-gradient(180deg, #ed3201, #bd2e08);
  padding: 7px 18px;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  border: none;
  transition: 1s;
  letter-spacing: 1px;
}
.btn:hover {
  background: linear-gradient(-120deg, #31a541, #329c41);
  border-color: #2285a3;
  color: #fff;
}
.btn:focus {
  background: #2b9e3a;
  color: #fff;
}
.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(6, 17, 33, 0.6);
}
/* --- Preloader ----- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(160deg, #222222, #000000);
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 2px solid rgba(0, 0, 0, 0);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ========= Common Heading = (START) ============================= */
.heading {
  padding-bottom: 40px;
}
.heading p {
  color: #ffffff;
  padding: 3px 20px;
  border-radius: 20px;
  background: #ed3201b5;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.heading h4 span {
  text-transform: uppercase;
  font-size: 42px;
  background: linear-gradient(180deg, #ffffff, #bbebbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.divider {
  position: relative;
  display: inline-block;
  margin: 0px 0;
  width: 250px;
  text-align: center;
}
.divider:before {
  position: absolute;
  left: 0;
  top: -5px;
  height: 4px;
  width: 125px;
  background: linear-gradient(90deg, rgba(68, 171, 186, 0), #bd2e08);
  content: "";
}
.divider:after {
  position: absolute;
  left: 0;
  top: -5px;
  height: 4px;
  width: 125px;
  background: linear-gradient(-90deg, rgba(68, 171, 186, 0), #bd2e08);
  content: "";
}
.heading .divider:after {
  left: auto;
  right: 0;
}
.title {
  position: relative;
  margin-bottom: 30px;
}
.title h6 {
  color: var(--green-color);
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding-bottom: 7px;
}
.title h6::after {
  position: absolute;
  right: -38px;
  top: 12px;
  height: 2px;
  width: 30px;
  content: '';
  background: #ed3201;
}
.title h4 {
  padding: 5px 0;
  margin-bottom: 14px;
}
.divider2::before {
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 4px;
  width: 125px;
  background: linear-gradient(-90deg, rgba(68, 171, 186, 0), #80c451);
  content: "";
  border-radius: 2px;
}
/* ========= Common Heading = (END) ======================= */
/* ========= Scoll Top = (START) ============================ */
.totop {
  position: fixed;
  bottom: 0px;
  right: 10px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: none;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 5px 5px 0 0;
  line-height: 47px;
  font-size: 20px;
  text-align: center;
}
.totop:hover {
  line-height: 40px;
  color: #fff;
  background: #e9530c;
  text-shadow: 0 0 5px #000;
}
/* ========= Scoll Top = (END) ========================= */
/* ========= Top Section = (START) ========================= */
.top_section {
  background: #ed3201;
  padding: 3px 0;
}
.top_section p {
  font-size: 13px;
  font-weight: 300;
  font-family: 'roboto';
  padding-top: 2px;
}
.top_section a i {
  padding-right: 2px;
  color: #ffffff;
}
.top_section a {
  color: #fff;
  font-weight: 400;
  padding-right: 15px;
  letter-spacing: 0.5px;
}
.top_section a:hover {
  text-decoration: underline;
}
.top_section .top_icon {
  text-align: right;
  font-size: 15px;
}
.top_section .top_icon a {
  padding-right: 10px;
}
.top_section .top_icon i {
  transition: 0.2s;
  color: #eee;
}
.top_section .top_icon i:hover {
  color: #fff;
}
/* ========= Top Section = (START) ================================ */
/* ========= Header = (START) ================================ */
.header_section {
  background-color: #00000033;
  transition: 0.3s;
  z-index: 999;
  width: 100%;
  padding: 15px 0;
  position: fixed;
}
.header_section.scrolling {
  background-color: #161414cc;
  backdrop-filter: blur(8px);
  padding: 5px 0;
  top: 0;
  left: 0;
  transition: 0.3s;
  position: fixed;
  border-bottom: 1px solid #ed3201;
}
.header_section img {
  height: 70px;
  transition: 0.4s;
}
/*-- Navigation Menu ---*/
.navbar ul {
  display: flex;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 500;
  color: #eee;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  height: 1.5px;
  bottom: -10px;
  left: 50%;
  background-color: var(--green-color);
  visibility: hidden;
  width: 0px;
  transition: 0.5s;
  opacity: 0;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
  left: 0;
  opacity: 1;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--green-color);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100%);
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #131313e0;
  backdrop-filter: blur(8px);
  box-shadow: 0px 2px 30px rgba(127, 137, 161, 0.3);
  transition: 0.3s;
  border-top: 2px solid var(--green-color);
  border-bottom: 2px solid var(--green-color);
}
.navbar .dropdown ul li {
  min-width: 180px;
}
.navbar .dropdown ul a {
  padding: 10px 15px;
  font-weight: 400;
  font-size: 13px;
  border-bottom: 1px solid #8c978e;
}
.navbar .dropdown a i {
  margin-left: 5px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff;
  background: var(--green-color);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(70%);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    right: -80%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    right: -100%;
  }
}
/* ---- Mobile Navigation ----- */
.toggle_icon {
  font-size: 22px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  color: var(--green-color);
  display: none;
  margin-left: 10px;
}
@media (max-width: 775px) {
  .toggle_icon {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.87);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #eee;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 50px;
  left: 15px;
  background-color: #333;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 5px;
}
.navbar-mobile a {
  padding: 10px 20px;
  color: #eee;
  font-weight: 400;
}
.navbar-mobile a:hover {
  font-weight: 400;
}
.navbar-mobile > ul > li {
  padding: 0;
  background: #333;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  display: none;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #eee;
  background: var(--green-color);
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #333;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 180px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 15px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
  padding: 10px 0px;
}
.navbar-mobile .search_btn {
  display: none;
}
.search_btn {
  margin-left: 20px;
}
.header_btn a {
  text-transform: capitalize;
  padding: 5px 12px;
  border-radius: 3px;
  border: 2px solid #7fc34eb6;
  font-size: 15px;
  margin-left: 30px;
  color: #ddd;
}
.header_btn a:hover {
  background: #ed3201;
  border-color: #ed3201;
  padding: 5px 12px;
  border-radius: 3px;
  border: 2px solid #7fc34eb6;
  font-size: 15px;
  margin-left: 30px;
  color: #fff;
}
.header_btn a:focus {
  text-transform: capitalize;
  background: #4ec36b;
  border-color: #4ec36b;
  padding: 5px 12px;
  border-radius: 3px;
  border: 2px solid #4ec36b;
  font-size: 15px;
  margin-left: 30px;
  color: #fff;
}
/* ========= Header = (End) ================================ */
/* ========= Search Modal = (Start) ========================= */
.modal-content {
  background-color: transparent;
  border: none;
}
.modal-body {
  background: #041119;
  box-shadow: 0px 5px 50px #000;
  padding: 40px 20px 30px 20px;
  border-radius: 30px;
}
.modal-body .btn-close {
  font-size: 20px;
  color: #f85353;
  background: #041119;
  position: absolute;
  right: 5px;
  top: 5px;
  opacity: 0.8;
}
.search_box {
  margin: 30px;
  position: relative;
}
.search_box .form-control {
  background-color: transparent;
  color: #eee;
  height: 50px;
  border: 1px solid #83c9a0;
  border-radius: 30px;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 0px 50px 0px 15px;
}
.search_box .btn {
  position: absolute;
  top: 7px;
  right: 10px;
  height: 35px;
  width: 35px;
  padding: 0;
  border-radius: 50%;
  text-align: center;
}
/* ========= Search Modal = (End) ========================= */
/* ========= Banner = (START) =========================== */
.banner_section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.slide1 {
  background: url(../images/slide/slide-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide2 {
  background: url(../images/slide/slide-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide3 {
  background: url(../images/slide/slide-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner_section .carousel-control-prev {
  width: 10%;
  left: -20px;
}
.banner_section .carousel-control-next {
  width: 10%;
  right: -20px;
}
.banner_section .carousel-control-next-icon,
.banner_section .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 1;
  width: auto;
  height: auto;
  color: #fff;
  margin-bottom: 10px;
}
.banner_section .carousel-indicators li {
  cursor: pointer;
  background: #eee;
  overflow: hidden;
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  opacity: 0.3;
  margin-bottom: 20px;
  transition: 0.5s;
}
.banner_section .carousel-indicators li.active {
  opacity: 1;
  background: #89ebaf;
  width: 20px;
  height: 10px;
}
.banner_section .carousel-item {
  padding: 150px 0 100px;
}
.banner_text {
  padding: 100px 0;
}
.banner_text h6 {
  color: #ed3201;
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 500;
  text-shadow: 1px 2px 2px #11111148;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}
.banner_text h6::after {
  position: absolute;
  right: -38px;
  top: 20px;
  height: 2px;
  width: 30px;
  content: '';
  background: #ed3201;
}
.banner_text h2 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 600;
  padding-bottom: 30px;
  text-shadow: 1px 2px 2px #1111114f;
  letter-spacing: 0.5px;
}
.banner_text p {
  color: #ddd;
  letter-spacing: 0.5px;
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}
.banner_text p span {
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
}
.banner_text .btn {
  margin-top: 30px;
  padding: 8px 20px;
  font-size: 18px;
}
.banner_text .btn i {
  font-size: 14px;
}
.banner_img img {
  padding-top: 30px;
  animation-name: imghover;
  animation-duration: 5s;
  animation-iteration-count: 30;
}
@keyframes imghover {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* ========= Banner = (End) ================================ */
/* ====  about = (Start) ================================ */
.about_img {
  position: relative;
}
.about_img img {
  border-radius: 10px;
  position: relative;
  z-index: 10;
}
.about_img span {
  position: absolute;
  left: -15px;
  top: -15px;
  height: 100%;
  width: 100%;
  content: '';
  z-index: 9;
  background: var(--green-color);
  border-radius: 10px;
  opacity: 0.7;
}
.about_text {
  padding: 5px 10px;
}
.about_text h6 {
  color: var(--green-color);
  position: relative;
  display: inline-block;
  font-size: 20px;
}
.about_text h6::after {
  position: absolute;
  right: -38px;
  top: 10px;
  height: 2px;
  width: 30px;
  content: '';
  background: #ed3201;
}
.about_text h4 {
  font-size: 22px;
  padding: 5px 0;
}
.about_text p {
  font-size: 15px;
  line-height: 1.5;
  padding-bottom: 15px;
}
.about_text a {
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 3px;
}
.about_text ul li {
  padding-bottom: 8px;
  font-size: 15px;
  color: #ddd;
}
.about_text ul li i {
  color: var(--green-color);
  padding-right: 4px;
}
.ceo_info {
  margin-top: 25px;
  padding: 15px;
  background: #0000002f;
  border-radius: 10px;
}
.ceo_info .ceo_img {
  height: 160px;
  width: 160px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #539463;
  float: left;
  margin-right: 15px;
}
.ceo_info .ceo_img img {
  border-radius: 10px;
}
.ceo_info .ceo_text {
  padding-top: 30px;
}
.ceo_info .ceo_text p {
  padding: 8px 0;
  color: #b6e0ab;
}
.ceo_info .ceo_text a {
  margin-top: 15px;
}
.ceo_info .ceo_text a i {
  height: 30px;
  width: 30px;
  background: #222;
  text-align: center;
  line-height: 30px;
  margin-right: 8px;
  border-radius: 3px;
  transition: 0.3s;
}
.ceo_info .ceo_text a i:hover {
  background: #20863a;
}
/* ==== about  = (End) ================================ */
/* ====  services = (Start) ================================ */
.services_section {
  background: url(../images/services/service-bg.png);
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.services_overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #151718a8;
}
.services_items {
  margin: 15px 2px;
  padding: 15px;
  background: #282c2c;
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.349);
  transition: 0.3s;
}
.services_items:hover {
  -webkit-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 15px 0px rgba(87, 230, 130, 0.281);
  transform: translateY(-5px);
}
.services_items:hover .services_img img {
  transform: scale(1.1);
  overflow: hidden;
}
.services_img {
  overflow: hidden;
  border-radius: 10px;
}
.services_img img {
  border-radius: 10px;
  overflow: hidden;
  transition: 2s;
}
.services_text {
  padding: 10px 2px 0;
}
.services_text h4 {
  font-size: 22px;
  padding: 3px 0 7px;
  margin-bottom: 5px;
  position: relative;
}
.services_text h4::after {
  position: absolute;
  left: 1px;
  bottom: 0;
  height: 2px;
  width: 50px;
  content: '';
  background: #92be72;
  border-radius: 2px;
}
.services_text p {
  padding: 10px 0;
  color: #ddd;
}
.services_text .btn {
  padding: 5px 10px;
  font-size: 14px;
}
/* ====  services = (End) ================================ */
/* ====  Counter = (Start) ================================ */
.counter_up {
  background: url(../images/background/counter-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  position: relative;
  border-radius: 0 100px 100px 0;
}
.counter_overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: '';
  background: #2a473670;
  border-radius: 0 100px 100px 0;
}
.counter_items {
  text-align: center;
  background: #191f1bea;
  border: 3px solid #269c65;
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
}
.counter_items img {
  height: 60px;
}
.counter_items h3 {
  font-size: 35px;
  color: #d12b00;
  padding: 10px 0 5px;
}
.counter_items h3 span {
  font-size: 45px;
  font-family: 'Rubik';
  color: #d12b00;
  margin-right: 3px;
}
.counter_items h6 {
  color: #eee;
}
.counter_progress {
  padding: 30px 200px 20px 20px;
}
.progress {
  background: #333;
}
.progress-item {
  margin-bottom: 20px;
}
.progress-title {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 5px;
  color: #ddd;
}
.progress-bar {
  box-shadow: none;
  text-align: right;
  position: relative;
  overflow: visible;
  border-radius: 5px;
}
.progress {
  height: 10px;
  box-shadow: none;
  border-radius: 5px;
  overflow: visible;
}
.progress .progress-percent {
  font-size: 10px;
  background-color: #ad2603;
  position: absolute;
  text-align: center;
  top: -25px;
  right: -35px;
  height: 18px;
  line-height: 18px;
  width: 35px;
  border-radius: 3px;
  color: #fff;
  letter-spacing: 0.5px;
}
.progress .progress-percent::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  border-top: 6px solid #ad2603;
  border-right: 8px solid transparent;
}
.progress_1 {
  animation: progress_1 2s;
  background-color: #dfb33b;
}
.progress_2 {
  animation: progress_2 2s;
  background-color: #df3b3b;
}
.progress_3 {
  animation: progress_3 2s;
  background-color: #3b90df;
}
.progress_4 {
  animation: progress_4 2s;
  background-color: #be3bdf;
}
.progress_5 {
  animation: progress_5 2s;
  background-color: #2bad56;
}
@keyframes progress_1 {
  0% {
    width: 0%;
  }
  100% {
    width: 96%;
  }
}
@keyframes progress_2 {
  0% {
    width: 0%;
  }
  100% {
    width: 95%;
  }
}
@keyframes progress_3 {
  0% {
    width: 0%;
  }
  100% {
    width: 93%;
  }
}
@keyframes progress_4 {
  0% {
    width: 0%;
  }
  100% {
    width: 97%;
  }
}
@keyframes progress_5 {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
/* ====  Counter = (End) ================================ */
/* ====  portfolio = (Start) ================================ */
.portfolio_menu {
  text-align: center;
  margin-bottom: 20px;
}
.portfolio_menu ul li {
  display: inline-block;
  list-style: none;
  padding: 4px 15px;
  margin: 0px 5px;
  font-weight: 400;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5 ease;
  font-size: 16px;
  letter-spacing: 0.5px;
  background: #333;
  color: #ddd;
}
.portfolio_menu ul li:hover {
  background: #b93f06;
  color: #fff;
}
.portfolio_menu ul li.active {
  background: #b93f06;
  color: #fff;
}
.portfolio_item {
  margin: 12px 0;
}
.portfolio_venobox img {
  opacity: 0.9;
  transition: 0.3s;
  border-radius: 5px;
  border: 2px solid #0e0d0d00;
}
.portfolio_venobox img:hover {
  border: 2px solid #4ac983;
  transform: translateY(-3px);
  opacity: 1;
}
/* ==== portfolio  = (End) ================================ */
/* ====  Work = (Start) ================================ */
.work_section {
  background: #198a4409;
}
.work_img img {
  padding-top: 20px;
  width: 100%;
  animation-name: imghover;
  animation-duration: 5s;
  animation-iteration-count: 30;
}
@keyframes imghover {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.work_text p {
  font-size: 16px;
  line-height: 1.5;
}
.step_items {
  padding: 15px;
  background: #00000021;
  border: 0.5px solid #222;
  border-radius: 5px;
  margin: 14px 0;
}
.step_items:hover {
  border: 0.5px solid #3d6944;
}
.step_items span {
  color: #ffffff;
  padding: 4px 20px;
  border-radius: 3px;
  background: #ed3201b5;
  font-size: 18px;
  display: inline-block;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.step_items p {
  font-size: 14px;
  color: #ddd;
  padding: 8px 0;
  line-height: 1.6;
}
.work_getstart {
  padding: 20px 15px;
  background: #00000021;
  border: 0.5px solid #222;
  border-radius: 5px;
  margin: 10px 5px;
}
.work_getstart:hover {
  border: 0.5px solid #3d6944;
}
.work_getstart p {
  font-size: 16px;
  color: #e6f8e7;
}
.work_getstart .btn {
  font-size: 15px;
  margin-top: 35px;
  padding: 8px 20px;
}
/* ====  Work = (End) ================================ */
/* ====  Video = (Start) ================================ */
.video_section {
  background: url(../images/Background/video-bg.html);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  padding: 100px 0;
}
.video_overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(18, 21, 24, 0.911);
}
.video_content {
  position: relative;
}
.video_content p {
  margin-bottom: 25px;
  font-size: 16px;
  color: #baeeab;
}
.video_content .btn {
  background: #2a834c;
  padding: 8px 20px;
}
.video_content h5 {
  color: #eee;
  padding-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.6;
  font-size: 35px;
  margin-top: 40px;
}
.video_content .venobox i {
  color: #ddd;
  height: 60px;
  width: 60px;
  line-height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(238, 238, 238, 0.65);
  font-size: 22px;
}
.video_content .venobox i:hover {
  background: #d40d0d;
  border-color: #b90606;
}
/* ==== Video  = (End) ================================ */
/* ========= Choose = (Start) ================================ */
.choose_item {
  padding: 30px 5px;
  text-align: center;
  margin: 15px 0px;
  border: 1px solid #555;
  border-radius: 10px;
  cursor: pointer;
}
.choose_item:hover {
  background: rgba(0, 0, 0, 0.13);
  box-shadow: 2px 4px 8px #000000;
  border: 1px solid #ed3201;
}
.choose_item img {
  height: 60px;
  margin: 0 auto;
}
.choose_item h4 {
  font-weight: bolder;
  display: inline-block;
  background: linear-gradient(94deg, #ed3201 0%, #ed320199
   40%, #ed3201 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
/* ========= Choose = (End) ================================ */
/* ==== testimonials  = (Start) ================================ */
.testimonial_section {
  background: url(../images/background/testmonial-bg.jpg);
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.testimonial_section .overlay {
  background: #171a1bf5;
}
.testimonial_text h4 {
  padding-top: 15px;
  font-size: 42px;
  background: linear-gradient(-90deg, #ffffff, #bbebbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonial_items {
  padding: 20px;
  background: linear-gradient(160deg, #2c3d1f, #172b21);
  border-radius: 10px;
  position: relative;
  margin-top: 20px;
}
.testimonial_items span i {
  color: #df7777;
}
.testimonial_items h6 {
  padding-top: 10px;
}
.testimonial_items p {
  padding: 8px 0;
  line-height: 1.6;
  font-size: 14px;
}
.testimonial_slide .left_arrow {
  position: absolute;
  right: 70px;
  bottom: 30px;
  height: 40px;
  width: 40px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  transition: 0.2s;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.068);
  z-index: 999;
  border-radius: 50%;
  border: 1px solid #666666;
  z-index: 99;
}
.testimonial_slide .left_arrow:hover {
  background: #dd2b03;
  color: #fff;
  border-color: #5e7a59;
}
.testimonial_slide .right_arrow {
  position: absolute;
  right: 20px;
  bottom: 30px;
  height: 40px;
  width: 40px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  transition: 0.2s;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.068);
  z-index: 999;
  border-radius: 50%;
  border: 1px solid #666666;
  z-index: 99;
}
.testimonial_slide .right_arrow:hover {
  background: #dd2b03;
  color: #fff;
  border-color: #5e7a59;
}
.quote i {
  position: absolute;
  right: 20px;
  top: -20px;
  height: 60px;
  width: 55px;
  text-align: center;
  line-height: 60px;
  font-size: 40px;
  color: #fff;
  background: #dd2b03;
}
.testimonial_img {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #5e7a59;
}
.testimonial_img img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  padding: 5px;
  border: 1px solid #ed3201;
}
.testimonial_img h6 {
  padding-top: 10px;
  padding-bottom: 3px;
}
.testimonial_img p {
  color: #ddd;
}
/* ====  testimonials = (End) ================================ */
/* ==== Blog  = (Start) ================================ */
.blog_section {
  overflow: hidden;
}
.blog_items {
  padding: 15px;
  background: #101213;
  border-radius: 5px;
  transition: 0.3s;
  margin: 10px 15px;
}
.blog_items:hover {
  -webkit-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 15px 0px rgba(87, 230, 130, 0.281);
  transform: translateY(-5px);
}
.blog_page .blog_items {
  margin: 12px 0;
}
.blog_img {
  position: relative;
}
.blog_img img {
  height: 250px;
  width: 100%;
  border-radius: 5px;
}
.blog_img span {
  position: absolute;
  left: 15px;
  bottom: -20px;
  height: 60px;
  width: 55px;
  text-align: center;
  color: #fff;
  background: #dd2b03;
  font-size: 16px;
  padding-top: 10px;
  line-height: 1.1;
  border-radius: 5px;
}
.blog_img span b {
  font-size: 20px;
  font-weight: 500;
}
.blog_text {
  padding: 25px 3px 5px;
}
.blog_text h4 {
  font-size: 22px;
  font-weight: 500;
}
.blog_text ul {
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  margin: 10px 0;
}
.blog_text ul li {
  display: inline-block;
  color: #aaa;
  font-size: 13px;
  padding: 0px 12px 0px 2px;
  margin: 3px 0;
  margin-right: 10px;
  border-right: 1px solid #444;
}
.blog_text ul li i {
  padding-right: 4px;
}
.blog_text ul li:last-child {
  border: none;
}
.blog_text p {
  padding: 10px 0;
  color: #cfcfcf;
  line-height: 1.5;
}
.blog_text a {
  color: #ed3201;
  font-size: 14px;
}
.blog_text a:hover i {
  margin-left: 5px;
  transition: 0.3s;
}
.blog_slide .left_arrow {
  position: absolute;
  left: 46%;
  bottom: -50px;
  height: 40px;
  width: 40px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  transition: 0.2s;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.068);
  z-index: 999;
  border-radius: 50%;
  border: 1px solid #666666;
  z-index: 99;
}
.blog_slide .left_arrow:hover {
  background: #dd2b03;
  color: #fff;
  border-color: #5e7a59;
}
.blog_slide .right_arrow {
  position: absolute;
  right: 46%;
  bottom: -50px;
  height: 40px;
  width: 40px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  transition: 0.2s;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.068);
  z-index: 999;
  border-radius: 50%;
  border: 1px solid #666666;
}
.blog_slide .right_arrow:hover {
  background: #dd2b03;
  color: #fff;
  border-color: #5e7a59;
}
/* ====  Blog = (End) ================================ */
/* ========= Contact = (Start) ================================ */
.contact_text {
  padding: 10px;
}
.contact_text p {
  font-size: 16px;
  font-weight: bolder;
  display: inline-block;
  background: linear-gradient(180deg, #ed3201, #bd2e08);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.contact_text h4 {
  color: #ebebeb;
  padding-bottom: 10px;
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: 500;
  position: relative;
  font-size: 35px;
}
.contact_text h4::after {
  position: absolute;
  height: 3px;
  width: 150px;
  bottom: 0;
  left: 0;
  content: '';
  background: linear-gradient(-90deg, #7fc34e00, #bd2e08);
  border-radius: 2px;
}
.contact_text h6 {
  color: #bbb;
  line-height: 1.6;
  font-weight: 300;
  width: 85%;
  padding-bottom: 25px;
  font-size: 16px;
}
.contact_text h5 {
  color: #ddd;
  line-height: 1.6;
  font-weight: 400;
  padding-bottom: 8px;
  font-size: 18px;
}
.social_link {
  margin-bottom: 30px;
}
.contact_text .social_link a i {
  font-size: 15px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: #333;
  border: none;
  border-radius: 3px;
  margin-right: 5px;
}
.contact_text .social_link a i:hover {
  background: var(--green2-color);
  color: #fff;
}
.contact_text ul li {
  margin-bottom: 20px;
}
.contact_text a {
  color: #eee;
  margin-bottom: 15px;
  font-size: 15px;
}
.contact_text a:hover {
  color: #bd2e08;
}
.contact_text a:hover i {
  background: #bd2e08;
  color: #fff;
  border-color: #bd2e08;
}
.contact_text a i {
  height: 35px;
  width: 35px;
  border: 0.5px solid #aaa;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
}
.contact_text iframe {
  height: 250px;
  width: 100%;
  border-radius: 5px;
  filter: invert(90%);
}
.contact_form {
  padding: 30px;
  background: #101417;
  border-radius: 10px;
  margin: 10px 25px;
}
.contact_form h4 {
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(180deg, #f0f7eb, #adceb2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-size: 30px;
  margin-bottom: 20px;
}
.contact_form h4::after {
  position: absolute;
  height: 3px;
  width: 150px;
  bottom: -10px;
  left: 0;
  content: '';
  background: linear-gradient(-90deg, #7fc34e00, #bd2e08);
  border-radius: 2px;
}
.contact_form .custom_input {
  padding-top: 10px;
  padding-bottom: 5px;
  position: relative;
  margin-bottom: 4px;
}
.contact_form .custom_input textarea {
  font-size: 15px;
  padding: 10px 10px;
  display: block;
  width: 100%;
  height: 120px;
  border: 0.5px solid #505050;
  font-weight: 400;
  color: #ddd;
  border-radius: 3px;
  background: #14191d;
  letter-spacing: 0.5px;
}
.contact_form .custom_input input {
  font-size: 15px;
  padding: 0px 10px;
  display: block;
  width: 100%;
  height: 45px;
  border: 0.5px solid #505050;
  font-weight: 400;
  color: #ddd;
  border-radius: 3px;
  background: #14191d;
  letter-spacing: 0.5px;
}
.contact_form .custom_input input::placeholder {
  visibility: hidden;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.contact_form .custom_input textarea::placeholder {
  visibility: hidden;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.contact_form .custom_input input:focus {
  outline: none;
  border: 1px solid #3d7244;
  box-shadow: none;
  background: #14191d;
}
.contact_form .custom_input textarea:focus {
  outline: none;
  border: 1px solid #3d7244;
  box-shadow: none;
  background: #14191d;
}
.contact_form .custom_input input:focus::placeholder {
  visibility: visible;
  color: #aaa;
}
.contact_form .custom_input label {
  color: #aaa;
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 20px;
  padding: 0px 5px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  background: #14191d;
}
.contact_form .custom_input input:focus ~ label,
.contact_form .custom_input input:valid ~ label {
  top: -2px;
  font-size: 12px;
  color: #69b974;
  background: #101417;
  font-weight: 400;
  padding: 0px 5px;
  border-radius: 3px;
}
.contact_form .custom_input textarea:focus ~ label,
.contact_form .custom_input textarea:valid ~ label {
  top: -2px;
  font-size: 12px;
  color: #69b974;
  background: #101417;
  font-weight: 400;
  padding: 0px 5px;
  border-radius: 3px;
}
.contact_form .custom_input .btn {
  font-size: 16px;
  padding: 6px 25px;
  text-transform: uppercase;
}
.contact_info_section {
  padding-bottom: 70px;
}
.contact_info_item {
  padding: 20px 20px 30px;
  text-align: center;
  border: 0.5px solid #333;
  border-radius: 5px;
  transition: 0.3s;
  background: #00000042;
  margin: 12px 0;
}
.contact_info_item:hover {
  border-color: var(--green-color);
}
.contact_info_item i {
  font-size: 40px;
  color: var(--green-color);
}
.contact_info_item h6 {
  font-weight: 500;
  padding: 6px 0 20px;
  text-transform: uppercase;
}
.contact_info_item a {
  color: #aaa;
  font-weight: 300;
  font-size: 15px;
}
.contact_info_item a:hover {
  color: var(--green-color);
}
/* ========= Contact = (End) ================================ */
/* ========= Brand  = (End) ================================ */
.brand_section {
  padding: 10px 0;
  text-align: center;
  background: #00000023;
  overflow: hidden;
}
.brand_section .fas {
  visibility: hidden;
}
.brand_section img {
  max-width: 50%;
  transition: all 0.1s ease-in-out;
  display: inline-block;
  opacity: 0.9;
  cursor: move;
}
.brand_section img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .brand_section img {
    max-width: 40%;
  }
}
/* =========  Brand = (End) ================================ */
/* ==== Footer  = (Start) ================================ */
.footer_section {
  background: url(../images/background/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 2px solid #ed3201;
}
.footer_overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #141416e3;
}
.footer_content {
  margin: 20px 0;
}
.footer_content .footer_logo {
  height: 70px;
}
.footer_content p {
  color: #dbd9d9;
  padding: 25px 0;
  font-size: 14px;
  width: 90%;
}
.footer_content .social_icon a i {
  color: #fff;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
  opacity: 0.8;
}
.footer_content .social_icon a i:hover {
  transform: translateY(-5px);
  opacity: 1;
}
.footer_content .social_icon a .fa-instagram {
  background: linear-gradient(49deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}
.footer_content h6 {
  color: #ed3201;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 25px;
  margin-left: 3px;
}
.footer_content h6::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  border-radius: 2px;
  content: '';
  background: linear-gradient(-40deg, rgba(54, 99, 152, 0.22), #ed3201);
}
.footer_content ul li {
  margin-bottom: 10px;
}
.footer_content ul li a {
  color: #ddd;
  font-weight: 300;
  font-size: 14px;
}
.footer_content ul li a:hover {
  color: #ed3201;
  margin-left: 3px;
}
.footer_content ul li a i {
  color: #ed3201;
  font-size: 13px;
}
.contact_info i {
  color: #fff;
  height: 40px;
  width: 35px;
  line-height: 40px;
  text-align: center;
  background: #2b2e2d;
  margin-top: 6px;
  border-radius: 3px;
  float: left;
  margin-right: 8px;
}
.contact_info .text span {
  color: #ed3201;
  font-size: 12px;
}
.contact_info .text p {
  padding: 0px 0 3px;
  color: #eee;
  font-size: 14px;
}
.contact_info .text p a {
  display: inline-block;
}
.contact_info .text p a:hover {
  margin: 0;
  color: #fff;
}
/* ====  Footer = (End) ================================ */
/* ==== bottom  = (Start) ================================ */
.bottom_section {
  background: #0c0c0c;
  padding: 15px 0;
}
.bottom_section p {
  color: #ddd;
  font-size: 15px;
}
.bottom_section p span {
  color: #ed3201;
  padding: 0px 5px;
}
/* ====  bottom = (End) ================================ */
/* ==== breadcrumb  = (Start) ================================ */
.breadcrumb_section {
  background: url(../images/background/page-title.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 160px 0 80px;
}
.breadcrumb_section h1 {
  padding-bottom: 30px;
  font-size: 50px;
  color: #fff;
  margin: 0;
}
.breadcrumb_section p {
  font-size: 15px;
}
.breadcrumb_section p .bi-chevron-double-right {
  padding: 0px 4px;
}
.breadcrumb_section p a:hover {
  text-decoration: underline;
}
/* ====  breadcrumb = (End) ================================ */
/* ====  quote = (Start) ================================ */
.quote_section {
  padding: 50px 0;
  background: url(../images/background/quote-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.quote_overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #0e2b1b69;
}
.quote_text h4 {
  font-size: 35px;
  padding-bottom: 10px;
}
.quote_text p {
  font-size: 18px;
}
.quote_text a {
  font-weight: 600;
}
.quote_text a:hover {
  text-decoration: underline;
}
.quote_btn .btn {
  padding: 10px 22px;
  margin-top: 20px;
}
/* ====  quote = (End) ================================ */
/* ==== service_details  = (Start) ================================ */
.service_details_section {
  padding: 30px 0 70px;
}
.service_details_content {
  padding: 10px;
}
.service_details_content h4 {
  font-size: 26px;
  padding: 8px 0;
}
.service_details_content p {
  padding: 8px 0;
  line-height: 1.5;
}
.service_details_img {
  height: 300px;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.service_details_sidebar {
  padding: 15px;
  border: 3px solid #359e6462;
  border-radius: 5px;
  margin: 10px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.service_details_sidebar h6 {
  font-size: 22px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.service_details_sidebar h6::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 60px;
  content: '';
  background: var(--green-color);
}
.service_details_sidebar ul li {
  padding: 8px 0;
}
.service_details_sidebar ul li a {
  font-size: 14px;
  color: #aaa;
}
.service_details_sidebar ul li a:hover {
  color: var(--green-color);
  padding-left: 3px;
}
.service_details_sidebar h5 {
  font-size: 20px;
  padding-bottom: 10px;
  padding-top: 30px;
}
.service_details_sidebar .social_link a i {
  font-size: 15px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: #333;
  border: none;
  border-radius: 3px;
  margin-right: 5px;
}
.service_details_sidebar .social_link a i:hover {
  background: var(--green2-color);
  color: #fff;
}
.services_details_img_slider {
  margin: 0 40px 0px 0;
  display: block;
  width: 500px;
  float: left;
}
.services_details_img_slider .left_arrow {
  position: absolute;
  left: 3%;
  top: 50%;
  color: #fff;
  font-size: 22px;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  z-index: 999;
}
.services_details_img_slider .left_arrow:hover {
  color: #dd2b03;
}
.services_details_img_slider .right_arrow {
  position: absolute;
  right: 3%;
  top: 50%;
  color: #fff;
  font-size: 22px;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  z-index: 999;
}
.services_details_img_slider .right_arrow:hover {
  color: #dd2b03;
}
.services_details_img_slider .services_details_img {
  padding-right: 0px;
}
.services_details_img {
  padding-bottom: 20px;
  padding-right: 40px;
  display: block;
  width: 500px;
  float: left;
}
.services_details_text p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  padding: 3px 0 10px;
}
.services_details_text ul {
  padding-top: 10px;
  display: block;
}
.services_details_text ul li {
  padding-bottom: 6px;
  list-style: circle;
}
/* ==== service_details  = (End) ================================ */
/* ====  Blog_post = (Start) ================================ */
.blog_post_section {
  padding: 30px 0 70px;
}
.blog_post_content {
  padding: 10px;
}
.blog_post_content h4 {
  font-size: 26px;
  padding: 8px 0;
  font-weight: 500;
  line-height: 1.5;
}
.blog_post_content p {
  padding: 8px 0;
  line-height: 1.5;
}
.blog_post_img {
  height: 300px;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.blog_post_date {
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  margin: 10px 0;
  padding: 8px 2px;
}
.blog_post_date li {
  display: inline-block;
  color: #aaa;
  font-size: 13px;
  padding: 0px 12px 0px 2px;
  margin: 3px 0;
  margin-right: 10px;
  border-right: 1px solid #444;
}
.blog_post_date li i {
  padding-right: 4px;
}
.blog_post_date li:last-child {
  border: none;
}
.blog_post_sidebar {
  padding: 15px;
  border: 3px solid #359e6462;
  border-radius: 5px;
  margin: 10px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.blog_post_sidebar h6 {
  font-size: 22px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.blog_post_sidebar h6::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 60px;
  content: '';
  background: var(--green-color);
}
.blog_post_sidebar ul li {
  padding: 8px 0;
}
.blog_post_sidebar ul li a {
  font-size: 14px;
  color: #aaa;
}
.blog_post_sidebar ul li a:hover {
  color: var(--green-color);
  padding-left: 3px;
}
.blog_post_sidebar h5 {
  font-size: 20px;
  padding-bottom: 10px;
  padding-top: 30px;
}
.blog_post_sidebar .social_link a i {
  font-size: 15px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: #333;
  border: none;
  border-radius: 3px;
  margin-right: 5px;
}
.blog_post_sidebar .social_link a i:hover {
  background: var(--green2-color);
  color: #fff;
}
.recent_blog_post {
  padding: 7px 10px;
  background: #0000002f;
  border: 0.5px solid #333;
  border-radius: 3px;
  margin-bottom: 10px;
  transition: 0.3s;
}
.recent_blog_post:hover {
  border-color: var(--green-color);
}
.recent_blog_post .recent_blog_post_img img {
  height: 70px;
  width: 80px;
  border-radius: 3px;
}
.recent_blog_post .recent_blog_post_text h5 {
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 6px;
}
.recent_blog_post .recent_blog_post_text p {
  font-size: 11px;
}
/* ==== Blog_post  = (End) ================================ */
/* ====  Get Quote = (Start) ================================ */
.get_quote_form {
  padding: 30px;
  background: #101417;
  border-radius: 10px;
  margin: 10px 25px;
}
.get_quote_form h4 {
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(180deg, #f0f7eb, #adceb2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-size: 30px;
  margin-bottom: 20px;
}
.get_quote_form h4::after {
  position: absolute;
  height: 3px;
  width: 150px;
  bottom: -10px;
  left: 0;
  content: '';
  background: linear-gradient(-90deg, #7fc34e00, #bd2e08);
  border-radius: 2px;
}
.get_quote_form label {
  color: #aaa;
  padding-bottom: 4px;
  padding-top: 15px;
}
.get_quote_form textarea {
  font-size: 15px;
  padding: 10px 10px;
  display: block;
  width: 100%;
  height: 150px;
  border: 0.5px solid #505050;
  font-weight: 400;
  color: #ddd;
  border-radius: 3px;
  background: #14191d;
  letter-spacing: 0.5px;
}
.get_quote_form textarea:hover {
  background: #14191d;
  color: #fff;
  border-color: var(--green2-color);
}
.get_quote_form textarea:focus {
  background: #14191d;
  color: #fff;
  border-color: var(--green2-color);
}
.get_quote_form input {
  font-size: 15px;
  padding: 0px 10px;
  display: block;
  width: 100%;
  height: 45px;
  border: 0.5px solid #505050;
  font-weight: 400;
  color: #ddd;
  border-radius: 3px;
  background: #14191d;
  letter-spacing: 0.5px;
}
.get_quote_form input:hover {
  background: #14191d;
  color: #fff;
  border-color: var(--green2-color);
}
.get_quote_form input:focus {
  background: #14191d;
  color: #fff;
  border-color: var(--green2-color);
}
.get_quote_form select {
  font-size: 15px;
  padding: 0px 10px;
  display: block;
  width: 100%;
  height: 45px;
  border: 0.5px solid #505050;
  font-weight: 400;
  color: #ddd;
  border-radius: 3px;
  background: #14191d;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.get_quote_form select:hover {
  background: #14191d;
  color: #fff;
  border-color: var(--green2-color);
}
.get_quote_form select:focus {
  background: #14191d;
  color: #fff;
  border-color: var(--green2-color);
}
.get_quote_form .form-check-input {
  height: 20px;
  width: 16px;
  float: left;
}
.get_quote_form .form-check-label {
  font-size: 14px;
  padding: 4px 0 0 8px;
}
.get_quote_form .btn {
  padding: 8px 22px;
  font-size: 15px;
  margin-top: 20px;
}
.file_upload {
  position: relative;
}
.file_upload input {
  line-height: 45px;
}
.file_upload span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 110px;
  background: #202124;
  text-align: center;
  border: 0.5px solid #505050;
  border-radius: 3px;
  border-right: 0;
  color: #ddd;
  line-height: 45px;
  font-size: 13px;
}
.file_upload span i {
  color: #89e2b1;
  padding-right: 3px;
}
/* ==== Get Quote  = (End) ================================ */
/* ==== Faq  = (Start) ================================ */
.faq {
  margin-left: 15px;
}
.faq .accordion-item {
  background: #222222;
  margin-bottom: 10px;
}
.faq .accordion-item p {
  font-size: 16px;
  padding-bottom: 8px;
  color: #ffffff;
}
.accordion-button {
  background: #00000017;
  color: #ddd;
  border: 0.5px solid #00000017;
}
.accordion-button:hover {
  color: #ffffff;
  font-weight: 400;
  background: var(--green2-color);
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: #ffffff;
  font-weight: 400;
  background: var(--green2-color);
  box-shadow: none;
}
.accordion-button::after {
  background-image: url(../images/down-arrow.png);
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../images/down-arrow.png);
  transform: rotate(180deg);
}
.accordion-body {
  background: #113b261c;
  border: 0.5px solid var(--green2-color);
}
/* ====  Faq = (End) ================================ */
/* ====   = (Start) ================================ */
/* ====   = (End) ================================ */
/* ====   = (Start) ================================ */
/* ====   = (End) ================================ */
