@import url(https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&amp;display=swap);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

span {
  display: inline-block;
}

a {
  display: inline-block;
  text-decoration: none;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

a,
button {
  transition: all 0.3s ease-out 0s;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
  color: #151515;
  line-height: normal;
  font-family: "Nunito Sans", sans-serif;
}

::-moz-selection {
  background-color: #FF714A;
  color: #ffffff;
}

::selection {
  background-color: #FF714A;
  color: #ffffff;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #616161;
  line-height: 180%;
}

.theme_btn {
  padding: 18px 45px;
  border-radius: 5px;
  color: #ffffff;
  background: #FF714A;
}
.theme_btn:hover {
  background: #151515;
}
.theme_btn.black_btn {
  background: #151515;
}
.theme_btn.black_btn:hover {
  background: #FF714A;
}
.theme_btn.btn_border {
  background: transparent;
  color: #FF714A;
  border: 1px solid #FF714A;
}
.theme_btn.btn_border:hover {
  background: #FF714A;
  color: #ffffff;
}

.pt_120 {
  padding-top: 120px;
}
@media (max-width: 991.98px) {
  .pt_120 {
    padding-top: 80px;
  }
}

.py_120 {
  padding: 120px 0;
}
@media (max-width: 991.98px) {
  .py_120 {
    padding: 80px 0;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media (max-width: 991.98px) {
  .mt_120 {
    margin-top: 80px;
  }
}

.section_title .sub_title {
  color: #FF714A;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section_title .title {
  display: inline-block;
  font-weight: 600;
  font-size: 32px;
  line-height: 50px;
  position: relative;
}
@media (max-width: 575.98px) {
  .section_title .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.line-limit-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical;
}

.line-limit-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
}

.line-limit-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
}

.line-limit-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical;
}

.line-limit-6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6 !important;
  -webkit-box-orient: vertical;
}

.line-limit-7 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7 !important;
  -webkit-box-orient: vertical;
}

.line-limit-8 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8 !important;
  -webkit-box-orient: vertical;
}

.line-limit-9 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 9 !important;
  -webkit-box-orient: vertical;
}

.line-limit-10 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 10 !important;
  -webkit-box-orient: vertical;
}

.clr {
  clear: both;
}

.iti {
  width: 100%;
}

.content ol, .content ul {
  padding-left: 40px;
  line-height: 30px;
}

.header_area {
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #ffffff;
}
.header_area .main_logo {
  background: #ffffff;
  padding: 25px;
}
@media (max-width: 1399.98px) {
  .header_area .main_logo {
    padding: 25px 10px;
  }
}
.header_area .main_logo img {
  height: 70px;
}
.header_area .menu_content .top_header {
  padding-left: 25px;
  background: #151515;
}
.header_area .menu_content .top_header .contact_info ul li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 44px;
  position: relative;
}
.header_area .menu_content .top_header .contact_info ul li a:hover {
  color: #FF714A;
}
.header_area .menu_content .top_header .contact_info ul li a::before {
  content: "";
  position: absolute;
  right: -25px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all linear 0.2s;
}
.header_area .menu_content .top_header .social_info ul li a {
  color: #ffffff;
  padding: 0 20px;
  font-size: 14px;
  line-height: 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.header_area .menu_content .top_header .social_info ul li a:hover {
  background: #FF714A;
}
.header_area .menu_content .main_menu ul li {
  position: relative;
}
.header_area .menu_content .main_menu ul li a {
  color: #151515;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 76px;
  padding: 0;
}
.header_area .menu_content .main_menu ul li a i {
  font-size: 14px;
  position: relative;
  top: 2px;
}
.header_area .menu_content .main_menu ul li a.active {
  color: #FF714A;
}
.header_area .menu_content .main_menu ul li .sub_menu {
  position: absolute;
  top: 100%;
  background: #ffffff;
  width: 240px;
  box-shadow: 0px 10px 30px 0px rgba(137, 139, 142, 0.2);
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  margin-top: 20px;
}
.header_area .menu_content .main_menu ul li .sub_menu li a {
  color: #151515;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 26px;
}
.header_area .menu_content .main_menu ul li .sub_menu li a i {
  position: unset;
}
.header_area .menu_content .main_menu ul li .sub_menu li a:hover {
  color: #ffffff;
  background: #FF714A;
}
.header_area .menu_content .main_menu ul li .sub_menu li .sub_menu {
  left: 100%;
  top: 0;
}
.header_area .menu_content .main_menu ul li .sub_menu li + li {
  margin-left: 0;
}
.header_area .menu_content .main_menu ul li:hover a {
  color: #FF714A;
}
.header_area .menu_content .main_menu ul li:hover > .sub_menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
.header_area .menu_content .main_menu ul li + li {
  margin-left: 30px;
}
.header_area .menu_content .main_menu .offcanvas_btn {
  line-height: 76px;
  background: #FF714A;
  color: #ffffff;
  padding: 0 18px;
  border: 0;
}
.header_area .menu_content .main_menu .offcanvas_btn:hover {
  background: #151515;
}
.header_area .global_search {
  margin: 0 30px;
}
@media (max-width: 1399.98px) {
  .header_area .global_search {
    margin: 0 10px;
  }
}
.header_area .global_search .search_btn {
  background: transparent;
  border: none;
  font-weight: 500;
  line-height: 76px;
  padding: 0 30px;
  width: 76px;
}
.header_area .global_search .global_search_box {
  position: absolute;
  top: 100%;
  right: -30px;
  width: 350px;
  padding: 15px;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
  border-radius: 0;
  display: none;
}
.header_area .global_search .global_search_box .input_groups input {
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 20px;
  transition: all 0.3s ease-out 0s;
  background-color: #F7F8F9;
  padding-right: 60px;
}
.header_area .global_search .global_search_box .input_groups input:focus {
  border-color: #FF714A;
}
.header_area .global_search .global_search_box .input_groups input:hover {
  border-color: #FF714A;
}
.header_area .global_search .global_search_box .input_groups input::-moz-placeholder {
  opacity: 0.7;
}
.header_area .global_search .global_search_box .input_groups input::placeholder {
  opacity: 0.7;
}
.header_area .global_search .global_search_box .input_groups button {
  background: #151515;
  border: none;
  padding: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 50px;
  width: 50px;
  top: 0;
  right: 0;
  border-radius: 5px;
}
.header_area .global_search .global_search_box .input_groups button:hover {
  background: #FF714A;
}

/* Loader css */
.fullpage_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offcanvas-overlay {
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  cursor: crosshair;
}
.offcanvas-overlay.active {
  visibility: visible;
  opacity: 1;
}

.offcanvas-menu {
  max-width: 450px;
  z-index: 9999;
  padding: 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  font-size: 20px;
  right: -450px;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}
.offcanvas-menu .des {
  padding: 40px 0;
}
.offcanvas-menu .des p {
  font-weight: 400;
  color: #151515;
}
.offcanvas-menu.active {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.offcasvas_close {
  background: #FF714A;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  border-radius: 5px;
}
.offcasvas_close:hover {
  background: #151515;
}

.contact-info .contact-title {
  margin-bottom: 20px;
}
.contact-info ul li {
  margin-bottom: 20px;
}
.contact-info ul li:last-child {
  margin-bottom: 0;
}
.contact-info ul li .icon {
  margin-top: 5px;
}
.contact-info ul li i {
  color: #FF714A;
}
.contact-info ul li .info .info-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.contact-info ul li .info .info-text {
  font-size: 18px;
  font-weight: 500;
  color: #151515;
  line-height: 30px;
}
.contact-info.separator {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 30px 0;
}

.social-icon {
  margin-top: 30px;
}
.social-icon .social-title {
  margin-bottom: 20px;
}
.social-icon ul li a {
  font-size: 15px;
  background: #151515;
  color: #ffffff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  border-radius: 5px;
}
.social-icon ul li a:hover {
  background: #FF714A;
}

.sticky-menu {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.sticky-menu .top_header {
  display: none !important;
}
.sticky-menu .main_logo {
  padding: 16px 30px;
}
.sticky-menu .main_logo img {
  height: 44px;
}

#header-fixed-height.active-height {
  display: block;
  height: 76px;
}

.fullpage_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullpage_loader .loader {
  width: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #FF714A;
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.mobile-menu-area {
  z-index: 999;
  width: 100%;
  transition: all linear 0.2s;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 12px 0;
}
.mobile-menu-area .global_search .search_btn {
  line-height: 48px;
  padding: 0 11px;
  width: 63px;
  font-size: 18px;
}
.mobile-menu-area .global_search .global_search_box {
  right: 0;
}
@media (max-width: 575.98px) {
  .mobile-menu-area .global_search .global_search_box {
    right: -50px;
  }
}

.mobile-menu-area .mobile-topbar .bars {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #FF714A;
  color: #FF714A;
  font-size: 18px;
  text-align: center;
  line-height: 37px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}

.mobile-menu-area .mobile-topbar .bars:hover {
  background-color: #FF714A;
  color: #ffffff;
}

.mobile-menu-area .mobile-menu-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.mobile-menu-area .mobile-menu-main {
  width: 320px;
  height: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: -320px;
  z-index: 999;
  overflow-y: scroll;
  transition-duration: 0.3s;
}

.mobile-menu-area .mobile-menu-main .logo {
  padding: 20px;
}

.mobile-menu-area .mobile-menu-main .close-mobile-menu {
  position: absolute;
  top: 25px;
  right: 10px;
  cursor: pointer;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list {
  padding-top: 10px;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a {
  font-weight: 600;
  font-size: 15px;
  color: #151515;
  border-top: 1px solid #ddd;
  width: 100%;
  padding: 0px 20px;
  line-height: 40px;
  padding-right: 10px;
  transition: all linear 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover {
  color: #FF714A;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a i {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  text-align: center;
  line-height: 32px;
  font-size: 12px;
  border-radius: 3px;
  background-color: #f5f5f5;
  transition: all linear 0.2s;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover i {
  background-color: #FF714A;
  color: #ffffff;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul {
  padding-left: 0;
  display: none;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul a {
  padding: 0px 20px;
  padding-left: 40px;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul li:last-child a {
  border-bottom: 0;
}

.mobile-menu-area .mobile-menu-main .menu-body .social-icon ul li {
  display: inline-block;
}

.mobile-menu-area .mobile-menu-main .social-icon {
  padding: 20px;
  text-align: center;
}

.mobile-menu-area .mobile-menu-main .social-icon ul li {
  display: inline-block;
  margin: 0 4px;
}

.mobile-menu-area .mobile-menu-main .social-icon ul li a {
  width: 36px;
  height: 36px;
  color: #151515;
  text-align: center;
  line-height: 36px;
  border-radius: 3px;
  border: 1px solid #ddd;
}

.mobile-menu-area .mobile-menu-main .social-icon ul li a:hover {
  background-color: #FF714A;
  color: #ffffff;
  border-color: #FF714A;
}

.mobile-menu-overlay {
  transition-duration: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-main.active {
  left: 0 !important;
}

.mobile-menu-area .mobile-menu-search {
  padding: 0 20px 16px;
}

.mobile-menu-area .mobile-menu-search input {
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0 20px;
  transition: all 0.3s ease-out 0s;
  background-color: #f5f5f5;
}

.mobile-menu-area .mobile-menu-search input:focus {
  border-color: #151515;
}

.mobile-menu-area .mobile-menu-search .input-groups button {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0;
}

.mobile-menu-area .menu-action-btn {
  padding: 20px;
}

.mobile-menu-area .menu-action-btn a {
  font-weight: 700;
  font-family: var(--link-font-family);
  color: #ffffff;
  background-color: #FF714A;
  padding: 12px 30px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.mobile-menu-area .menu-action-btn a:hover {
  background-color: #151515;
}

.mobile-menu-area .menu-action-btn a i {
  font-size: 14px;
  margin-left: 8px;
}

.banner_slider {
  padding-top: 120px;
}
@media (max-width: 1199.98px) {
  .banner_slider {
    padding-top: 71px;
  }
}
@media (max-width: 575.98px) {
  .banner_slider .container {
    max-width: 375px;
  }
}
.banner_slider .banner_info {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .banner_slider .banner_info {
    min-height: 362px;
  }
}
@media (max-width: 767.98px) {
  .banner_slider .banner_info {
    min-height: 332px;
  }
}
@media (max-width: 575.98px) {
  .banner_slider .banner_info {
    min-height: 405px;
  }
}
.banner_slider .slider_item {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 140px 0 140px 0;
}
@media (max-width: 1399.98px) {
  .banner_slider .slider_item {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 1199.98px) {
  .banner_slider .slider_item {
    padding: 60px 0 60px 0;
  }
}
@media (max-width: 575.98px) {
  .banner_slider .slider_item {
    padding: 60px 0 60px 0;
  }
}
.banner_slider .slider_item .sub_title {
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 18px;
  color: #FF714A;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .banner_slider .slider_item .sub_title {
    font-size: 15px;
  }
}
.banner_slider .slider_item .title {
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 10px;
}
@media (max-width: 1399.98px) {
  .banner_slider .slider_item .title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .banner_slider .slider_item .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 575.98px) {
  .banner_slider .slider_item .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.banner_slider .slider_item p {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .banner_slider .slider_item p {
    font-size: 14px;
  }
}
.banner_slider .slider_item .button_group {
  margin-top: 30px;
}
.banner_slider .arrow {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  color: #ffffff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 991.98px) {
  .banner_slider .arrow {
    display: none !important;
  }
}
@media (max-width: 1399.98px) {
  .banner_slider .arrow {
    width: 80px;
    height: 80px;
  }
}
.banner_slider .arrow:hover {
  background: #ffffff;
  color: #151515;
}
.banner_slider .arrow_left {
  left: 20px;
}
.banner_slider .arrow_right {
  right: 20px;
}

.services_area {
  background: #f7f8f9;
}
.services_area .service_item {
  margin: 0 12px;
  transition: all 0.3s ease-out 0s;
}
.services_area .service_item a {
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 45px 30px;
  background: #ffffff;
  min-height: 428px;
}
.services_area .service_item a:hover {
  border-color: #FF714A;
}
.services_area .service_item .title {
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
  color: #151515;
  min-height: 72px;
}
.services_area .service_item .icon {
  height: 100px;
  width: 100px;
  text-align: center;
  background: #FF714A;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 15px auto;
  padding: 24px;
}
.services_area .service_item .icon img {
  width: 100%;
}
.services_area .service_item .read_more {
  color: #FF714A;
  position: relative;
  margin-top: 30px;
}
.services_area .service_item .read_more::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF714A;
  content: "";
  transition: all 0.3s ease-out 0s;
}
.services_area .service_item .read_more:hover::before {
  width: 100%;
}
.services_area.style2 {
  background: transparent;
}
.services_area.style2 .service_item {
  margin: 0;
}
.services_area.style2 .service_item a {
  background: #F7F8F9;
  transition: all 0.3s ease-out 0s;
}
.services_area.style2 .service_item a:hover {
  box-shadow: 0px 0px 40px 0px rgba(21, 21, 21, 0.1);
  background: #ffffff;
}
.services_area.style2 .service_item .title {
  margin: 15px 0;
}

.services_list_area .service_item {
  height: 100%;
  min-height: 100%;
}
.services_list_area .service_item a {
  height: 100%;
  min-height: 100%;
}
.services_list_area .service_item a .icon {
  margin: 0 auto;
  margin-bottom: 15px;
}

.pagination ul li {
  margin: 0 1px;
}
.pagination ul li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  color: #151515;
}
.pagination ul li a:hover {
  background: #151515;
  color: #ffffff;
}
.pagination ul li a.active {
  background: #151515;
  color: #ffffff;
}
.pagination ul li.arrow {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  color: #151515;
  transition: all 0.3s ease-out 0s;
}
.pagination ul li.arrow:hover {
  background: #151515;
  color: #ffffff;
}

.portfolio_area {
  z-index: 9;
}
.portfolio_area::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 524px;
  background: #151515;
  content: "";
  z-index: -1;
}
@media (max-width: 1399.98px) {
  .portfolio_area::before {
    height: 422px;
  }
}
.portfolio_area::after {
  background: url(../images/bg-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  opacity: 0.05;
}

.portfolio_slider .slick-list {
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.portfolio_slider .slider_item {
  margin: 0 12px;
  box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
  border-radius: 5px;
  background: #ffffff;
  overflow: hidden;
}
.portfolio_slider .slider_item .image {
  overflow: hidden;
}
.portfolio_slider .slider_item .image .overlay {
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out 0s;
}
.portfolio_slider .slider_item .image .overlay i {
  width: 60px;
  height: 60px;
  background: #FF714A;
  color: #ffffff;
  border-radius: 3px;
  text-align: center;
  line-height: 60px;
  font-size: 20px;
}
.portfolio_slider .slider_item .image img {
  transition: all 0.3s ease-out 0s;
}
.portfolio_slider .slider_item:hover .image .overlay {
  opacity: 1;
  visibility: visible;
}
.portfolio_slider .slider_item:hover .image img {
  transform: scale(1.1);
}
.portfolio_slider .slider_item .text {
  padding: 30px;
  height: 122px;
}
@media (max-width: 767.98px) {
  .portfolio_slider .slider_item .text {
    padding: 20px;
    height: 105px;
  }
}
.portfolio_slider .slider_item .text .title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #151515;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767.98px) {
  .portfolio_slider .slider_item .text .title {
    font-size: 25px;
  }
}
.portfolio_slider .slider_item .text .title:hover {
  color: #FF714A;
}
.portfolio_slider .slider_item .text .category {
  text-transform: uppercase;
  color: #FF714A;
  font-size: 14px;
  font-weight: 500;
}
.portfolio_slider .slider_item .text .category span {
  padding: 0 5px;
  color: #151515;
}

.counter_area {
  background: #151515;
  z-index: 9;
}
.counter_area::after {
  background: url(../images/bg-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  opacity: 0.05;
}
.counter_area .counter_item .number {
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  .counter_area .counter_item .number {
    font-size: 44px;
  }
}
.counter_area .counter_item .sub_title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.counter_area.style2 {
  background: transparent;
}
.counter_area.style2::before {
  display: none;
}
.counter_area.style2 .counter_main {
  background: #151515;
  border-radius: 10px;
  padding: 60px 0;
}
.counter_area.style2 .counter_main .counter_item .number {
  margin-top: 0;
}

.clients_area {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.clients_area .overlay {
  background: rgba(0, 0, 0, 0.8);
}
.clients_area .slider_item {
  margin: 0 12px;
}
.clients_area .slider_item a {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease-out 0s;
  height: 300px;
}
@media (max-width: 1399.98px) {
  .clients_area .slider_item a {
    padding: 25px;
    height: 263px;
  }
}
@media (max-width: 1199.98px) {
  .clients_area .slider_item a {
    height: 273px;
  }
}
@media (max-width: 767.98px) {
  .clients_area .slider_item a {
    height: 296px;
  }
}
@media (max-width: 575.98px) {
  .clients_area .slider_item a {
    padding: 20px;
    height: 273px;
  }
}
@media (max-width: 450.98px) {
  .clients_area .slider_item a {
    height: 243px;
  }
}
.clients_area .slider_item .img img {
  width: 100%;
}
.clients_area .slider_item .text h4 {
  color: #151515;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 575.98px) {
  .clients_area .slider_item .text h4 {
    font-size: 16px;
    line-height: 22px;
  }
}
.clients_area .slider_item:hover a {
  background: #FF714A;
}
.clients_area .slider_item:hover .text h4 {
  color: #ffffff;
}
.clients_area.style2 {
  background: #ffffff;
}
.clients_area.style2 .overlay {
  background: #ffffff;
}
.clients_area.style2 .overlay .slider_item {
  margin: 0;
}
.clients_area.style2 .overlay .slider_item a {
  background: #f5f5f5;
}
.clients_area.style2 .overlay .slider_item:hover a {
  background: #FF714A;
}

.client_details_area .about_content .img {
  width: 400px;
  border: 1px solid #e2e2e2;
  padding: 20px;
}

.partnership_area .slider_item a {
  background: #F7F8F9;
}
@media (max-width: 1399.98px) {
  .partnership_area .slider_item a {
    height: 287px;
  }
}
@media (max-width: 1199.98px) {
  .partnership_area .slider_item a {
    height: 290px;
  }
}
@media (max-width: 767.98px) {
  .partnership_area .slider_item a {
    height: 287px;
  }
}
@media (max-width: 575.98px) {
  .partnership_area .slider_item a {
    height: 256px;
  }
}
.partnership_area .slider_item a .img img {
  max-width: 150px;
  margin: 0 auto;
}

.teatimonial_area {
  background: #151515;
  z-index: 9;
  padding-bottom: 210px;
}
@media (max-width: 991.98px) {
  .teatimonial_area {
    padding-bottom: 170px;
  }
}
.teatimonial_area::after {
  background: url(../images/bg-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  opacity: 0.05;
}
.teatimonial_area .testimonial_item {
  background: #ffffff;
  border-radius: 5px;
  padding: 45px 30px;
  margin: 0 12px;
  height: 319px;
}
@media (max-width: 575.98px) {
  .teatimonial_area .testimonial_item {
    text-align: center;
    height: 395px;
  }
}
@media (max-width: 575.98px) {
  .teatimonial_area .testimonial_item .image {
    flex-direction: column;
    text-align: center;
  }
}
.teatimonial_area .testimonial_item .image .img {
  width: 90px;
  height: 90px;
  border-radius: 5px;
}
.teatimonial_area .testimonial_item .image .img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.teatimonial_area .testimonial_item .image .name .title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.teatimonial_area .testimonial_item .image .name .desg {
  color: #FF714A;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
}
.teatimonial_area .testimonial_item .rating i {
  color: #FF714A;
}
.teatimonial_area .arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border-radius: 50%;
  z-index: 9;
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
}
.teatimonial_area .arrow:hover {
  background: #FF714A;
  border-color: #FF714A;
  color: #ffffff;
}
.teatimonial_area .arrow_left {
  margin-left: -35px;
}
.teatimonial_area .arrow_right {
  margin-left: 35px;
}

.news_area .slick-list {
  padding: 20px 0;
  margin: -20px 0;
}
.news_area .news_item {
  box-shadow: 0px 0px 20px 0px rgba(21, 21, 21, 0.1);
  overflow: hidden;
  border-radius: 10px;
  margin: 0 12px;
}
.news_area .news_item .image {
  overflow: hidden;
}
.news_area .news_item .image img {
  transition: all 0.3s ease-out 0s;
}
.news_area .news_item .image .date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF714A;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  border-radius: 4px;
  padding: 8px 16px;
}
.news_area .news_item .image .date small {
  display: block;
  font-weight: 400;
}
.news_area .news_item .text {
  padding: 30px;
}
@media (max-width: 1199.98px) {
  .news_area .news_item .text {
    padding: 22px;
  }
}
.news_area .news_item .text .title {
  font-size: 32px;
  line-height: 1.3;
  color: #151515;
  font-weight: 600;
  transition: all 0.3s ease-out 0s;
  height: 83px;
}
@media (max-width: 1199.98px) {
  .news_area .news_item .text .title {
    font-size: 26px;
    line-height: 1.2;
    height: 64px;
  }
}
.news_area .news_item .text .title:hover {
  color: #FF714A;
}
.news_area .news_item .text .blog_meta ul li {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  color: #616161;
}
.news_area .news_item .text .blog_meta ul li i {
  color: #FF714A;
}
.news_area .news_item .text .theme_btn {
  transition: all 0.3s ease-out 0s;
}
.news_area .news_item:hover .image img {
  transform: scale(1.1);
}
.news_area.style2 .news_item {
  margin: 0;
}
.news_area.style2 .news_item .text .title {
  margin-bottom: 12px !important;
}
.news_area.style2 .news_item .text .details {
  height: 57px;
}
.news_area.style2 .news_item .text .theme_btn {
  margin-top: 25px;
}

.about_area .about_text ul {
  list-style: none;
  padding-top: 40px;
  padding-bottom: 30px;
}
.about_area .about_text ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.about_area .about_text ul li::before {
  content: "\f560";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FF714A;
  left: 0;
  border-radius: 50%;
}
.about_area .about_img {
  border-radius: 10px;
  overflow: hidden;
}
.about_area .about_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.about_area .pq-popup-video-block .pq-video-icon a {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: #FF714A;
  font-size: 28px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  display: inline-block;
  background-color: #ffffff;
  border-radius: 90%;
  animation: ripple 1s linear infinite;
}
.about_area .pq-primary-videobg .pq-popup-video-block .pq-video-icon a {
  color: #ffffff;
  background-color: #FF714A;
  animation: rippleprimary 1s linear infinite;
}
.about_area .popup-video {
  background: #151515;
}
.about_area .popup-video .pq-popup-video-block .pq-video-icon a {
  margin: auto;
  position: relative;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0%);
  text-decoration: none;
  color: #FF714A;
  font-size: 28px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  display: inline-block;
  background-color: #ffffff;
  border-radius: 90%;
  animation: ripple 1s linear infinite;
}
.about_area .popup-video {
  padding-bottom: 70px;
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
  }
}
.about_area .pq-video-icon a.primary {
  animation: rippleprimary 1s linear infinite;
}
@keyframes rippleprimary {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
  }
}
.about_area .pq-video-icon a.blue {
  animation: rippleblue 1s linear infinite;
}
@keyframes rippleblue {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
  }
}

.footer_area {
  background: #151515;
  z-index: 9;
  margin-top: 186px;
}
@media (max-width: 991.98px) {
  .footer_area {
    margin-top: 146px;
  }
}
.footer_area::after {
  background: url(../images/bg-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  opacity: 0.05;
}
.footer_area .footer_top_option {
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
  border-radius: 5px;
  padding: 30px;
  position: relative;
  top: -66px;
}
@media (max-width: 575.98px) {
  .footer_area .footer_top_option {
    padding: 22px;
  }
}
.footer_area .footer_top_option .option_main .icon {
  max-width: 60px;
}
.footer_area .footer_top_option .option_main .icon img {
  width: 50px;
}
.footer_area .footer_top_option .option_main .text .info_title {
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  font-weight: 600;
  color: #151515;
  margin-bottom: 6px;
}
.footer_area .footer_top_option .option_main .text a {
  color: #616161;
}
.footer_area .footer_top_option .option_main .text a:hover {
  color: #FF714A;
}
.footer_area .footer_about .img img {
  width: 100%;
}
@media (max-width: 575.98px) {
  .footer_area .footer_about .img img {
    width: auto;
  }
}
.footer_area .footer_about p {
  color: #ffffff;
  opacity: 0.7;
}
.footer_area .footer_about .social_icon {
  margin-top: 30px;
}
.footer_area .footer_about .social_icon ul li a {
  width: 60px;
  height: 60px;
  color: #ffffff;
  background: #0d0d0d;
  border-radius: 5px;
}
@media (max-width: 1399.98px) {
  .footer_area .footer_about .social_icon ul li a {
    width: 57px;
    height: 57px;
  }
}
@media (max-width: 1199.98px) {
  .footer_area .footer_about .social_icon ul li a {
    width: 47px;
    height: 47px;
  }
}
.footer_area .footer_about .social_icon ul li a:hover {
  background: #FF714A;
}
.footer_area .footer_widget .widget_title {
  margin-bottom: 25px;
  padding: 0;
  font-size: 26px;
  position: relative;
  line-height: 34px;
  color: #ffffff;
}
.footer_area .footer_widget .quick_links li {
  margin-bottom: 24px;
}
.footer_area .footer_widget .quick_links li a {
  position: relative;
  border: none;
  padding: 0 0 0 15px;
  padding-top: 0px;
  display: inline-block;
  width: 100%;
  color: #cccccc;
}
.footer_area .footer_widget .quick_links li a:hover {
  color: #FF714A;
}
.footer_area .footer_widget .quick_links li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #FF714A;
  margin: auto 0;
  border-radius: 5px;
}
.footer_area .footer_widget .recent_post li {
  margin-bottom: 24px;
}
.footer_area .footer_widget .recent_post li a .img {
  max-width: 90px;
}
.footer_area .footer_widget .recent_post li a .img img {
  border-radius: 5px;
}
.footer_area .footer_widget .recent_post li a .title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 5px;
}
.footer_area .footer_widget .recent_post li a span {
  color: #FF714A;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer_area .footer_widget .recent_post li a:hover .title {
  color: #FF714A;
}
.footer_area .footer_btm {
  background: #0d0d0d;
  margin-top: 45px;
  padding: 20px 0;
}
.footer_area .footer_btm .footer_menus a {
  color: #ffffff;
}
.footer_area .footer_btm .footer_menus a:hover {
  color: #FF714A;
}

/* scroll to top area */
.scroll-to-top {
  display: inline-block;
  background: #FF714A;
  width: 40px;
  height: 40px;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  border: 0;
  position: fixed;
  bottom: -45px;
  right: 15px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}
.scroll-to-top:hover {
  background: #151515;
}
.scroll-to-top span {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}

.ep-page-header-section {
  background: #151515;
  position: relative;
  z-index: 9;
  padding: 115px 0;
  padding-top: 217px;
}
@media (max-width: 1199.98px) {
  .ep-page-header-section {
    padding: 85px 0;
    padding-top: 139px;
  }
}
@media (max-width: 991.98px) {
  .ep-page-header-section {
    padding: 65px 0;
    padding-top: 130px;
  }
}
@media (max-width: 575.98px) {
  .ep-page-header-section {
    padding: 45px 0;
    padding-top: 110px;
  }
}
.ep-page-header-section::after {
  background: url(../images/bg-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  opacity: 0.05;
}
.ep-page-header-section .text .page-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 47px;
  padding-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .ep-page-header-section .text .page-title {
    font-size: 40px;
    line-height: 37px;
  }
}
.ep-page-header-section .text .bread-crumb {
  -moz-column-gap: 46px;
       column-gap: 46px;
  row-gap: 10px;
}
.ep-page-header-section .text .bread-crumb li {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
  position: relative;
}
@media (max-width: 575.98px) {
  .ep-page-header-section .text .bread-crumb li {
    font-size: 16px;
    line-height: 16px;
  }
}
.ep-page-header-section .text .bread-crumb li a {
  color: #ffffff;
}
.ep-page-header-section .text .bread-crumb li a i {
  position: relative;
  top: -1px;
}
.ep-page-header-section .text .bread-crumb li a:hover {
  color: #FF714A;
}
.ep-page-header-section .text .bread-crumb li::before {
  position: absolute;
  top: 50%;
  left: -27px;
  font-size: 15px;
  transform: translateY(-50%);
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  color: #FF714A;
}
.ep-page-header-section .text .bread-crumb li:first-child::before {
  display: none;
}

.about_us_page {
  margin-top: 0;
}
.about_us_page .float-image {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 1199.98px) {
  .about_us_page .float-image {
    max-width: 450px;
  }
  .about_us_page .float-image img {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .about_us_page .float-image {
    float: none;
    margin-left: 0;
    max-width: 100%;
  }
  .about_us_page .float-image img {
    width: 100%;
  }
}
.about_us_page .about_content p {
  margin-bottom: 20px;
}
.about_us_page .about_content ul {
  list-style-type: none;
}
.about_us_page .about_content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 24px;
}
.about_us_page .about_content ul li::before {
  content: "\f560";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #FF714A;
}

.service_details_area .service_content .service_title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .service_details_area .service_content .service_title {
    font-size: 28px;
    line-height: 36px;
  }
}
.service_details_area .service_content p {
  margin-bottom: 20px;
}
.service_details_area .service_content .middle_info {
  margin-bottom: 20px;
}
.service_details_area .service_content ul {
  list-style-type: none;
}
.service_details_area .service_content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 24px;
}
.service_details_area .service_content ul li::before {
  content: "\f560";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #FF714A;
}
@media (max-width: 991.98px) {
  .service_details_area img {
    width: 100% !important;
    height: 100% !important;
  }
}

.portfolio_page_area .portfolio_menu {
  padding-bottom: 40px;
}
.portfolio_page_area .portfolio_menu ul {
  text-align: center;
}
.portfolio_page_area .portfolio_menu ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.portfolio_page_area .portfolio_menu ul li button {
  display: inline-block;
  background-color: #ffffff;
  padding: 15px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 0 5px;
  color: #151515;
  border: 0;
  transition: all linear 0.2s;
  border: 1px solid #FF714A;
}
@media (max-width: 991.98px) {
  .portfolio_page_area .portfolio_menu ul li button {
    flex: 0 0 auto;
  }
}
.portfolio_page_area .portfolio_menu ul li button:hover {
  background-color: #FF714A;
  color: #ffffff;
}
.portfolio_page_area .portfolio_menu ul li button.active {
  background-color: #FF714A;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .portfolio_page_area .portfolio_menu ul li {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img {
  overflow: hidden;
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img img {
  transition: all 0.3s ease-out 0s;
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img .info {
  padding: 40px;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 1199.98px) {
  .portfolio_page_area .portfolio_main .portfolio_single_item .img .info {
    padding: 16px;
  }
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img .text {
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .portfolio_page_area .portfolio_main .portfolio_single_item .img .text {
    padding: 18px;
  }
}
@media (max-width: 575.98px) {
  .portfolio_page_area .portfolio_main .portfolio_single_item .img .text {
    padding: 30px;
  }
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img .text .category {
  color: #FF714A;
  font-size: 16px;
  font-weight: 600;
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img .text .category span {
  padding: 0 5px;
  color: #151515;
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img .text .title {
  font-size: 28px;
  font-weight: 600;
  color: #151515;
  transition: all 0.3s ease-out 0s;
  margin-top: 14px;
}
@media (max-width: 1199.98px) {
  .portfolio_page_area .portfolio_main .portfolio_single_item .img .text .title {
    font-size: 22px;
  }
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img .text .title:hover {
  color: #FF714A;
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img:hover img {
  transform: scale(1.1);
}
.portfolio_page_area .portfolio_main .portfolio_single_item .img:hover .info {
  visibility: visible;
  opacity: 1;
}
.portfolio_page_area .button {
  text-align: center;
  margin-top: 20px;
}
.portfolio_page_area .button a {
  background-color: #FF714A;
  color: #ffffff;
  padding: 14px 20px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 5px;
  transition: all linear 0.2s;
}
.portfolio_page_area .button a:hover {
  background-color: #FF714A;
}

.portfolio_details_area .main_content .title {
  font-size: 36px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .portfolio_details_area .main_content .title {
    font-size: 30px;
    line-height: 30px;
  }
}
.portfolio_details_area .main_content p {
  margin-bottom: 20px;
}
.portfolio_details_area .main_content ul {
  list-style-type: none;
}
.portfolio_details_area .main_content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 24px;
}
.portfolio_details_area .main_content ul li::before {
  content: "\f560";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #FF714A;
}
.portfolio_details_area .portfolio_details .title {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .portfolio_details_area .portfolio_details .title {
    font-size: 34px;
    line-height: 40px;
  }
}
.portfolio_details_area .portfolio_details .pq_info_list {
  margin-top: 30px;
}
.portfolio_details_area .portfolio_details .pq_info_list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 22px;
  margin-bottom: 23px;
}
.portfolio_details_area .portfolio_details .pq_info_list li:last-child {
  margin-bottom: 0;
}
.portfolio_details_area .portfolio_details .pq_info_list li h5 {
  font-weight: 600;
  font-size: 18px;
}
.portfolio_details_area .portfolio_details .pq_info_list li span {
  font-weight: 500;
  color: #FF714A;
  font-size: 16px;
}
.portfolio_details_area .portfolio_details .social_media a {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  background: #151515;
  color: #ffffff;
  border-radius: 5px;
}
.portfolio_details_area .portfolio_details .social_media a:hover {
  background: #FF714A;
}

.blog-one {
  position: relative;
  padding: 120px 0 0;
}

@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0 0;
  }
}
.blog-one .sec-title__title > span::after {
  width: 74px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 74 7" xmlns="http://www.w3.org/2000/svg"><path d="M74.0001 2.67192C73.722 2.92192 73.4923 2.96488 73.259 2.95707C71.9223 2.9102 70.5837 2.83988 69.2469 2.80473C68.2259 2.77738 67.1709 2.55473 66.1912 2.83988C64.4632 3.34379 62.7389 2.95707 61.0181 3.09379C59.0372 3.25004 57.0365 3.19535 55.043 3.1602C53.3133 3.12895 51.5835 2.92582 49.8484 3.05082C49.1737 3.0977 48.4901 2.87113 47.8154 3.02348C46.8214 3.25004 45.8345 3.21098 44.844 3.00395C44.3918 2.9102 43.9612 3.14848 43.518 3.20316C42.3445 3.3516 41.1692 3.37113 39.9939 3.4102C39.7876 3.41801 39.5633 3.44535 39.3767 3.56254C38.7128 3.9727 37.9986 4.15629 37.3042 4.15238C36.1218 4.14848 34.9752 4.55082 33.7873 4.52738C31.7723 4.48442 29.7537 4.74223 27.7369 4.7266C25.7972 4.71488 23.8575 4.67191 21.9178 4.71488C21.1822 4.73051 20.4483 4.76957 19.718 4.88285C19.4829 4.91801 19.2461 4.98441 19.0128 4.95707C17.4535 4.7891 15.932 5.25785 14.3924 5.46488C13.0108 5.64848 11.6309 5.88676 10.2457 6.0352C8.54649 6.21488 6.85264 6.53129 5.16776 6.89457C3.77716 7.19535 2.44935 6.80473 1.11975 6.36723C0.6299 6.20707 0.0234162 4.93754 0.00188424 4.21488C-0.0196477 3.49613 0.1867 3.12504 0.69629 2.95707C2.00077 2.51957 3.34652 2.50004 4.66356 2.13285C7.55063 1.32426 10.47 0.816447 13.4073 0.558634C15.713 0.355509 18.0206 0.273478 20.3317 0.285197C22.1152 0.293009 23.9006 0.164103 25.6823 0.226603C27.5987 0.293009 29.5114 0.164103 31.426 0.164103C34.4423 0.164103 37.4603 0.0117592 40.4766 0.00394667C43.1017 -0.00386583 45.7268 0.0742592 48.3501 0.28129C53.123 0.660197 57.9031 0.886759 62.6707 1.38676C65.9453 1.73051 69.2236 1.96488 72.4982 2.2852C72.9881 2.32817 73.46 2.48051 74.0001 2.67192Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 74 7" xmlns="http://www.w3.org/2000/svg"><path d="M74.0001 2.67192C73.722 2.92192 73.4923 2.96488 73.259 2.95707C71.9223 2.9102 70.5837 2.83988 69.2469 2.80473C68.2259 2.77738 67.1709 2.55473 66.1912 2.83988C64.4632 3.34379 62.7389 2.95707 61.0181 3.09379C59.0372 3.25004 57.0365 3.19535 55.043 3.1602C53.3133 3.12895 51.5835 2.92582 49.8484 3.05082C49.1737 3.0977 48.4901 2.87113 47.8154 3.02348C46.8214 3.25004 45.8345 3.21098 44.844 3.00395C44.3918 2.9102 43.9612 3.14848 43.518 3.20316C42.3445 3.3516 41.1692 3.37113 39.9939 3.4102C39.7876 3.41801 39.5633 3.44535 39.3767 3.56254C38.7128 3.9727 37.9986 4.15629 37.3042 4.15238C36.1218 4.14848 34.9752 4.55082 33.7873 4.52738C31.7723 4.48442 29.7537 4.74223 27.7369 4.7266C25.7972 4.71488 23.8575 4.67191 21.9178 4.71488C21.1822 4.73051 20.4483 4.76957 19.718 4.88285C19.4829 4.91801 19.2461 4.98441 19.0128 4.95707C17.4535 4.7891 15.932 5.25785 14.3924 5.46488C13.0108 5.64848 11.6309 5.88676 10.2457 6.0352C8.54649 6.21488 6.85264 6.53129 5.16776 6.89457C3.77716 7.19535 2.44935 6.80473 1.11975 6.36723C0.6299 6.20707 0.0234162 4.93754 0.00188424 4.21488C-0.0196477 3.49613 0.1867 3.12504 0.69629 2.95707C2.00077 2.51957 3.34652 2.50004 4.66356 2.13285C7.55063 1.32426 10.47 0.816447 13.4073 0.558634C15.713 0.355509 18.0206 0.273478 20.3317 0.285197C22.1152 0.293009 23.9006 0.164103 25.6823 0.226603C27.5987 0.293009 29.5114 0.164103 31.426 0.164103C34.4423 0.164103 37.4603 0.0117592 40.4766 0.00394667C43.1017 -0.00386583 45.7268 0.0742592 48.3501 0.28129C53.123 0.660197 57.9031 0.886759 62.6707 1.38676C65.9453 1.73051 69.2236 1.96488 72.4982 2.2852C72.9881 2.32817 73.46 2.48051 74.0001 2.67192Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left bottom;
  mask-position: left bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.blog-one--page {
  padding: 100px 0;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .blog-one--page {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .blog-one__carousel .owl-nav {
    display: none;
  }
}
.blog-card-two {
  position: relative;
  border-bottom: 1px solid var(--ienet-border-color, #E6E2D9);
  padding-bottom: 30px;
  padding: 30px;
  border: 1px solid #ddd9d0;
  border-radius: 30px;
}

.blog-card-two__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 0 26px;
}

.blog-card-two__image img {
  transition: 0.5s;
  background-size: cover;
  max-width: 100%;
  border-radius: 20px;
}

.blog-card-two__image img:nth-child(1) {
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateX(0%) translateX(0px) scaleX(1) rotateY(0deg);
}

.blog-card-two__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateX(0%) translateX(150px) scaleX(0) rotateY(90deg);
  transform-origin: bottom center;
  width: 100%;
}

.blog-card-two__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--ienet-black-rgb, 37, 20, 68), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card-two__image__link::before,
.blog-card-two__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--ienet-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card-two__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card-two:hover .blog-card-two__image > a {
  opacity: 1;
  transform: translateY(0);
}

.blog-card-two:hover .blog-card-two__image img:nth-child(1) {
  transform-origin: bottom center;
  transform: translateX(-100%) translateX(150px) scaleX(0) rotateY(90deg);
}

.blog-card-two:hover .blog-card-two__image img:nth-child(2) {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateX(0%) translateX(0px) scaleX(1) rotateY(0deg);
}

.blog-card-two__date {
  height: 30px;
  background-color: var(--ienet-base, #DF2339);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ienet-white, #fff);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 11px;
  line-height: 30px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.blog-card-two__content {
  position: relative;
  transition: all 500ms ease;
  padding: 0;
}

.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0 0 17px;
}

.blog-card-two__meta li {
  color: var(--ienet-text, #737177);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.blog-card-two__meta li i {
  margin-right: 11px;
  color: var(--ienet-base, #DF2339);
  position: relative;
  top: 1px;
}

.blog-card-two__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}

.blog-card-two__meta li a:hover {
  color: var(--ienet-base, #DF2339);
  text-shadow: 0 0 1px currentColor;
}

.blog-card-two__title {
  margin: 0;
  font-size: 30px;
  line-height: normal;
  margin-bottom: 13px;
  font-weight: 600;
}

.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-two__title a:hover {
  color: var(--ienet-base, #DF2339);
}

.blog-card-two__text {
  margin: 0 0 22px;
}

.blog-card-two__link {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 26px;
  text-transform: uppercase;
}

.blog-card-two__link::after,
.blog-card-two__link::before {
  border-width: 27px;
}

.blog-card-two__link__icon {
  display: inline-block;
  width: 22px;
  height: 1px;
  background-color: var(--ienet-white, #fff);
  position: relative;
  top: -5px;
  margin-left: 15px;
  transition: all 0.2s;
  transition-delay: 0s;
  transition-delay: 0;
  will-change: transform;
}

.blog-card-two__link__icon::before {
  background-color: var(--ienet-white, #fff);
  content: "";
  display: block;
  height: 1px;
  width: 8px;
  transform: rotate(40deg);
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: top right;
  transition: all 0.2s;
  transition-delay: 0;
}

.blog-card-two__link__icon::after {
  background-color: var(--ienet-white, #fff);
  content: "";
  display: block;
  height: 1px;
  width: 8px;
  transform: rotate(-40deg);
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: bottom right;
  transition: all 0.2s;
  transition-delay: 0;
}

.sidebar__single {
  background-color: var(--ienet-gray, #F7F5F1);
  border-radius: 10px;
  padding: 30px;
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  text-transform: capitalize;
  margin: 0;
  line-height: 1em;
  font-size: 20px;
  font-weight: 600;
  margin-top: -3px;
  margin-bottom: 30px;
}

.sidebar__search {
  position: relative;
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--ienet-white, #fff);
  font-size: 16px;
  color: var(--ienet-text, #737177);
  border: none;
  padding-left: 20px;
  padding-right: 35px;
  transition: all 500ms ease;
}

.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  padding: 0;
  color: var(--ienet-base, #DF2339);
  transition: all 500ms ease;
}

.sidebar__search button[type=submit]:hover {
  color: var(--ienet-black, #251444);
}

.sidebar__posts {
  margin-bottom: 0;
}

.sidebar__posts__item {
  display: flex;
  align-items: center;
}

.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 20px;
}

.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 16px;
  overflow: hidden;
  border-radius: 5px;
  width: 120px;
  flex: 0 0 auto;
}

.sidebar__posts__meta a {
  display: inline-block;
  color: inherit;
  transition: all 500ms ease;
  margin-left: 3px;
}

.sidebar__posts__meta a:hover {
  color: var(--ienet-base, #DF2339);
}

.sidebar__posts__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.sidebar__posts__title a {
  color: inherit;
  transition: all 500ms ease;
}

.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}

.sidebar__posts__title a:hover {
  color: var(--ienet-base, #DF2339);
}

.sidebar__categories {
  margin-bottom: -10px;
  margin-top: -20px;
}

.sidebar__categories li {
  position: relative;
  font-size: 16px;
  color: var(--ienet-text, #737177);
  display: flex;
  font-weight: 500;
  text-transform: capitalize;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 9px 0;
}

.sidebar__categories li a {
  color: inherit;
}

.sidebar__categories li:hover {
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--ienet-white, #fff);
  color: var(--ienet-black, #251444);
}

.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar__tags a {
  background-color: var(--ienet-white, #fff);
  text-transform: capitalize;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 500;
  color: var(--ienet-black, #251444);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 7.8px 12px;
}

.sidebar__tags a:hover {
  color: var(--ienet-white, #fff);
  background-color: var(--ienet-base, #DF2339);
}

.sidebar__comments {
  margin-top: -2px;
  margin-bottom: -2px;
}

.sidebar__comments__item {
  display: flex;
  align-items: center;
}

.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 32px;
}

.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ienet-base, #DF2339);
  font-size: 20px;
  color: var(--ienet-white, #fff);
  margin-right: 20px;
  border-radius: 50%;
  transition: all 500ms ease;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--ienet-black, #251444);
  color: var(--ienet-white, #fff);
}

.sidebar__comments__title {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--ienet-text, #737177);
}

.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}

.sidebar__comments__title a:hover {
  color: var(--ienet-base, #DF2339);
}

/* post paginations */
.post-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}

.post-pagination.text-center {
  justify-content: center;
}

@media (max-width: 767px) {
  .post-pagination {
    margin-top: 10px;
  }
}
.post-pagination a {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: var(--ienet-gray, #F7F5F1);
  align-items: center;
  justify-content: center;
  color: var(--ienet-text, #737177);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  transition: 500ms ease;
}

.post-pagination a i {
  font-size: 14px;
}

.post-pagination a.current {
  background-color: transparent;
  border: 1px solid var(--ienet-base, #DF2339);
  color: var(--ienet-base, #DF2339);
}

.post-pagination a:hover {
  background-color: var(--ienet-base, #DF2339);
  color: var(--ienet-white, #fff);
}

.blog_sidebar {
  position: sticky;
  top: 100px;
}

.blog-details__image {
  position: relative;
  margin-bottom: 30px;
}

.blog-details__image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

.blog-details__image__date {
  height: 30px;
  background-color: var(--ienet-base, #DF2339);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ienet-white, #fff);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 11px;
  line-height: 30px;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}

.blog-details__title {
  font-size: 36px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-details__content p {
  line-height: 30px;
  margin: 0 0 30px;
}
.blog-details__content ul {
  font-weight: 500;
  text-transform: capitalize;
  list-style: disc;
  font-size: 18px;
  line-height: normal;
  padding-left: 0px;
}
.blog-details__content ul li {
  margin-bottom: 15px;
}

.blog_inner_image img {
  border-radius: 25px;
}

.blog-details__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search_result_area .news_item {
  border: 1px solid transparent;
  transition: all 0.3s ease-out 0s;
  height: 100%;
}
.search_result_area .news_item:hover {
  border-color: #151515;
}

.news_details_area .news_content {
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
}
.news_details_area .news_content .img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.news_details_area .news_content .img .date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF714A;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  border-radius: 4px;
  padding: 8px 16px;
}
.news_details_area .news_content .img .date small {
  display: block;
  font-weight: 400;
}
.news_details_area .news_content .text {
  padding: 30px;
}
@media (max-width: 575.98px) {
  .news_details_area .news_content .text {
    padding: 20px;
  }
}
.news_details_area .news_content .text .main_title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .news_details_area .news_content .text .main_title {
    font-size: 32px;
    line-height: 40px;
  }
}
.news_details_area .news_content .text p {
  margin-bottom: 22px;
}
.news_details_area .news_content .text h1,
.news_details_area .news_content .text h2,
.news_details_area .news_content .text h3,
.news_details_area .news_content .text h4,
.news_details_area .news_content .text h5,
.news_details_area .news_content .text h6 {
  margin-bottom: 22px;
}
.news_details_area .news_content .text .blog_meta ul li {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  color: #616161;
}
.news_details_area .news_content .text .blog_meta ul li i {
  color: #FF714A;
}
.news_details_area .news_content .text blockquote {
  background: #ffffff;
  padding: 15px 30px;
  border: 1px solid #f3f3f3;
  border-radius: 0;
  border-left: 5px solid #FF714A;
  margin: 30px 0;
}
.news_details_area .news_content .text blockquote p {
  margin-top: 0;
}
.news_details_area .news_content .text span {
  margin-top: 10px;
  font-weight: 600;
}
.news_details_area .comments {
  padding-top: 80px;
}
.news_details_area .comments .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 40px;
}
.news_details_area .comments .comment_list li:last-child {
  margin-bottom: 0;
}
.news_details_area .comments .comment_list li .comment_item {
  background: #F7F8F9;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .news_details_area .comments .comment_list li .comment_item {
    flex-direction: column;
  }
}
.news_details_area .comments .comment_list li .img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
}
.news_details_area .comments .comment_list li .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.news_details_area .comments .comment_list li .text .name {
  font-size: 26px;
  font-weight: 600;
}
.news_details_area .comments .comment_list li .text .name button {
  font-size: 15px;
  font-weight: 500;
  color: #FF714A;
  text-transform: uppercase;
}
.news_details_area .comments .comment_list li .text .name button:hover {
  color: #151515;
}
.news_details_area .comments .comment_list.child {
  padding-left: 40px;
}
.news_details_area .comments .comment_list.child li {
  margin-bottom: 0;
}
.news_details_area .comments .reply_comment_box {
  margin-bottom: 20px;
  position: relative;
}
.news_details_area .comments .reply_comment_box::before {
  position: absolute;
  top: -12px;
  left: 15px;
  display: inline-block;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #cf2d2d;
  border-bottom-color: #F7F8F9;
  border-bottom-color: #F7F8F9;
  border-left: 10px solid transparent;
  border-bottom-color: #cbcbcb;
  content: "";
}
.news_details_area .comments .reply_comment_box textarea {
  background: #F7F8F9;
  padding: 22px;
  border-radius: 5px;
  height: 120px;
  width: 100%;
  border: 1px solid #CBCBCB;
  transition: all 0.3s ease-out 0s;
}
.news_details_area .write_comments {
  padding-top: 60px;
}
.news_details_area .write_comments .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
}
.news_details_area .sidebar_search {
  background: #FF714A;
  border-radius: 5px;
  padding: 30px;
}
.news_details_area .sidebar_search .input_groups input {
  width: 100%;
  height: 54px;
  background: #ffffff;
  border: 0;
  border-radius: 5px;
  padding: 0 20px;
}
.news_details_area .sidebar_search .input_groups button {
  position: absolute;
  text-align: center;
  line-height: 54px;
  height: 54px;
  width: 54px;
  top: 0px;
  right: 0px;
  color: #ffffff;
  background: #151515;
  border-radius: 5px;
}
.news_details_area .sidebar_widget {
  box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #ffffff;
}
.news_details_area .sidebar_widget .title {
  margin-bottom: 30px;
  padding: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  position: relative;
  line-height: 36px;
  position: relative;
}
.news_details_area .sidebar_widget .title::before {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #FF714A;
}
.news_details_area .recent_post li .img {
  max-width: 110px;
}
.news_details_area .recent_post li .img img {
  border-radius: 8px;
}
.news_details_area .recent_post li .news_title {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
  font-weight: 600;
  color: #151515;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 5px;
}
.news_details_area .recent_post li span {
  font-size: 14px;
  color: #FF714A;
  font-weight: 600;
}
.news_details_area .recent_post li:hover .news_title {
  color: #FF714A;
}
.news_details_area .recent_post li + li {
  margin-top: 30px;
}
.news_details_area .categories li a {
  color: #151515;
  padding-left: 24px;
  position: relative;
}
.news_details_area .categories li a::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #FF714A;
}
.news_details_area .categories li a:hover {
  color: #FF714A;
}
.news_details_area .categories li + li {
  margin-top: 25px;
}
.news_details_area .tags a {
  font-size: 14px;
  font-weight: 500;
  background: #FF714A;
  margin: 0 10px 10px 0;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 5px;
}
.news_details_area .tags a:hover {
  background: #151515;
}

.contact_area {
  margin-bottom: -187px;
}
.contact_area .contact_info {
  padding: 40px;
  border-radius: 5px;
  background: #151515;
}
@media (max-width: 575.98px) {
  .contact_area .contact_info {
    padding: 28px;
  }
}
.contact_area .contact_info .info_item {
  margin-bottom: 30px;
}
.contact_area .contact_info .info_item:last-child {
  margin-bottom: 0;
}
.contact_area .contact_info .info_item .info_title {
  font-weight: 600;
  font-size: 30px;
  z-index: 9;
  color: #ffffff;
  margin-bottom: 26px;
}
.contact_area .contact_info .info_item ul li {
  margin-bottom: 20px;
}
.contact_area .contact_info .info_item ul li:last-child {
  margin-bottom: 0;
}
.contact_area .contact_info .info_item ul li .icon {
  position: relative;
  top: 4px;
}
.contact_area .contact_info .info_item ul li .icon i {
  color: #FF714A;
  font-size: 30px;
}
.contact_area .contact_info .info_item ul li .text .sub_title {
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 5px;
}
.contact_area .contact_info .info_item ul li .text p {
  color: #ffffff;
}
.contact_area .contact_info .info_item ul li .text a {
  color: #ffffff;
  line-height: 180%;
}
.contact_area .contact_info .info_item ul li .text a:hover {
  color: #FF714A;
}
.contact_area .contact-map {
  margin-bottom: -120px;
}
@media (max-width: 767.98px) {
  .contact_area .contact-map {
    margin-bottom: -100px;
  }
}
.contact_area .contact-map .maps {
  height: 670px;
  margin-top: 100px;
}
@media (max-width: 1399.98px) {
  .contact_area .contact-map .maps {
    height: 550px;
  }
}
@media (max-width: 991.98px) {
  .contact_area .contact-map .maps {
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .contact_area .contact-map .maps {
    height: 350px;
  }
}
.contact_area .contact-map .maps iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

.contact_form {
  padding-left: 40px;
}
@media (max-width: 1199.98px) {
  .contact_form {
    padding-left: 0;
  }
}
.contact_form .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 60px;
}
.contact_form .input-group .erro_msg {
  height: 16px;
}
.contact_form .input-group .form-control,
.contact_form .input-group .form-select {
  height: 60px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  border-radius: 10px !important;
  border: 1px solid transparent;
  background: #F7F8F9;
  color: #151515;
  transition: all 0.3s ease-out 0s;
}
.contact_form .input-group .form-control:focus,
.contact_form .input-group .form-select:focus {
  border-color: #FF714A;
}
.contact_form .input-group .form-control::-moz-placeholder, .contact_form .input-group .form-select::-moz-placeholder {
  opacity: 0.8;
}
.contact_form .input-group .form-control::placeholder,
.contact_form .input-group .form-select::placeholder {
  opacity: 0.8;
}
.contact_form .input-group .form-control.textarea {
  padding: 15px 30px;
  height: 240px;
  border-radius: 10px;
}

.training_area {
  padding: 80px 0;
}
.training_area .courses__item {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #e2e2e2;
  transition: all 0.2s ease-out 0s;
}
.training_area .courses__item:hover {
  border-color: #151515;
}
.training_area .courses__item .courses__item-thumb {
  overflow: hidden;
}
.training_area .courses__item img {
  border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.training_area .courses__item .courses__item-content {
  margin-top: 24px;
}
.training_area .courses__item .courses__item-content .title {
  margin: 14px 0 16px 0;
}
.training_area .courses__item .courses__item-content .title a {
  font-size: 22px;
  font-weight: 600;
  color: #151515;
  line-height: 1.3em;
}
.training_area .courses__item .courses__item-content .title a:hover {
  color: #FF714A;
}
.training_area .courses__item .avg-rating {
  color: #7F7E97;
  font-size: 14px;
  line-height: 1;
}
.training_area .courses__item .avg-rating i {
  color: #FF714A;
  letter-spacing: 0;
  margin-right: 5px;
}
.training_area .courses__item .author {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin: 0 0;
  line-height: 1;
  gap: 5px;
}
.training_area .courses__item .author a:hover {
  color: #151515;
}
.training_area .courses__item-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 23px 0 0;
}
.training_area .courses__item-bottom .button a {
  display: flex;
  padding: 10px 19px;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  border: 1px solid #000;
  background: #FF714A;
  box-shadow: 4px 4px 0px 0px #3D3D3D;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}
.training_area .courses__item-bottom .button a:hover {
  box-shadow: none;
}
.training_area .courses__item-bottom .price {
  font-size: 20px;
  line-height: 1;
  color: #151515;
  margin: 0 0;
}
.training_area .training_details .image {
  margin-bottom: 40px;
}
.training_area .training_details .image img {
  border-radius: 10px;
}
.training_area .training_details .text .title {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
}
.training_area .training_details .text .inner_title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.training_area .training_details .text p {
  margin-bottom: 24px;
}
.training_area .training_details .text .listed_info {
  margin-bottom: 24px;
}
.training_area .training_details .text .listed_info li {
  color: #151515;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}
.training_area .training_details .text .listed_info li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f058";
  left: 0px;
  position: absolute;
  color: #FF714A;
}
.training_area .training_details .text .listed_info li + li {
  margin-top: 10px;
}
.training_area .courses__details-sidebar {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  margin-left: 20px;
  padding: 30px 30px 20px;
  border-radius: 10px;
  position: sticky;
  top: 120px;
}
.training_area .courses__cost-wrap {
  border-radius: 8px;
  background: #5751E1;
  box-shadow: 0px 3px 15px 0px rgba(13, 9, 99, 0.26);
  padding: 20px 20px 20px;
  margin-bottom: 20px;
}
.training_area .courses__cost-wrap span {
  display: block;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}
.training_area .courses__cost-wrap .title {
  margin-bottom: 0;
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.training_area .courses__cost-wrap .title del {
  font-size: 20px;
  font-weight: 500;
  color: #9490FA;
}
.training_area .courses__information-wrap .title {
  font-size: 16px;
  margin-bottom: 24px;
}
.training_area .courses__information-wrap .list-wrap li {
  display: flex;
  align-items: center;
  color: #151515;
  gap: 15px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 15px;
  padding-bottom: 15px;
  line-height: 1;
}
.training_area .courses__information-wrap .list-wrap li span {
  display: block;
  margin-left: auto;
  color: #616161;
}

.apply_now_form .car_details_main .title {
  font-weight: 600;
  margin-bottom: 20px;
}
.apply_now_form .car_details_main input {
  border-radius: 8px;
}
.apply_now_form .car_details_main textarea {
  border-radius: 8px;
}
.apply_now_form .input_groups input[type=file] {
  padding-top: 8px;
  padding-left: 8px;
  line-height: 30px;
}
.apply_now_form .input_groups label {
  color: #151515;
  margin-bottom: 4px;
}
.apply_now_form .input_groups input[type=file] {
  padding-top: 8px;
  padding-left: 8px;
}
.apply_now_form .input_groups input,
.apply_now_form .input_groups textarea {
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 20px;
  background-color: #f2f2f2;
  transition: all 0.3s ease-out 0s;
}
.apply_now_form .input_groups input:focus,
.apply_now_form .input_groups textarea:focus {
  border-color: #151515;
}
.apply_now_form .input_groups textarea {
  height: 200px;
  padding: 20px;
}

.career_position_item {
  box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
}
.career_position_item .image {
  overflow: hidden;
  border-radius: 10px;
}
.career_position_item .image img {
  transition: all 0.3s ease-out 0s;
}
.career_position_item .text {
  margin-top: 16px;
  background: #F2F5FA;
  border-radius: 10px;
  padding: 20px;
}
.career_position_item .text .title {
  color: #151515;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease-out 0s;
}
.career_position_item .text .title:hover {
  color: #FF714A;
}
.career_position_item .text ul li {
  background: #ffffff;
  font-size: 15px;
  font-weight: 500;
  color: #151515;
  padding: 8px 14px;
  border-radius: 40px;
  transition: all 0.3s ease-out 0s;
}
.career_position_item .text ul li:hover {
  background: #151515;
  color: #ffffff;
}
.career_position_item .theme_btn {
  background: transparent;
  border: 1px solid #e2e2e2;
  border-radius: 50px;
  color: #151515;
  font-weight: 600;
  font-size: 14px;
}
.career_position_item .theme_btn:hover {
  background: #FF714A;
  color: #ffffff;
  border-color: #FF714A;
}
.career_position_item .theme_btn i {
  margin-left: 8px;
}
.career_position_item:hover .image img {
  transform: scale(1.05);
}

.career_details_area .text {
  padding-top: 40px;
}
.career_details_area .text .title {
  font-size: 28px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 24px;
}
.career_details_area .text p {
  margin-bottom: 24px;
}
.career_details_area .text ul {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 30px;
}
.career_details_area .text ul li {
  margin-bottom: 20px;
  position: relative;
  line-height: 28px;
}
.career_details_area .text ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #FF714A;
  border-radius: 50%;
  left: -20px;
  top: 10px;
}
.career_details_area .image {
  overflow: hidden;
  border-radius: 20px;
}
.career_details_area .job_details {
  background: #F2F5FA;
  padding: 30px;
  border-radius: 20px;
  position: sticky;
  top: 110px;
}
.career_details_area .job_details ul {
  padding-left: 0;
}
.career_details_area .job_details ul li {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 19px;
  margin-bottom: 19px;
}
.career_details_area .job_details ul li .title {
  font-weight: 600;
}
.career_details_area .job_details .theme_btn {
  border-radius: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 18px 30px;
}

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