/*-----------------------------------------------------------------------------------

 

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************


/*----------------------------------------*/
/* VARIBALES CSS START
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&amp;display=swap");
:root {
  --primary: #050505;
  --secondary: #28292A;
  --border: #EFEFEF;
  --bg: #F8F6F2;
  --theme: #FFC000;
  --black: #050505;
  --black-2: #28292A;
  --white: #FFFFFF;
  --white-2: #999999;
  --action: #FA6317;
}

/*----------------------------------------*/
/* TYPOGRAPHY CSS START
/*----------------------------------------*/
:root {
  --font_inter: "Inter", sans-serif;
  --font_spacegrotesk: "Space Grotesk", sans-serif;
  --font_awesome: "Font Awesome 6 Free";
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font_inter);
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  color: var(--primary);
  line-height: 1.14;
  font-family: var(--font_inter);
  font-weight: 500;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}
a:hover {
  color: var(--primary);
}

button {
  background-color: transparent;
  border: 0;
}

p {
  padding: 0;
  margin: 0;
  line-height: 2;
  font-weight: 400;
  font-size: 16px;
  color: var(--secondary);
}

strong {
  font-weight: 500;
}

video,
iframe,
img {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.medium {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .g-0 {
    padding-right: 15px;
    padding-left: 15px;
  }
  .row.g-0 {
    padding-right: 0;
    padding-left: 0;
  }
  br {
    display: none;
  }
}
main {
  display: inline-block;
  width: 100%;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

/*----------------------------------------*/
/* ANIMATION CSS START
/*----------------------------------------*/
.cf_parallax_image {
  overflow: hidden;
}

@keyframes wcBubble {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.5;
  }
  100% {
    scale: 1;
  }
}
@keyframes wcZoom {
  0% {
    scale: 1;
  }
  50% {
    scale: 0.5;
  }
  100% {
    scale: 1;
  }
}
@keyframes wcZoom_2 {
  0% {
    scale: 1;
  }
  50% {
    scale: 0.9;
  }
  100% {
    scale: 1;
  }
}
@keyframes wcSlideBottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal {
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes wcfadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes characters {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes sheen {
  50% {
    transform: translateY(-20px);
    color: var(--primary);
  }
}
/*----------------------------------------*/
/*  01. Global CSS START
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  z-index: 9;
  pointer-events: none;
  top: 0;
  opacity: 1;
  inset-inline-start: 0;
  width: 100vw;
  height: 100vh;
  background-repeat: repeat;
  background-position: top left;
  background-image: url(../imgs/writer/body-bg.html);
}

.container-xl {
  max-width: 1550px;
}

.text-slider-active .swiper-slide {
  width: auto;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.pos-abs {
  position: absolute;
}

@media (min-width: 1600px) {
  .container.large {
    max-width: 1550px;
  }
}
@media (min-width: 1600px) {
  .container.full-hd {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.circle-text {
  width: 140px;
  height: 140px;
  position: relative;
  border-radius: 100px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
@media only screen and (max-width: 991px) {
  .circle-text {
    width: 120px;
    height: 120px;
  }
}
.circle-text .text {
  animation: spinner 5s infinite linear;
}
.circle-text .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.circle-text:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 37px solid var(--white);
  border-radius: 50%;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.fix {
  overflow: hidden;
}

.bg-full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bg-full img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.has-top-line {
  position: relative;
  padding-top: 10px;
}
.has-top-line:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  top: 0;
  left: 0;
}

.has-bottom-line {
  position: relative;
  padding-bottom: 10px;
}
.has-bottom-line:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  bottom: 0;
  left: 0;
}

.has-left-line {
  position: relative;
  padding-inline-start: 35px;
  display: inline-block;
}
.has-left-line:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: currentColor;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
}

.has-right-line {
  position: relative;
  padding-inline-end: 35px;
  display: inline-block;
}
.has-right-line:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: currentColor;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
}

.t-btn-play {
  width: 56px;
  height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid currentColor;
  color: var(--primary);
  border-radius: 50%;
  transition: all 0.5s;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .t-btn-play {
    width: 50px;
    height: 50px;
    font-size: 12px;
    border-width: 1px;
  }
}
.t-btn-play:hover {
  color: var(--theme, --action);
}
.t-btn-play.light {
  color: var(--white);
}
.t-btn-play.light:hover {
  color: var(--white);
}
.t-btn-play.dark {
  color: var(--black);
}
.t-btn-play.dark:hover {
  color: var(--black);
}

.show-light {
  display: inline-block;
}
.dark .show-light {
  display: none;
}

.show-dark {
  display: none;
}
.dark .show-dark {
  display: inline-block;
}

.line-area {
  position: relative;
}

.lines {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
}
.lines .line {
  width: 1px;
  height: 100%;
  background-color: rgba(0, 81, 83, 0.031372549);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.t-btn-icon i {
  transform: rotate(-45deg);
  transition: all 0.3s;
  font-size: 20px;
  color: var(--primary);
}
.dir-rtl .t-btn-icon i {
  transform: rotate(-135deg);
}
.t-btn-icon:hover i {
  transform: rotate(0);
}
.dir-rtl .t-btn-icon:hover i {
  transform: rotate(-180deg);
}

.list-check li {
  position: relative;
  padding-inline-start: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px;
}
.list-check li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  background-image: url("../imgs/electrician/check-mark.html");
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  top: 4px;
  transform: rotateY(0deg);
}
.dir-rtl .list-check li::before {
  transform: rotateY(180deg);
}
.list-check li:last-child {
  margin-bottom: 0;
}

.list-plus li {
  position: relative;
  padding-inline-start: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  width: 100%;
}
.list-plus li::before {
  content: "+";
  position: absolute;
  inset-inline-start: 0;
  top: -10px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}
.list-plus li:not(:last-child) {
  margin-bottom: 10px;
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.pagination-with-dash {
  font-size: 14px;
  display: flex;
  gap: 10px;
  color: var(--primary);
  align-items: center;
}
.pagination-with-dash .dash {
  width: 100px;
  height: 1px;
  background-color: var(--primary);
}
.pagination-with-dash .swiper-pagination-current {
  display: flex;
  gap: 5px;
  align-items: center;
}
.pagination-with-dash .swiper-pagination-current:before {
  content: url(../imgs/icon/arrow-left.html);
}
.pagination-with-dash .swiper-pagination-total {
  display: flex;
  gap: 5px;
  align-items: center;
}
.pagination-with-dash .swiper-pagination-total:after {
  content: url(../imgs/icon/arrow-right.html);
}

.wcf__toggle_switcher .slide-toggle-wrapper {
  display: flex;
  justify-content: center;
}
.wcf__toggle_switcher .slide-toggle-btn {
  --switcher-width: 40px;
  --switcher-border-width: 2px;
  --switcher-indicator-width: 16px;
  background-color: #F0F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.wcf__toggle_switcher .slide-toggle-btn input {
  display: none;
}
.wcf__toggle_switcher .before_label,
.wcf__toggle_switcher .after_label {
  cursor: pointer;
  font-size: 18px;
  color: var(--primary);
}
.wcf__toggle_switcher .toggle-pane {
  display: none;
}
.wcf__toggle_switcher .toggle-pane.show {
  display: block;
}
.wcf__toggle_switcher.style-1 .switcher {
  display: inline-block;
  width: var(--switcher-width);
  height: 20px;
  background-color: #999999;
  border: var(--switcher-border-width) solid #999999;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.wcf__toggle_switcher.style-1 .switcher::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: var(--switcher-indicator-width);
  height: var(--switcher-indicator-width);
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s;
  transform: translate(0px, -50%);
}
.wcf__toggle_switcher.style-1 input:checked + .switcher::before {
  transform: translate(calc(var(--switcher-width) - (var(--switcher-indicator-width) + 2 * var(--switcher-border-width))), -50%);
}
.wcf__toggle_switcher.style-1 input:checked + .switcher {
  background-color: #000;
  border-color: #000;
}
.wcf__toggle_switcher.style-2 .before_label,
.wcf__toggle_switcher.style-2 .after_label {
  padding: 22px 38px;
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}
.wcf__toggle_switcher.style-2 .before_label:after,
.wcf__toggle_switcher.style-2 .after_label:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 60px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #e4122f;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s;
}
.wcf__toggle_switcher.style-2 .before_label.active,
.wcf__toggle_switcher.style-2 .after_label.active {
  color: var(--primary);
}
.wcf__toggle_switcher.style-2 .before_label.active:after,
.wcf__toggle_switcher.style-2 .after_label.active:after {
  opacity: 1;
  visibility: visible;
  transform: translatex(0);
}
.wcf__toggle_switcher.style-2 .before_label:after {
  transform: translatex(100%);
}
.wcf__toggle_switcher.style-2 .after_label:after {
  transform: translatex(-100%);
}
.wcf__toggle_switcher.style-2 .slide-toggle-btn {
  gap: 0;
  border-radius: 60px;
}

/*----------------------------------------*/
/* THEME CSS START
/*----------------------------------------*/
html {
  --container-max-widths: 1320px;
}
@media only screen and (max-width: 1399px) {
  html {
    --container-max-widths: 1140px;
  }
}
@media only screen and (max-width: 1199px) {
  html {
    --container-max-widths: 960px;
  }
}
@media only screen and (max-width: 991px) {
  html {
    --container-max-widths: 720px;
  }
}
@media only screen and (max-width: 767px) {
  html {
    --container-max-widths: 540px;
  }
}

body {
  background-color: #F5F5F5;
  color: var(--secondary);
}

.body-wrapper {
  background-color: var(--white);
}
.dark .body-wrapper {
  background-color: var(--black);
}

.img_anim_reveal {
  visibility: hidden;
  overflow: hidden;
}
.img_anim_reveal img {
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: left;
}

.anim-reveal {
  overflow: hidden;
}

.anim-reveal-line {
  overflow: hidden;
}

.color-white {
  color: var(--white);
}
.color-black {
  color: var(--black);
}
.color-primary {
  color: var(--primary);
}
.color-secondary {
  color: var(--secondary);
}

.bg-white {
  background-color: var(--white);
}
.bg-black {
  background-color: var(--black);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-transparent {
  background-color: transparent !important;
}

.zi-1 {
  z-index: 1;
}
.zi-2 {
  z-index: 2;
}
.zi-0 {
  z-index: 0;
}
.zi--1 {
  z-index: -1;
}

.box-layout {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden !important;
}

.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.header__area-6 {
  position: unset;
}

.vertically-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-indent-40 {
  text-indent: 40px;
}
.text-indent-50 {
  text-indent: 50px;
}

header {
  margin-bottom: -1px;
  z-index: 100;
}

section {
  margin-bottom: 30px;
}

.dir-rtl {
  direction: rtl;
}

.show-dark {
  display: inline-block;
}
.dark .show-dark {
  display: none;
}

.show-light {
  display: none;
}
.dark .show-light {
  display: inline-block;
}

.line-divider-sm {
  height: 0.5px;
  background-color: var(--black-9);
}
.dark .line-divider-sm {
  background-color: #E9E9E9;
}

.admin-bar header,
.admin-bar .body-wrapper {
  margin-top: 32px;
}

.swiper,
.swiper-container {
  direction: ltr;
}

.border-e-0 {
  border-inline-end: 0 !important;
}

.border-s-0 {
  border-inline-start: 0 !important;
}

.hover-zoom li a:hover {
  transform: scale(1.1);
}
.hover-rotate li a i {
  transition: all 1s;
}
.hover-rotate li a:hover i {
  transform: rotate(360deg);
}
.hover-space li a:hover {
  letter-spacing: 1px;
}
.hover-border-move li a {
  position: relative;
  transition: all 0.5s;
}
.hover-border-move li a:hover::after {
  width: 100%;
  left: auto;
  right: 0;
}
.hover-border-move li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  background-color: currentColor;
}

.menu-hover-default li a:hover {
  color: var(--primary);
}
.menu-hover-space li a:hover {
  letter-spacing: 1px;
}

.blog-img-leftmove img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.blog-img-leftmove:hover img {
  transform: scale(1.1) translateX(4%);
}
.blog-img-zoom {
  overflow: hidden;
}
.blog-img-zoom img {
  transform: scale(1);
  transition: all 1s;
}
.blog-img-zoom:hover img {
  transform: scale(1.1);
}

.anim_img_zoom img {
  transform: scale(1);
  transition: all 1s;
}
.anim_img_zoom:hover img {
  transform: scale(1.1);
}

.title-hover-flip {
  overflow: hidden;
  perspective: 1000px;
}
.title-hover-flip strong {
  font-weight: 400;
  position: relative;
  display: inline-block;
  transition: transform 0.5s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}
.title-hover-flip strong:before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-hover);
  transition: all 0.5s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
}
.title-hover-flip:hover strong {
  transform: rotateX(90deg) translateY(-22px);
}

.service-hover-default:hover {
  background-color: var(--white-6);
}
.service-rollover-right {
  position: relative;
  transition: all 0.5s;
}
.service-rollover-right::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--white-6);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.service-rollover-right:hover::after {
  width: 100%;
  left: auto;
  right: 0%;
}
.service-rollover-left {
  position: relative;
  transition: all 0.5s;
}
.service-rollover-left::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--white-6);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: -1;
}
.service-rollover-left:hover::after {
  width: 100%;
  right: auto;
  left: 0%;
}
.service-rollover-top {
  position: relative;
  transition: all 0.5s;
}
.service-rollover-top::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  background-color: var(--white-6);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.service-rollover-top:hover::after {
  height: 100%;
  bottom: auto;
  top: 0%;
}
.service-rollover-bottom {
  position: relative;
  transition: all 0.5s;
}
.service-rollover-bottom::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  background-color: var(--white-6);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.service-rollover-bottom:hover::after {
  height: 100%;
  top: auto;
  bottom: 0%;
}

/* Preloader */
.container-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
}
.container-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.container-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 9em;
  width: 9em;
  border: 10px solid var(--primary);
  border-top-color: var(--white);
  margin: 0 auto 3.5em auto;
}
@media only screen and (max-width: 767px) {
  .container-preloader .animation-preloader .spinner {
    margin: 0 auto 0.2em auto;
  }
}
.container-preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.container-preloader .animation-preloader .txt-loading .characters {
  color: var(--white);
  position: relative;
  display: inline-block;
}
.dark .container-preloader .animation-preloader .txt-loading .characters {
  color: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .container-preloader .animation-preloader .txt-loading .characters {
    font-size: 50px;
  }
}
.container-preloader .animation-preloader .txt-loading .characters:before {
  color: var(--primary);
  content: attr(data-text);
  animation: characters 4s infinite;
  left: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: rotateY(-90deg);
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
  animation-delay: 0.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
  animation-delay: 0.4s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
  animation-delay: 0.6s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
  animation-delay: 0.8s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
  animation-delay: 1s;
}
.container-preloader .loader-section {
  background-color: var(--white);
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.dark .container-preloader .loader-section {
  background-color: var(--white);
}
.container-preloader .loader-section.section-left {
  left: 0;
}
.container-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.scroll__down {
  display: flex;
  gap: 20px;
  align-items: center;
}
.scroll__down p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  text-transform: uppercase;
  color: var(--white);
}
.scroll__down span {
  width: 66px;
  height: 106px;
  border: 1px solid var(--black-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 89px;
}
.scroll__down span i {
  color: var(--white);
}
.scroll__down-wrapper {
  height: 425px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1399px) {
  .scroll__down-wrapper {
    height: 380px;
  }
}
@media only screen and (max-width: 1199px) {
  .scroll__down-wrapper {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .scroll__down-wrapper {
    height: auto;
    padding: 40px 0;
  }
}
.scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 0px;
  z-index: 9999;
  background: var(--white);
  border-radius: 100px;
  mix-blend-mode: exclusion;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.scroll-top.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top-writer {
  width: 105px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  background-image: url(../imgs/writer/go-top.html);
  background-position: right center;
  background-repeat: no-repeat;
  right: 16%;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
}
.dark .go-top-writer {
  color: var(--black);
  background-image: url(../imgs/writer/go-top-light.html);
}
.go-top-writer:hover {
  color: var(--primary);
}
.go-top-writer.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .go-top-writer br {
    display: block;
  }
}

.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 300ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font: var(--fa-font-solid);
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
}

.progress-wrap svg path {
  fill: var(--black-6);
}

.progress-wrap svg.progress-circle path {
  fill: var(--white);
  stroke: #e4122f;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.light .scroll__down p {
  color: var(--black);
}
.light .scroll__down span {
  border-color: var(--white-3);
}
.light .scroll__down span i {
  color: var(--black);
}
.light.go-top-writer {
  color: var(--black);
  background-color: transparent;
  background-image: url(../imgs/writer/go-top-light.html);
}
.light.progress-wrap {
  margin: 0;
  background-color: transparent;
}
.light.progress-wrap svg path {
  fill: var(--black);
}
.light.progress-wrap::after {
  color: var(--white);
}

/*----------------------------------------*/
/*  01. Button CSS START
/*----------------------------------------*/
.b-radius {
  border-radius: 12px;
}

.t-btn {
  display: inline-block;
}
.t-btn-default {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  background: transparent;
  border-radius: 100px;
  padding: 17px 35px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--black-6);
  overflow: hidden;
  transition: all 0.3s;
}
.t-btn-default:hover {
  color: var(--white);
}
.dark .t-btn-default {
  color: var(--black);
}
.dark .t-btn-default:hover {
  color: var(--black);
}
.dir-rtl .t-btn-default i {
  transform: rotateY(180deg);
}
.t-btn-border {
  gap: 10px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 16px 30px;
  border: 1px solid var(--white);
  overflow: hidden;
  transition: all 0.3s;
  z-index: 1;
  position: relative;
}
.t-btn-border:hover {
  color: var(--white);
}
.dark .t-btn-border {
  color: var(--black);
  border-color: var(--black);
}
.dark .t-btn-border:hover {
  color: var(--black);
}
.t-btn-primary {
  padding: 16px 25px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
  background-color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  gap: 10px;
  white-space: nowrap;
  filter: drop-shadow(0 2px 0 var(--primary));
}
.t-btn-primary:hover {
  color: var(--white);
  background-color: #e4122f;
  border-color: var(--primary);
}
.t-btn-primary.bordered {
  border-color: var(--secondary);
  background-color: transparent;
  color: var(--primary);
}
.t-btn-primary.bordered:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}
.t-btn-primary.bg-active {
  background-color: #e4122f;
  color: var(--white);
}
.t-btn-primary.bg-active:hover {
  background-color: var(--black);
  color: white;
}
.dir-rtl .t-btn-primary i {
  transform: rotateY(180deg);
}
.t-btn-circle {
  text-align: center;
  width: 70px;
  height: 70px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  border-radius: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #F9F9F9;
}
@media only screen and (max-width: 1199px) {
  .t-btn-circle {
    width: 50px;
    height: 50px;
  }
}
.t-btn-circle:hover {
  background-color: var(--primary);
}
.t-btn-oval {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  border: 1px solid #3F3A36;
  display: inline-block;
  padding: 32px 52px;
  text-align: center;
  transition: all 0.3s;
  border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
}
.dark .t-btn-oval {
  color: var(--black);
}
.t-btn-oval:hover {
  color: var(--primary);
}
.t-btn-light {
  color: var(--white) !important;
  border-color: var(--white) !important;
}
.t-btn-light:hover {
  color: var(--black) !important;
}
.t-btn-light span {
  background-color: var(--white) !important;
}
.t-btn-ellipse {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding: 45px 45px;
  position: relative;
  display: inline-block;
  background-color: var(--white);
  border-radius: 100%;
  border-top-left-radius: 200%;
  border-bottom-right-radius: 200%;
  z-index: 1;
}
.dark .t-btn-ellipse {
  color: var(--black);
  background-color: var(--black);
}
.t-btn-ellipse:before {
  position: absolute;
  content: "";
  width: calc(100% - 14px);
  height: calc(100% - 2px);
  background-color: var(--black);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  border-top-left-radius: 200%;
  border-bottom-right-radius: 200%;
}
.dark .t-btn-ellipse:before {
  background-color: #EDEDED;
}
.t-btn-appointment {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--blue-6);
  text-align: center;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 215px;
  width: 215px;
  padding: 20px;
}
@media only screen and (max-width: 1199px) {
  .t-btn-appointment {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .t-btn-appointment {
    width: 170px;
    height: 170px;
    font-size: 18px;
  }
}
.t-btn-appointment i {
  font-size: 24px;
  margin-bottom: 10px;
}
.t-btn-appointment:hover {
  color: var(--blue-3);
}
.t-btn-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dark .t-btn-link {
  color: var(--black);
}
.t-btn-link i {
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.t-btn-link:hover {
  color: var(--primary);
}
.t-btn-link:hover i {
  transform: rotate(0);
  color: var(--primary);
}

.about-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary);
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
.about-btn img {
  padding-left: 15px;
}

.readmore-btn img {
  margin-bottom: 3px;
}

.play_btn_5 {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
}
@media only screen and (max-width: 991px) {
  .play_btn_5 {
    height: 80px;
    width: 80px;
  }
}
.play_btn_5:hover {
  border-color: var(--primary);
}
.play_btn_5 i {
  font-size: 20px;
  color: var(--white);
}
.dark .play_btn_5 i {
  color: var(--black);
}
.dark .play_btn_5 img {
  filter: brightness(0);
}

.get-touch {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white-11);
  padding: 13px 18px;
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid var(--white);
  margin-inline-end: 40px;
}
.get-touch:hover {
  color: var(--white);
}
@media only screen and (max-width: 767px) {
  .get-touch {
    padding: 12px 10px;
    margin-inline-end: 12px;
  }
}

.t-btns-group {
  text-align: center;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .t-btns-group {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .t-btns-group {
    padding: 40px 0;
  }
  .t-btns-group br {
    display: block;
  }
}
.t-btns-group .btn-wrapper a {
  width: 140px;
  height: 140px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--black);
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .t-btns-group .btn-wrapper a {
    width: 110px;
    height: 110px;
  }
}
.t-btns-group .btn-wrapper:first-child a {
  margin-inline-end: -15px;
  background-color: var(--primary);
}
@media only screen and (max-width: 991px) {
  .t-btns-group .btn-wrapper:first-child a {
    margin-inline-end: 0;
  }
}
.t-btns-group .btn-wrapper:first-child a span {
  background-color: var(--white);
}
.t-btns-group .btn-wrapper:last-child a {
  margin-inline-start: -15px;
}
.dark .t-btns-group .btn-wrapper:last-child a {
  background: var(--black);
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .t-btns-group .btn-wrapper:last-child a {
    margin-inline-start: 0;
    margin-top: -15px;
  }
}
.t-btns-group .btn-wrapper:last-child a:hover {
  border: 0;
}
.t-btns-group .btn-wrapper:last-child a span {
  background-color: var(--primary);
}
.t-btns-group-wrap {
  height: 425px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--black-6);
}
.dark .t-btns-group-wrap {
  border-color: #F3F2F2;
}
@media only screen and (max-width: 1399px) {
  .t-btns-group-wrap {
    height: 380px;
  }
}
@media only screen and (max-width: 1199px) {
  .t-btns-group-wrap {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .t-btns-group-wrap {
    height: auto;
  }
}
.t-btns-group a:hover {
  border: 0;
}
.t-btns-group a span {
  background-color: var(--white);
}

.btn-hover-bgchange {
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.btn-hover-bgchange span {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  z-index: -1;
  border-radius: 100%;
  transition: all 1s;
  background-color: var(--primary);
  transform: translate(-50%, -50%);
}
.btn-hover-bgchange:hover {
  color: var(--black);
  border: 1px solid var(--primary);
}
.btn-hover-bgchange:hover span {
  width: 400px;
  height: 400px;
}

.t-btn-link-none {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.t-btn-link-none:hover {
  color: #e4122f;
}

/*
--------------------
t-btn-underline
--------------------
*/
.t-btn-underline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  white-space: nowrap;
}
.t-btn-underline:hover::before {
  width: 0;
}
.t-btn-underline::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: 0.3s;
}
.t-btn-underline i {
  font-size: 10px;
}
.dir-rtl .t-btn-underline i {
  transform: rotateY("180deg");
}

/*
--------------------
t-btn-normal
--------------------
*/
.t-btn-normal {
  display: inline-flex;
  position: relative;
  color: var(--secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  gap: 5px;
}
.t-btn-normal:hover {
  color: #e4122f;
}
.t-btn-normal i {
  font-size: 14px;
}
.dir-rtl .t-btn-normal i {
  transform: rotateY(180deg);
}

/*
--------------------
btn-text-flip
--------------------
*/
.btn-text-flip {
  perspective: 1000px;
}
.btn-text-flip:hover span {
  transform: rotateX(90deg) translateY(-12px);
  color: inherit;
}
.btn-text-flip span {
  position: relative;
  display: inline-block;
  padding: 0;
  transition: transform 0.5s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}
.btn-text-flip span:before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-text);
  transition: color 0.5s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  text-align: center;
}

.t-btn-group {
  display: flex;
}
.t-btn-group > *:nth-child(1) {
  transform: scale3d(0.5, 0.5, 1);
  margin-right: -70px;
}
.t-btn-group > *:nth-child(2) {
  transform: scale3d(1, 1, 1);
}
.t-btn-group > *:nth-child(3) {
  transform: scale3d(1, 1, 1);
  margin-left: 0;
}
.t-btn-group:hover > *:nth-child(1) {
  transform: scale3d(1, 1, 1);
  margin-right: 0;
}
.t-btn-group:hover > *:nth-child(2) {
  transform: scale3d(1, 1, 1);
}
.t-btn-group:hover > *:nth-child(3) {
  transform: scale3d(0.5, 0.5, 1);
  margin-left: -70px;
}

@keyframes mask_animation {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@keyframes mask_animation_2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
.btn-hover-default {
  transition: all 0.5s;
}
.btn-hover-default:hover {
  color: var(--black);
  background-color: var(--white);
}
.btn-hover-cross {
  overflow: hidden;
  position: relative;
  transition: all 1s;
}
.btn-hover-cross::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}
.btn-hover-cross:hover {
  border-color: var(--primary);
  background-color: transparent;
}
.btn-hover-cross:hover::after {
  height: 120%;
  opacity: 1;
}
.btn-hover-divide {
  overflow: hidden;
  position: relative;
  transition: all 1s;
  z-index: 1;
}
.btn-hover-divide::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}
.btn-hover-divide:hover {
  border-color: var(--primary);
  background-color: transparent !important;
  border-color: transparent;
}
.btn-hover-divide:hover::after {
  height: 400%;
  opacity: 1;
}
.btn-hover-cropping {
  overflow: hidden;
  position: relative;
  transition: all 1s;
}
.btn-hover-cropping::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(25deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}
.btn-hover-cropping:hover {
  border-color: var(--primary);
  background-color: transparent;
}
.btn-hover-cropping:hover::after {
  height: 400%;
  opacity: 1;
}
.btn-hover-mask {
  gap: 10px;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  border-radius: 5px;
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  border: 1px solid var(--white);
  z-index: 1;
}
.btn-hover-mask::after {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  position: absolute;
  content: attr(data-text);
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--white);
  -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.webp");
          mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.webp");
  -webkit-mask-size: 2300% 100%;
          mask-size: 2300% 100%;
  animation: mask_animation_2 0.7s steps(22) forwards;
}
.btn-hover-mask:hover {
  color: var(--white);
}
.btn-hover-mask:hover::after {
  animation: mask_animation 0.7s steps(22) forwards;
}
.dark .btn-hover-mask {
  border-color: var(--black);
}
.dark .btn-hover-mask::after {
  z-index: -1;
  color: var(--white);
  background-color: var(--black);
}
.dark .btn-hover-mask:hover {
  color: var(--black);
}
.btn-rollover-top {
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-rollover-top:before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: "";
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-rollover-top:hover {
  border-color: var(--primary);
  background-color: transparent;
}
.btn-rollover-top:hover::before {
  top: 0%;
  bottom: auto;
  height: 100%;
}
.btn-rollover-left {
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-rollover-left::before {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}
.btn-rollover-left:hover {
  border-color: var(--primary);
  background-color: transparent;
}
.btn-rollover-left:hover::before {
  left: 0%;
  right: auto;
  width: 100%;
}
.btn-rollover-cross {
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}
.btn-rollover-cross::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 100%;
  opacity: 0;
  border-bottom: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  transition: all 0.75s;
}
.btn-rollover-cross::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 100%;
  right: 100%;
  opacity: 0;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  transition: all 0.75s;
}
.btn-rollover-cross:hover {
  border-color: transparent;
  color: var(--primary);
}
.btn-rollover-cross:hover::before {
  bottom: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
}
.btn-rollover-cross:hover::after {
  top: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
}
.btn-parallal-border {
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}
.btn-parallal-border::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-bottom: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  border-radius: 5px;
  transition: all 0.75s;
}
.btn-parallal-border::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  top: 0;
  right: 0;
  opacity: 0;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  border-radius: 5px;
  transition: all 0.75s;
}
.btn-parallal-border:hover {
  border-color: transparent;
  color: var(--primary);
}
.btn-parallal-border:hover::before {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.btn-parallal-border:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
}

/*----------------------------------------*/
/*  01. MENU CSS START
/*----------------------------------------*/
.main-menu.menu-dark > ul > li > a {
  color: var(--black);
}
.main-menu.menu-light > ul > li > a {
  color: var(--white);
}
.main-menu > ul {
  display: flex;
}
.main-menu > ul > li:hover > a {
  color: #fff;
}
.main-menu > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 0;
}
.main-menu > ul > li:hover > ul.dp-menu li:hover > ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 100%;
}
.main-menu li {
  position: relative;
}
.main-menu li a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color:#fff;
  padding: 37px 15px;
  text-transform: capitalize;
}
.dark .main-menu li a {
  color: var(--black);
}
.main-menu ul.dp-menu {
  background-color: #232529;
  padding: 18px 0px;
  width: 250px;
  position: absolute;
  inset-inline-start: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
}
.main-menu ul.dp-menu ul {
  background: var(--black);
  padding: 18px 0px;
  width: 300px;
  position: absolute;
  inset-inline-start: calc(100% + 10px);
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}
.main-menu ul.dp-menu li {
  position: relative;
  padding: 0 25px;
}
.main-menu ul.dp-menu li:hover > a {
  color: var(--white);
  background-color: transparent;
}
.main-menu ul.dp-menu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}
.main-menu ul.dp-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 10px 0;
  background-color: transparent;
  border-radius: 8px;
  text-transform: capitalize;
}
.main-menu ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}
.main-menu ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}
.main-menu .has-mega-menu {
  position: static;
}
.main-menu li.menu-item-has-children > a:after {
  content: "\f107";
  font-family: var(--font_awesome);
  margin-inline-start: 5px;
  font-weight: 600;
  font-size: 14px;
}
.main-menu .mega-menu {
  background-color: var(--black);
  padding: 30px 50px;
  width: 100%;
  position: absolute;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 50px;
       column-gap: 50px;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
}
@media only screen and (max-width: 1399px) {
  .main-menu .mega-menu {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.main-menu .mega-menu li:has(ul) > a:after {
  content: "";
}
.main-menu .mega-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
}
.main-menu .mega-menu li a:hover {
  color: var(--white);
  background: #2C2C2F;
}
.main-menu .mega-menu .title {
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid #333337;
  padding-bottom: 20px;
  margin-bottom: 20px;
  pointer-events: none;
  border-radius: 0;
}
.main-menu .mega-style-2 {
  padding: 0 15%;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}
.main-menu .mega-style-2 .title {
  height: 70px;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
  padding-left: 30px;
}
.main-menu .mega-style-2 .title:after {
  position: absolute;
  content: "";
  width: 5000px;
  height: 1px;
  background-color: #333337;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu .mega-style-2 > li:not(:first-child) {
  border-left: 1px solid #333337;
}
.main-menu .mega-style-2 ul {
  -moz-column-count: 2;
       column-count: 2;
  position: relative;
  padding: 20px 0;
}
.main-menu .mega-style-2 ul:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 700px;
  background-color: #333337;
  top: 0;
  left: 50%;
  z-index: 1;
}
.main-menu .mega-style-2 ul li a {
  padding-left: 30px;
}
.main-menu .mega-style-3 {
  padding: 0 0 0 20px;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}
.main-menu .mega-style-3 .title {
  height: 70px;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
  padding-left: 30px;
}
.main-menu .mega-style-3 .title:after {
  position: absolute;
  content: "";
  width: 5000px;
  height: 1px;
  background-color: #333337;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu .mega-style-3 > li:not(:first-child) {
  border-left: 1px solid #333337;
}
.main-menu .mega-style-3 > li:last-child {
  border: none;
  width: 36vw;
}
@media only screen and (max-width: 1399px) {
  .main-menu .mega-style-3 > li:last-child {
    width: 32vw;
  }
}
.main-menu .mega-style-3 ul {
  -moz-column-count: 2;
       column-count: 2;
  position: relative;
  padding: 20px 0;
  -moz-column-gap: 0;
       column-gap: 0;
}
.main-menu .mega-style-3 ul:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 700px;
  background-color: #333337;
  top: 0;
  left: 50%;
  z-index: 1;
}
.main-menu .mega-style-3 ul li {
  margin: 0 10px;
}
.main-menu .mega-style-3 ul li a {
  padding-left: 20px;
}
.main-menu .mega-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.main-menu .mega-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 60px;
}
.main-menu .list-3-column ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media only screen and (max-width: 1399px) {
  .main-menu .list-3-column ul {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.main-menu .span-first-item ul li:first-child {
  grid-column: 1/-1;
  -moz-column-span: all;
       column-span: all;
}
.main-menu .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: var(--black);
  padding: 3px 7px;
  line-height: 1;
  border-radius: 2px;
  margin-inline-start: 8px;
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .main-menu-2 {
    display: none;
  }
}
.main-menu-2 li {
  display: inline-block;
  padding: 0 10px;
}
.main-menu-2 li a {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--white);
  padding: 10px;
  text-transform: capitalize;
}
.main-menu-2 li a:hover {
  color: var(--primary);
}
@media only screen and (max-width: 1399px) {
  .main-menu-2 li a {
    padding: 5px 0;
  }
}
.main-menu-3 li {
  display: inline-block;
  margin-right: 45px;
}
@media only screen and (max-width: 1199px) {
  .main-menu-3 li {
    margin-right: 25px;
  }
}
.main-menu-3 li:last-child {
  margin-right: 0;
}
.main-menu-3 li a {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.main-menu-3 li a:hover {
  color: var(--primary);
}
.main-menu-4 li {
  display: inline-block;
  margin-right: 50px;
}
.main-menu-4 li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  text-transform: uppercase;
}
.main-menu-4 li a:hover {
  color: var(--primary);
}

.mega-menu-thumb {
  width: 108%;
  aspect-ratio: 100/83;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .mega-menu-thumb {
    width: 100%;
    height: 100%;
  }
}
.mega-menu-thumb:after {
  position: absolute;
  content: "";
  width: 76%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(28, 29, 32, 0) 0%, #1C1D20 100%);
}
.mega-menu-thumb .laptop-view {
  width: 70%;
  aspect-ratio: 100/114;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  position: absolute;
  right: 70px;
  bottom: 0;
}

.mega-menu-counter__item {
  text-align: center;
  display: inline-block;
  margin-top: 35%;
  margin-left: 17%;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .mega-menu-counter__item {
    margin: 30px auto 50px;
  }
}
.mega-menu-counter__text p {
  font-size: 30px;
  line-height: 28px;
  color: var(--white);
  font-weight: 500;
}
.mega-menu-counter__number {
  font-size: 150px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--white);
  background: linear-gradient(136deg, #9479FF 0%, #FFA6D6 47.92%, #FFFCE3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
  .menu-with-number {
    display: none;
  }
}
.menu-with-number li {
  display: inline-block;
}
.menu-with-number li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  padding: 34px 40px;
  display: inline-block;
  text-transform: uppercase;
}
.menu-with-number li a:hover span {
  color: var(--white);
}
.menu-with-number li a:hover span::before {
  background-color: var(--white);
}
.menu-with-number li a.active span {
  color: var(--white);
}
.menu-with-number li a.active span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  right: 20px;
  top: 50%;
  background-color: var(--white);
}
.menu-with-number li a span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 10px;
  text-align: right;
  color: #999999;
  position: relative;
  transition: all 0.5s;
}
.menu-with-number li a span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  right: 20px;
  top: 50%;
  transition: all 0.5s;
  background-color: var(--black-6);
}

.sidebar-menu li {
  display: block;
  padding-bottom: 15px;
}
@media only screen and (max-width: 1919px) {
  .sidebar-menu li {
    padding-bottom: 10px;
  }
}
.sidebar-menu li a {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  padding: 10px 0;
  text-transform: uppercase;
}
.sidebar-menu li a:hover, .sidebar-menu li a.active {
  color: var(--primary);
}
@media only screen and (max-width: 1399px) {
  .sidebar-menu li a {
    padding: 5px 0;
  }
}

/* mean menu customize */
.offcanvas__menu-wrapper.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.offcanvas__menu-wrapper.mean-container .mean-nav > ul > li:last-child > a {
  border-bottom: 1px solid var(--black-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.offcanvas__menu-wrapper.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: var(--black);
  padding: 3px 7px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  padding-inline-start: 15px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  border-top: 1px solid var(--black-4);
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  outline: none;
  transform: translateY(var(--y)) translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
}
.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
  color: var(--black);
  border-color: var(--white-4);
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 20px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
  width: 54px;
  height: 54px;
  justify-content: center;
  font-weight: 300;
  border: none !important;
}
.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
  background-color: var(--white-4);
}
.dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
  right: 275px;
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 50px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--secondary);
  opacity: 1;
}
.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
  background-color: var(--white-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--black-4);
}
.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
  border-color: var(--white-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
  font-size: 20px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 12px 0;
  padding-inline-start: 30px;
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 18px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
  height: 58px;
}
@media only screen and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 22px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--black-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
  padding-left: 40px;
}
.offcanvas__menu-wrapper.mean-container .mean-bar {
  padding: 0;
  background: none;
  max-height: auto;
  overflow-y: scroll;
}
.offcanvas__menu-wrapper.mean-container .mean-bar::-webkit-scrollbar {
  width: 0;
}
.offcanvas__menu-wrapper.mean-container a.meanmenu-reveal {
  display: none !important;
}

.light .main-menu li a:hover {
  color: var(--primary);
}
.light .main-menu-2 li a {
  color: var(--black);
}
.light .main-menu-2 li a:hover {
  color: var(--primary);
}
.light .main-menu-3 li a {
  color: var(--black);
}
.light .main-menu-3 li a:hover {
  color: var(--primary);
}
.light .sidebar-menu li a {
  color: var(--black);
}
.light .sidebar-menu li a:hover {
  color: var(--primary);
}
.light .menu-with-number li a {
  color: var(--black);
}
.light .menu-with-number li a:hover span {
  color: var(--black);
}
.light .menu-with-number li a:hover span::before {
  background-color: var(--black);
}
.light .menu-with-number li a span {
  color: var(--black-9);
}
.light .menu-with-number li a span::before {
  background-color: var(--black-9);
}
.light .menu-with-number li a.active span {
  color: var(--black);
}
.light .menu-with-number li a.active span::before {
  background-color: var(--black);
}

/*----------------------------------------*/
/*  01. MODAL CSS START
/*----------------------------------------*/
.modal__dialog {
  width: 760px;
  max-width: 100%;
  margin-top: 100px;
}
@media only screen and (max-width: 991px) {
  .modal__dialog {
    width: 700px;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .modal__dialog {
    width: 350px;
  }
}
.modal__content {
  height: 500px;
}
@media only screen and (max-width: 767px) {
  .modal__content {
    height: 300px;
  }
}
.modal__content iframe {
  width: 100%;
  height: 100%;
}
.modal__close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -15px;
  right: -15px;
  z-index: 9;
  border-radius: 50px;
  font-size: 20px;
  color: var(--white);
  background: var(--black);
  transition: all 0.3s;
}
.modal__close:hover {
  color: var(--primary);
}
.modal__sfluence {
  width: 100%;
  height: 100%;
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  .modal__sfluence {
    padding: 20px 10px;
  }
}
.modal__sfluence-area {
  width: 100vw;
  height: 100vh;
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0.5);
}
.modal__sfluence-area.showed {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.modal__sfluence-area .close_btn {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0px;
  right: 20px;
  z-index: 9;
  border-radius: 50px;
  font-size: 30px;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__sfluence-area .close_btn:hover {
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .modal__sfluence-area .close_btn {
    right: 0;
  }
}
.modal__sfluence-area iframe,
.modal__sfluence-area video {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .modal__sfluence-area iframe,
  .modal__sfluence-area video {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 45%;
  }
}

/*----------------------------------------*/
/*  01. HERO CSS START
/*----------------------------------------*/
.progress__item p.title, .progress__item-2 p.title {
  padding: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  color: var(--white);
  padding-bottom: 15px;
  text-transform: uppercase;
}
.progress__item-2 {
  padding-bottom: 25px;
}

.light .progress__item p.title, .light .progress__item-2 p.title {
  color: var(--black);
}
.light .developer-skill__resume .sonny_progressbar .progress-percent {
  color: var(--black);
}

.cf-cta__text-wrapper {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  grid-gap: 45px;
}
@media only screen and (max-width: 991px) {
  .cf-cta__text-wrapper {
    grid-template-columns: 1fr;
  }
}
.cf-cta__btn .t-btn-default {
  font-size: 18px;
  font-weight: 600;
  padding: 35px 75px;
  background-color: var(--white);
  color: var(--black);
  text-transform: uppercase;
  border-width: 0;
}
.dark .cf-cta__btn .t-btn-default {
  background-color: var(--black);
  color: var(--white);
}
@media only screen and (max-width: 1199px) {
  .cf-cta__btn .t-btn-default {
    padding: 20px 40px;
    font-weight: 500;
  }
}
.dark .cf-cta__btn .t-btn-default:hover {
  color: var(--black);
}
.cf-cta__text {
  max-width: 250px;
  position: absolute;
  inset-inline-end: -30px;
  top: 47%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1199px) {
  .cf-cta__text {
    inset-inline-end: -130px;
    max-width: 270px;
  }
}
@media only screen and (max-width: 991px) {
  .cf-cta__text {
    inset-inline-end: 0;
    max-width: 270px;
  }
}
@media only screen and (max-width: 767px) {
  .cf-cta__text {
    position: static;
    transform: none;
  }
}
.cf-cta__text p {
  font-size: 18px;
}
.dark .cf-cta__text p {
  color: #555555;
}
.cf-cta__sec-title-wrapper {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cf-cta__sec-title-wrapper .sec-title-18 {
    margin-bottom: 20px;
    font-size: 40px;
  }
}

/*
-----------------------------
FEATURES STYLES 1
-----------------------------
*/
.cf_feature.style-1 .thumb {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .cf_feature.style-1 .thumb {
    margin-bottom: 30px;
  }
}
.cf_feature.style-1 .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cf_feature.style-1 .title:hover {
  color: #e4122f;
}
.cf_feature.style-1 .text {
  color: var(--primary);
}
.cf_feature.style-1 .btn-wrapper {
  display: none;
}

/*
-----------------------------
FEATURES STYLES 2
-----------------------------
*/
.cf_feature.text-design {
  padding: 60px;
  padding-left: 70px;
  padding-right: 0;
  border-left: 1px solid rgba(18, 18, 18, 0.06);
}
@media only screen and (max-width: 1199px) {
  .cf_feature.text-design {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .cf_feature.text-design {
    border: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cf_feature.text-design {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cf_feature.text-design .thumb {
  margin-bottom: 30px;
}
.cf_feature.text-design .title-2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.16;
  text-decoration-line: underline;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .cf_feature.text-design .title-2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.cf_feature.style-2 {
  padding: 60px;
  border-right: 1px solid rgba(18, 18, 18, 0.06);
}
@media only screen and (max-width: 1199px) {
  .cf_feature.style-2 {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cf_feature.style-2 {
    padding-left: 0;
  }
}
.cf_feature.style-2:first-child {
  padding-left: 0;
}
.cf_feature.style-2:last-child {
  border-right: 0;
  padding-right: 0;
}

/*
-----------------------------
FEATURES STYLES 3
-----------------------------
*/
.font-heading-Beatricetrial h1,
.font-heading-Beatricetrial h2,
.font-heading-Beatricetrial h3,
.font-heading-Beatricetrial h4,
.font-heading-Beatricetrial h5,
.font-heading-Beatricetrial h6 {
  font-family: var(--font_beatricetrial);
}

.cf_feature.style-3 {
  border-right: 1px solid #F1F1F1;
  border-top: 1px solid #F1F1F1;
  padding: 50px;
  padding-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .cf_feature.style-3 {
    padding: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .cf_feature.style-3 {
    flex-basis: 45%;
    border: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cf_feature.style-3 {
    padding-left: 0;
    margin-bottom: 0;
    flex-basis: 100%;
    padding-bottom: 20px;
  }
}
.cf_feature.style-3:first-child {
  padding-left: 0;
}
.cf_feature.style-3:last-child {
  border-right: 0;
}
.cf_feature.style-3:hover .title {
  padding-left: 15px;
}
.cf_feature.style-3:hover .title::before {
  left: 0;
}
.cf_feature.style-3 .content {
  overflow: hidden;
}
.cf_feature.style-3 .count-title {
  color: var(--primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 25px;
}
.cf_feature.style-3 .title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 25px;
  transition: 0.3s;
  position: relative;
}
.cf_feature.style-3 .title::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--primary);
}
.cf_feature.style-3 .title:hover {
  color: #e4122f;
}
.cf_feature.style-3 .text {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .cf_feature.style-3 .text {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .cf_feature.style-3 .text {
    margin-bottom: 20px;
  }
}
.cf_feature.style-3 .btn-underline {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--primary);
  text-transform: capitalize;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  text-transform: uppercase;
  color: #203484;
  font-family: var(--font_inter);
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  letter-spacing: -1.25px;
}
@media only screen and (max-width: 1919px) {
  .section-title {
    font-size: 52px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 25px !important;
  }
	.header-area {
   
    background: #fff !important;
}
}
.section-title.large {
  font-size: 64px;
  line-height: 1.12;
  letter-spacing: -1.6px;
}
@media only screen and (max-width: 1919px) {
  .section-title.large {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title.large {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title.large {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title.large {
    font-size: 20px !important;
  }
  .hero-area .hero-area-inner {
    padding-top: 70px !important;
    
}
.hero-area .hero-thumb .mask-image {
 
  top: 100px !important;
  left: 50px !important;
  
}
}

.section-spacing {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.section-spacing-top {
  padding-top: 20px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-top {
    padding-top: 0px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-top {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-top {
    padding-top: 0px;
  }
  .about-area .section-content .feature-list li {
    font-size: 14px !important;
    
}
}

.section-spacing-bottom {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-bottom {
    padding-bottom: 60px;
  }
}

@media (min-width: 1600px) {
  .container.large {
    max-width: 1550px;
  }
}

.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.4;
  visibility: visible;
}

.side-info-close {
  background: none;
  border: 0;
  color: var(--clr-common-white);
  font-size: 24px;
  padding: 0;
  transition: all 0.3s linear;
  background-color: var(--clr-theme-3);
  color: var(--clr-common-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
}
.side-info-close:hover {
  transform: rotate(90deg);
}

.side-info {
  background: var(--bg);
  height: 100%;
  position: fixed;
  z-index: 999;
  inset-inline-end: -100%;
  top: 0;
  width: 500px;
  padding: 40px 45px;
  overflow-y: scroll;
  transition: all 0.5s;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
@media (max-width: 575px) {
  .side-info {
    width: 100%;
    padding: 30px 30px;
  }
}

.side-info.info-open {
  inset-inline-end: 0;
}

.offset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offset-logo {
  width: 150px;
}
@media (max-width: 575px) {
  .offset-logo {
    width: 130px;
  }
}
.offset-logo img {
  width: 100%;
}

.offset-widget-box {
  margin-top: 40px;
}
.offset-widget-box .title {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 42px;
}
@media only screen and (max-width: 1919px) {
  .offset-widget-box .title {
    margin-bottom: 22px;
  }
}
.offset-widget-box .contact-meta > *:not(:first-child) {
  margin-top: 16px;
}
.offset-widget-box .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.offset-widget-box .contact-item .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  border: 1px solid var(--primary);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary);
}

/* mean menu customize */
.mobile-menu {
  margin-top: 40px;
}
.mobile-menu.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mobile-menu.mean-container .mean-nav > ul > li:last-child > a {
  border-bottom: 1px solid var(--border);
}
.mobile-menu.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.mobile-menu.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: var(--black-2);
  padding: 3px 7px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.mobile-menu.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  padding-inline-start: 0px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--secondary);
  text-transform: capitalize;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  outline: none;
  transform: translateY(var(--y)) translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a {
    font-size: 18px;
    font-weight: 500;
  }
}
.mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  width: 54px;
  height: 54px;
  justify-content: center;
  font-weight: 300;
  border: none !important;
}
.dir-rtl .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  right: 275px;
}
@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    height: 50px;
  }
}
.mobile-menu.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--border);
  opacity: 1;
}
.mobile-menu.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--border);
}
.mobile-menu.mean-container .mean-nav ul li li a {
  font-size: 16px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 12px 0;
  padding-inline-start: 15px;
}
.mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
  height: 58px;
}
@media only screen and (max-width: 991px) {
  .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 22px;
  }
}
.mobile-menu.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--border);
}
.mobile-menu.mean-container .mean-nav ul li li li a {
  padding-left: 40px;
}
.mobile-menu.mean-container .mean-bar {
  padding: 0;
  background: none;
  max-height: auto;
  overflow-y: scroll;
}
.mobile-menu.mean-container .mean-bar::-webkit-scrollbar {
  width: 0;
}
.mobile-menu.mean-container a.meanmenu-reveal {
  display: none !important;
}

/* header area style  */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-area__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  height: 90px;
}
@media only screen and (max-width: 1199px) {
  .header-area__inner {
    height: 70px;
  }
}
.header-area__inner > *:first-child {
  margin-inline-end: auto;
}
.header-area .header__logo {
  width: 175px;
}
@media only screen and (max-width: 1399px) {
  .header-area .header__logo {
    width: 160px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area .header__logo {
    width: 150px;
  }
}
.header-area .header__logo img {
  width: 100%;
}
.header-area .header__nav {
  margin-right: -50%;
  margin-left: 115px;
}
.header-area .main-menu li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.header-area .main-menu li a:hover {
  color: #e4122f;
}
.header-area .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area .header__meta {
    display: none;
  }
}
.header-area .t-btn-primary {
  padding: 14px 25px;
}
@media only screen and (max-width: 991px) {
  .header-area .t-btn-primary {
    padding: 11px 20px;
  }
}
.header-area .header__navicon i {
  font-size: 22px;
}

.sticky {
  position: fixed !important;
  top: 0;
  background: var(--white);
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  transition: 0.4s;
  box-shadow: 0px 20px 30px rgba(3, 4, 28, 0.1);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  border: none;
}
.sticky .header-area__inner {
  height: 70px;
}
.sticky .main-menu li a {
  padding: 27px 15px;
  color: #444;
  font-weight: 500;
}

/* header top area style  */
.header-top-area {
  background-color: #e6102f;
}
.header-top-area-inner {
  padding: 3px 0;
}
.header-top-area .contact-meta {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-top-area .contact-meta .text {
  color: #fff;
}
.header-top-area .contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-top-area .section-content {
  display: grid;
  gap: 0 60px;
  grid-template-columns: auto auto;
  justify-content: space-between;
}
.header-top-area .social-links {
  display: flex;
  gap: 10px;
}
.header-top-area .social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 50%;
}
.header-top-area .social-links a:hover {
  background-color: #e4122f;
  color: var(--white);
}

/* footer area style  */
.footer-area {
  background-color:#c9c9c9;
	    padding: 30px 0px 0px 0px !important;
}
.footer-area .section-title {
  max-width: 410px;
}
.footer-area .subscription-area-inner {
  padding-top: 96px;
  padding-bottom: 44px;
  display: grid;
  gap: 10px 60px;
  grid-template-columns: 1fr 510px;
  align-items: center;
  border-bottom: 2px solid var(--primary);
}
@media only screen and (max-width: 1919px) {
  .footer-area .subscription-area-inner {
    padding-top: 76px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area .subscription-area-inner {
    padding-top: 56px;
    padding-bottom: 34px;
    grid-template-columns: 1fr 470px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area .subscription-area-inner {
    grid-template-columns: 1fr;
  }
}
.footer-area .subscription-area-inner .subscribe-form {
  margin-top: 20px;
}
.footer-area .subscription-area-inner .subscribe-form .input-field {
  display: flex;
  gap: 10px;
}
.footer-area .subscription-area-inner .subscribe-form .input-field input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 0 20px;
  background-color: var(--bg);
  outline: 0;
  filter: drop-shadow(0px 2px 0px var(--primary));
}
.footer-area .subscription-area-inner .subscribe-form .input-field .t-btn-primary {
  padding: 0 40px;
}
.footer-area .footer-widget-wrapper-box {
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-wrapper-box {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area .footer-widget-wrapper-box {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .footer-area .copyright-area-inner .nav-links {
   
    gap: 15px 20px !important;
    
}
}
.footer-area .footer-widget-wrapper-box .area-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer-area .footer-widget-wrapper-box .area-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-area .footer-widget-wrapper {
  display: grid;
  gap: 30px 50px;
  grid-template-columns: 330px auto auto auto;
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: 260px auto auto auto;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: auto auto auto;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }
}
.footer-area .copyright-area-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.062745098);
  display: grid;
  gap: 10px 60px;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}
@media only screen and (max-width: 991px) {
  .footer-area .copyright-area-inner {
    grid-template-columns: auto;
    justify-content: center;
    text-align: center;
  }
}
.footer-area .copyright-area-inner .nav-links {
  display: flex;
  align-items: center;
  gap: 15px 27px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .footer-area .copyright-area-inner .nav-links {
    justify-content: center;
  }
}
.footer-area .copyright-area-inner .nav-links a:hover {
  color: #e4122f;
}
.footer-area .footer-widget-box .description-text {
  margin-top: 0px;
}
@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-box .description-text {
    margin-top: 21px;
  }
}
.footer-area .footer-widget-box .title {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-box .title {
    margin-bottom: 22px;
  }
}
.footer-area .footer-widget-box .contact-meta > *:not(:first-child) {
  margin-top: 16px;
}
.footer-area .footer-widget-box .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-area .footer-widget-box .contact-item .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  border: 1px solid var(--primary);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary);
}
.footer-area .footer-widget-box .contact-item .text a:hover {
  color: #e4122f;
}
.footer-area .footer-nav-list li {
  line-height: 2;
}
.footer-area .footer-nav-list li:not(:first-child) {
  margin-top: 10px;
}
.footer-area .footer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-area .footer-nav-list li a:hover {
  color: #e4122f;
}
.footer-area .footer-nav-list li a:hover i {
  color: #e4122f;
}
.footer-area .footer-nav-list li a i {
  color: var(--primary);
  transition: all 0.3s;
}

/* footer area 2 style  */
.footer-area-2 {
  background-color: var(--bg);
}
.footer-area-2 .section-title {
  max-width: 700px;
  margin-inline: auto;
}
.footer-area-2 .subscription-area-inner {
  padding-top: 138px;
  text-align: center;
  padding-bottom: 35px;
}
@media only screen and (max-width: 1919px) {
  .footer-area-2 .subscription-area-inner {
    padding-top: 108px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-2 .subscription-area-inner {
    padding-top: 68px;
  }
}
.footer-area-2 .subscription-area-inner .subscribe-form {
  margin-top: 38px;
  max-width: 510px;
  margin-inline: auto;
}
.footer-area-2 .subscription-area-inner .subscribe-form .input-field {
  display: flex;
  gap: 10px;
}
.footer-area-2 .subscription-area-inner .subscribe-form .input-field input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 0 20px;
  background-color: var(--bg);
  outline: 0;
  filter: drop-shadow(0px 2px 0px var(--primary));
}
.footer-area-2 .subscription-area-inner .subscribe-form .input-field .t-btn-primary {
  padding: 0 40px;
}
.footer-area-2 .footer-widget-wrapper-box {
  padding-bottom: 75px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .footer-area-2 .footer-widget-wrapper-box {
    padding-bottom: 60px;
  }
}
.footer-area-2 .footer-widget-wrapper {
  display: grid;
  gap: 30px 50px;
  grid-template-columns: 450px auto auto;
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .footer-area-2 .footer-widget-wrapper {
    grid-template-columns: 360px auto auto;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-2 .footer-widget-wrapper {
    grid-template-columns: auto auto auto;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-2 .footer-widget-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area-2 .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }
}
.footer-area-2 .copyright-area-inner {
  border: 1px solid #CCCCCC;
  display: grid;
  gap: 10px 60px;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 25px;
  border-radius: 5px 5px 0 0;
  border-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .footer-area-2 .copyright-area-inner {
    padding: 20px 20px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-2 .copyright-area-inner {
    grid-template-columns: auto;
    justify-content: center;
    text-align: center;
  }
}
.footer-area-2 .copyright-area-inner .nav-links {
  display: flex;
  align-items: center;
  gap: 15px 27px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .footer-area-2 .copyright-area-inner .nav-links {
    justify-content: center;
  }
}
.footer-area-2 .copyright-area-inner .nav-links a:hover {
  color: #e4122f;
}
.footer-area-2 .footer-widget-box .description-text {
  margin-top: 16px;
}
.footer-area-2 .footer-widget-box .title {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 32px;
}
.footer-area-2 .footer-widget-box .contact-meta > *:not(:first-child) {
  margin-top: 16px;
}
.footer-area-2 .footer-widget-box .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-area-2 .footer-widget-box .contact-item .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  border: 1px solid var(--primary);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary);
}
.footer-area-2 .footer-widget-box .contact-item .text a:hover {
  color: #e4122f;
}
.footer-area-2 .social-links {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}
.footer-area-2 .social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  font-size: 14px;
}
.footer-area-2 .social-links a:hover {
  background-color: #e4122f;
  color: var(--primary);
  border-color: transparent;
}
.footer-area-2 .footer-nav-list li {
  line-height: 2;
}
.footer-area-2 .footer-nav-list li:not(:first-child) {
  margin-top: 10px;
}
.footer-area-2 .footer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-area-2 .footer-nav-list li a:hover {
  color: #e4122f;
}
.footer-area-2 .footer-nav-list li a:hover i {
  color: #e4122f;
}
.footer-area-2 .footer-nav-list li a i {
  color: var(--primary);
  transition: all 0.3s;
}

/* hero area style  */
.hero-area {
  overflow: hidden;
}
.hero-area .hero-area-inner {
  padding-top: 137px;
  display: grid;
  gap: 40px 60px;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-area-inner {
    grid-template-columns: 340px auto;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-area-inner {
    grid-template-columns: auto;
  }
}
.hero-area .section-title {
  
}
.hero-area .section-content {
  padding: 40px 0;
}
.hero-area .section-content .text {
  
}
.hero-area .section-content .btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}
@media only screen and (max-width: 1199px) {
  .hero-area .section-content .btn-wrapper {
    margin-top: 22px;
  }
}
.hero-area .section-content .title-wrapper {
  margin-top: 22px;
}
@media only screen and (max-width: 1199px) {
  .hero-area .section-content .title-wrapper {
    margin-top: 12px;
  }
}
.hero-area .section-content .text-wrapper {
  margin-top: 24px;
}
@media only screen and (max-width: 1199px) {
  .hero-area .section-content .text-wrapper {
    margin-top: 14px;
  }
}
.hero-area .hero-thumb {
  width: 575px;
  position: relative;
}
@media only screen and (max-width: 1919px) {
  .hero-area .hero-thumb {
    width: 600px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-area .hero-thumb {
    width: 500px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area .hero-thumb {
    width: 440px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-thumb {
    width: 310px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-thumb {
    width: 100%;
    display: none;
  }
}
.hero-area .hero-thumb .mask-image {
  position: absolute;
  
  top: 100px;
  left: 50px;
  
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: center center;
          mask-position: center center;
  z-index: 1;
}
.hero-area .hero-thumb .mask-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* hero area 2 style  */
.hero-area-2 {
  background-color: var(--bg);
  overflow: hidden;
}
.hero-area-2 .hero-area-2-inner {
  padding-top: 90px;
  display: grid;
  gap: 40px 60px;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .hero-area-2 .hero-area-2-inner {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area-2 .hero-area-2-inner {
    grid-template-columns: 340px auto;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area-2 .hero-area-2-inner {
    grid-template-columns: auto;
  }
}
.hero-area-2 .hero-area-2-inner .area-shape-1 {
  position: absolute;
  bottom: 0;
  left: -312px;
  width: 870px;
}
@media only screen and (max-width: 1919px) {
  .hero-area-2 .hero-area-2-inner .area-shape-1 {
    left: -62px;
    width: 570px;
  }
}
.hero-area-2 .section-title {
  max-width: 530px;
}
.hero-area-2 .section-content {
  padding: 40px 0;
}
.hero-area-2 .section-content .text {
  max-width: 380px;
}
.hero-area-2 .section-content .btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}
@media only screen and (max-width: 1199px) {
  .hero-area-2 .section-content .btn-wrapper {
    margin-top: 22px;
  }
}
.hero-area-2 .section-content .title-wrapper {
  margin-top: 22px;
}
@media only screen and (max-width: 1199px) {
  .hero-area-2 .section-content .title-wrapper {
    margin-top: 12px;
  }
}
.hero-area-2 .section-content .text-wrapper {
  margin-top: 24px;
}
@media only screen and (max-width: 1199px) {
  .hero-area-2 .section-content .text-wrapper {
    margin-top: 14px;
  }
}
.hero-area-2 .hero-thumb {
  max-width: 1038px;
  margin-right: calc((100vw - var(--container-max-widths)) / -2 - 12px);
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .hero-area-2 .hero-thumb {
    width: 520px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area-2 .hero-thumb {
    width: auto;
  }
}
@media (max-width: 575px) {
  .hero-area-2 .hero-thumb {
    margin-right: -15px;
  }
}
.hero-area-2 .hero-thumb .mask-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-mask-image: url(../imgs/shape/hero-thumb-2-mask.webp);
          mask-image: url(../imgs/shape/hero-thumb-2-mask.webp);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: center center;
          mask-position: center center;
  z-index: 1;
}
.hero-area-2 .hero-thumb .mask-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* services area style  */
.service-area {
  background-color: var(--bg);
}
.service-area .section-title {
  max-width: 500px;
  margin-inline: auto;
}
.service-area .section-header {
  text-align: center;
}
.service-area .section-header .title-wrapper {
  margin-top: 10px;
}
.service-area .services-wrapper {
  display: grid;
  gap: 60px 60px;
  grid-template-columns: repeat(2, 440px);
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 1399px) {
  .service-area .services-wrapper {
    grid-template-columns: repeat(2, 400px);
  }
}
@media only screen and (max-width: 1199px) {
  .service-area .services-wrapper {
    grid-template-columns: repeat(2, 320px);
    gap: 40px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .service-area .services-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-area .services-wrapper .shape-1 {
  position: absolute;
  width: 490px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1399px) {
  .service-area .services-wrapper .shape-1 {
    width: 335px;
  }
}
@media only screen and (max-width: 767px) {
  .service-area .services-wrapper .shape-1 {
    display: none;
  }
}
.service-area .services-wrapper-box {
  margin-top: 0px;
}
.service-area .service-box {
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 0 40px 38px;
  background-color: var(--bg);
  filter: drop-shadow(0px 3px 0px var(--primary));
  margin-top: 40px;
  transition: all 0.3s;
}
@media only screen and (max-width: 1399px) {
  .service-area .service-box {
    padding: 0 30px 28px;
  }
}
.service-area .service-box:hover {
  transform: translateY(-5px);
}
.service-area .service-box .icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e4122f;
  filter: drop-shadow(0px 2px 0px var(--primary));
  margin-top: -40px;
}
.service-area .service-box .title {
  font-size: 24px;
  line-height: 1.33;
}
@media only screen and (max-width: 1199px) {
  .service-area .service-box .title {
    font-size: 20px;
  }
}
.service-area .service-box .content {
  margin-top: 25px;
}
@media only screen and (max-width: 1399px) {
  .service-area .service-box .content {
    margin-top: 40px;
  }
}
.service-area .service-box .text {
  margin-top: 10px;
}

/* services area 2 style  */
.service-area-2 .section-title {
  max-width: 580px;
  margin-inline: auto;
}
.service-area-2 .section-header {
  text-align: center;
}
.service-area-2 .section-header .title-wrapper {
  margin-top: 10px;
}
.service-area-2 .services-wrapper {
  display: grid;
  gap: 30px 30px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .service-area-2 .services-wrapper {
    gap: 20px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .service-area-2 .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .service-area-2 .services-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-area-2 .services-wrapper-box {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .service-area-2 .services-wrapper-box {
    margin-top: 30px;
  }
}
.service-area-2 .service-box {
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 40px 40px;
  background-color: var(--bg);
  box-shadow: 0px 3px 0px var(--primary);
  transition: all 0.3s;
}
@media only screen and (max-width: 1399px) {
  .service-area-2 .service-box {
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-area-2 .service-box {
    padding: 20px 20px;
  }
}
.service-area-2 .service-box:hover {
  transform: translateY(-5px);
}
.service-area-2 .service-box .icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e4122f;
  filter: drop-shadow(0px 2px 0px var(--primary));
}
.service-area-2 .service-box .title {
  font-size: 24px;
  line-height: 1.33;
}
@media only screen and (max-width: 1199px) {
  .service-area-2 .service-box .title {
    font-size: 20px;
  }
}
.service-area-2 .service-box .content {
  margin-top: 30px;
}
.service-area-2 .service-box .text {
  margin-top: 8px;
}

/* about area style  */
.about-area .section-title {
  max-width: 810px;
}
@media only screen and (max-width: 1199px) {
  .about-area .section-title {
    max-width: 610px;
  }
}
.about-area .section-header .title-wrapper {
  margin-top: 10px;
}
.about-area .section-content {
  margin-top: 20px;
  display: grid;
  gap: 20px 60px;
  grid-template-columns: auto 635px;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .about-area .section-content {
    grid-template-columns: auto 500px;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-area .section-content {
    grid-template-columns: auto 430px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 991px) {
  .about-area .section-content {
    grid-template-columns: auto;
  }
}
.about-area .section-content .thumb {
  max-width: 585px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--primary);
  filter: drop-shadow(0px 3px 0px var(--primary));
}
.about-area .section-content .thumb img {
  width: 100%;
}
.about-area .section-content .feature-list {
  margin-top: 22px;
}
.about-area .section-content .feature-list li {
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
  font-family: var(--font_inter);
  display: flex;
  gap: 15px;
  line-height: 1.77;
}
.about-area .section-content .feature-list li:not(:first-child) {
  margin-top: 18px;
}
@media only screen and (max-width: 1919px) {
  .about-area .section-content .feature-list li:not(:first-child) {
    margin-top: 8px;
  }
}
.about-area .section-content .feature-list li i {
  font-size: 14px;
  color: #203484;
  margin-top: 9px;
}
.about-area .section-content .btn-wrapper {
  margin-top: 32px;
}

/* about area 2 style  */
.about-area-2 .section-content {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: auto 560px;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .about-area-2 .section-content {
    grid-template-columns: auto 500px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-area-2 .section-content {
    grid-template-columns: auto 430px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 991px) {
  .about-area-2 .section-content {
    grid-template-columns: auto;
  }
}
.about-area-2 .section-content .thumb {
  max-width: 585px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--primary);
  filter: drop-shadow(0px 3px 0px var(--primary));
}
.about-area-2 .section-content .thumb img {
  width: 100%;
}
.about-area-2 .section-content .title-wrapper {
  margin-top: 10px;
}
.about-area-2 .section-content .text-wrapper {
  margin-top: 18px;
}
.about-area-2 .section-content .feature-list-wrapper {
  margin-top: 27px;
}
.about-area-2 .section-content .feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px 22px;
}
.about-area-2 .section-content .feature-list-item:not(:first-child) {
  margin-top: 29px;
}
.about-area-2 .section-content .feature-list-item .icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  margin-top: 2px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.about-area-2 .section-content .feature-list-item .title {
  font-size: 24px;
  line-height: 1.33;
}
.about-area-2 .section-content .feature-list-item .text {
  margin-top: 12px;
}

/* counter area style  */
.counter-area .counter-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 991px) {
  .counter-area .counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .counter-area .counter-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.counter-area .counter-box {
  background-color: var(--bg);
  padding: 20px 20px;
  border: 1px solid var(--primary);
  filter: drop-shadow(0px 2px 0px var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.counter-area .counter-box .icon {
  width: 86px;
  height: 86px;
  min-width: 86px;
  background-color: #e4122f;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .counter-area .counter-box .icon {
    width: 66px;
    height: 66px;
    min-width: 66px;
  }
}
.counter-area .counter-box .icon img {
  max-height: 45px;
}
@media only screen and (max-width: 1399px) {
  .counter-area .counter-box .icon img {
    max-width: 35px;
  }
}
.counter-area .counter-box .number {
  font-size: 62px;
}
@media only screen and (max-width: 1399px) {
  .counter-area .counter-box .number {
    font-size: 42px;
  }
}
.counter-area .counter-box .text {
  font-size: 18px;
  line-height: 1.4;
}
@media only screen and (max-width: 1399px) {
  .counter-area .counter-box .text {
    font-size: 16px;
  }
}
.counter-area .counter-box .content {
  display: grid;
  gap: 0px 10px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .counter-area .counter-box .content {
    grid-template-columns: auto;
  }
}

/* project area style  */
.project-area .section-title {
  max-width: 620px;
  margin-inline: auto;
}
@media only screen and (max-width: 1199px) {
  .project-area .section-title {
    max-width: 520px;
  }
}
.project-area .section-header {
  text-align: center;
}
.project-area .section-header .title-wrapper {
  margin-top: 10px;
}
.project-area .projects-wrapper-box {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .project-area .projects-wrapper-box {
    margin-top: 30px;
  }
}
.project-area .projects-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.project-area .projects-wrapper > * {
  display: inline-block;
  width: 40%;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1199px) {
  .project-area .projects-wrapper > * {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .project-area .projects-wrapper > * {
    width: 100%;
  }
}
.project-area .projects-wrapper > *.large {
  width: calc(60% - 30px);
}
@media only screen and (max-width: 1199px) {
  .project-area .projects-wrapper > *.large {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .project-area .projects-wrapper > *.large {
    width: 100%;
  }
}
.project-area .project-box {
  border: 1px solid var(--primary);
  border-radius: 16px;
  filter: drop-shadow(0px 3px 0px var(--black));
  background-color: var(--black);
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.project-area .project-box:hover .content {
  bottom: 20px;
  opacity: 1;
}
.project-area .project-box:hover .thumb img {
  transform: scale(1.1);
}
.project-area .project-box .thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .project-area .project-box .thumb {
    max-height: 280px;
  }
}
@media only screen and (max-width: 991px) {
  .project-area .project-box .thumb {
    max-height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .project-area .project-box .thumb {
    max-height: 300px;
  }
}
.project-area .project-box .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.project-area .project-box .content {
  position: absolute;
  bottom: 0px;
  width: 480px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg);
  padding: 30px 60px 38px;
  text-align: center;
  border: 1px solid var(--primary);
  border-radius: 20px;
  filter: drop-shadow(0px 3px 0px var(--primary));
  opacity: 0;
  transition: all 0.5s;
}
@media only screen and (max-width: 1399px) {
  .project-area .project-box .content {
    padding: 20px 30px 28px;
    width: 410px;
  }
}
@media only screen and (max-width: 1199px) {
  .project-area .project-box .content {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    border-radius: 0;
    border: none;
    filter: none;
  }
}
@media only screen and (max-width: 767px) {
  .project-area .project-box .content {
    padding: 20px 20px 18px;
  }
}
.project-area .project-box .title {
  font-size: 24px;
  line-height: 1.33;
}
.project-area .project-box .text {
  margin-top: 20px;
}

/* project area 2 style  */
.project-area-2 .section-title {
  max-width: 620px;
  margin-inline: auto;
}
@media only screen and (max-width: 1199px) {
  .project-area-2 .section-title {
    max-width: 520px;
  }
}
.project-area-2 .section-header {
  text-align: center;
}
.project-area-2 .section-header .title-wrapper {
  margin-top: 10px;
}
.project-area-2 .projects-wrapper-box {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .project-area-2 .projects-wrapper-box {
    margin-top: 30px;
  }
}
.project-area-2 .projects-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.project-area-2 .projects-wrapper > * {
  display: inline-block;
  width: calc((100% - 60px) / 3);
}
@media only screen and (max-width: 1199px) {
  .project-area-2 .projects-wrapper > * {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .project-area-2 .projects-wrapper > * {
    width: 100%;
  }
}
.project-area-2 .projects-wrapper > *.large {
  width: calc(44% - 20px);
}
@media only screen and (max-width: 1199px) {
  .project-area-2 .projects-wrapper > *.large {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .project-area-2 .projects-wrapper > *.large {
    width: 100%;
  }
}
.project-area-2 .projects-wrapper > *.small {
  width: calc(28% - 20px);
}
@media only screen and (max-width: 1199px) {
  .project-area-2 .projects-wrapper > *.small {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .project-area-2 .projects-wrapper > *.small {
    width: 100%;
  }
}
.project-area-2 .project-box {
  border: 1px solid var(--primary);
  border-radius: 16px;
  filter: drop-shadow(0px 3px 0px var(--black));
  background-color: var(--black);
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.project-area-2 .project-box:hover .content {
  bottom: 10px;
  opacity: 1;
}
.project-area-2 .project-box:hover .thumb img {
  transform: scale(1.1);
}
.project-area-2 .project-box .thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .project-area-2 .project-box .thumb {
    max-height: 280px;
  }
}
@media only screen and (max-width: 991px) {
  .project-area-2 .project-box .thumb {
    max-height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .project-area-2 .project-box .thumb {
    max-height: 300px;
  }
}
.project-area-2 .project-box .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.project-area-2 .project-box .content {
  position: absolute;
  bottom: 0px;
  width: calc(100% - 20px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg);
  padding: 40px 32px 38px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  filter: drop-shadow(0px 3px 0px var(--primary));
  opacity: 0;
  transition: all 0.5s;
}
@media only screen and (max-width: 1399px) {
  .project-area-2 .project-box .content {
    padding: 30px 27px 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .project-area-2 .project-box .content {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    border-radius: 0;
    border: none;
    filter: none;
  }
}
.project-area-2 .project-box .title {
  font-size: 24px;
  line-height: 1.33;
}
.project-area-2 .project-box .text {
  margin-top: 10px;
}

/* faq area style  */
.faq-area {
  background-color: var(--bg);
}
.faq-area-inner {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: 630px 585px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .faq-area-inner {
    grid-template-columns: 1fr 505px;
  }
}
@media only screen and (max-width: 1199px) {
  .faq-area-inner {
    grid-template-columns: 1fr 355px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 991px) {
  .faq-area-inner {
    grid-template-columns: 1fr;
  }
}
.faq-area .faq-thumb {
  max-width: 585px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--primary);
  filter: drop-shadow(0px 3px 0px var(--primary));
}
@media only screen and (max-width: 1199px) {
  .faq-area .faq-thumb {
    margin-top: 155px;
  }
}
@media only screen and (max-width: 991px) {
  .faq-area .faq-thumb {
    margin-top: 0px;
  }
}
.faq-area .faq-thumb img {
  width: 100%;
}
.faq-area .section-content .text-wrapper {
  margin-top: 14px;
}
.faq-area .accordion-faq {
  margin-top: 39px;
}
@media only screen and (max-width: 1199px) {
  .faq-area .accordion-faq {
    margin-top: 29px;
  }
}
.faq-area .accordion .accordion-button {
  font-size: 18px;
  line-height: 1.77;
  font-weight: 500;
  color: var(--primary);
  background-color: var(--bg);
  border: 0;
  box-shadow: none;
  padding: 19px 20px;
  letter-spacing: -0.47px;
}
.faq-area .accordion .accordion-button:not(.collapsed) {
  background-color: #e4122f;
  color: var(--white);
}
.faq-area .accordion .accordion-button:not(.collapsed)::after {
  content: "-";
  background-color: var(--white);
  color: #e4122f;
  padding-bottom: 6px;
}
.faq-area .accordion .accordion-button::after {
  content: "+";
  background-image: none;
  font-size: 33px;
  width: 30px;
  height: 30px;
  background-color: #e4122f;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  color: var(--white);
  border-radius: 50%;
}
.faq-area .accordion .accordion-item {
  border: 1px solid var(--primary);
  border-radius: 20px;
  filter: drop-shadow(0px 3px 0px var(--primary));
  overflow: hidden;
}
.faq-area .accordion .accordion-body {
  background-color: var(--bg);
  font-size: 16px;
  line-height: 2;
  padding: 0 30px 33px 20px;
  background-color: #e4122f;
  color: var(--white);
}
.faq-area .accordion .accordion-item:not(:first-child) {
  margin-top: 20px;
}

/* team area style  */
.team-area .section-title {
  max-width: 760px;
  margin-inline: auto;
}
@media only screen and (max-width: 1199px) {
  .team-area .section-title {
    max-width: 660px;
  }
}
@media only screen and (max-width: 991px) {
  .team-area .section-title {
    max-width: 560px;
  }
}
.team-area .section-header {
  text-align: center;
}
.team-area .section-header .title-wrapper {
  margin-top: 10px;
}
.team-area .team-wrapper-box {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .team-area .team-wrapper-box {
    margin-top: 30px;
  }
}
.team-area .team-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 991px) {
  .team-area .team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .team-area .team-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team-area .team-box {
  border: 1px solid var(--primary);
  padding: 30px 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 1199px) {
  .team-area .team-box {
    padding: 20px 20px;
  }
}
.team-area .team-box:hover .thumb img {
  transform: scale(1.1);
}
.team-area .team-box .thumb {
  border-radius: 16px;
  overflow: hidden;
}
.team-area .team-box .thumb img {
  transition: all 0.5s;
}
.team-area .team-box .content {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .team-area .team-box .content {
    margin-top: 20px;
  }
}
.team-area .team-box .name {
  font-size: 24px;
  line-height: 1.33;
}
.team-area .team-box .name a:hover {
  color: #e4122f;
}
.team-area .team-box .post {
  font-size: 16px;
  line-height: 2;
  margin-top: 4px;
}
.team-area .team-box .social-links {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.team-area .team-box .social-links a {
  font-size: 14px;
  color: #111111;
}
.team-area .team-box .social-links a:hover {
  color: #e4122f;
}

/* team area 2 style  */
.team-area-2 .section-title {
  max-width: 760px;
  margin-inline: auto;
}
@media only screen and (max-width: 1199px) {
  .team-area-2 .section-title {
    max-width: 660px;
  }
}
@media only screen and (max-width: 991px) {
  .team-area-2 .section-title {
    max-width: 560px;
  }
}
.team-area-2 .section-header {
  text-align: center;
}
.team-area-2 .section-header .title-wrapper {
  margin-top: 10px;
}
.team-area-2 .team-wrapper-box {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .team-area-2 .team-wrapper-box {
    margin-top: 30px;
  }
}
.team-area-2 .team-wrapper {
  display: grid;
  gap: 30px 75px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1399px) {
  .team-area-2 .team-wrapper {
    gap: 30px 30px;
  }
}
@media only screen and (max-width: 991px) {
  .team-area-2 .team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .team-area-2 .team-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team-area-2 .team-box:hover .thumb img {
  transform: scale(1.1);
}
.team-area-2 .team-box .thumb {
  border-radius: 16px;
  overflow: hidden;
}
.team-area-2 .team-box .thumb img {
  transition: all 0.5s;
  width: 100%;
}
.team-area-2 .team-box .content {
  margin-top: 10px;
  padding: 30px 25px 25px;
  border: 1px solid var(--primary);
  box-shadow: 0 3px 0 var(--primary);
  border-radius: 16px;
  background-color: var(--bg);
}
@media only screen and (max-width: 767px) {
  .team-area-2 .team-box .content {
    padding: 20px 20px 15px;
  }
}
.team-area-2 .team-box .name {
  font-size: 24px;
  line-height: 1.33;
}
.team-area-2 .team-box .name a:hover {
  color: #e4122f;
}
.team-area-2 .team-box .post {
  font-size: 16px;
  line-height: 2;
  margin-top: 4px;
}

/* blog area style  */
.blog-area .section-title {
  max-width: 470px;
}
@media only screen and (max-width: 1199px) {
  .blog-area .section-title {
    max-width: 400px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-area .section-title {
    max-width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-area .section-title {
    max-width: 100%;
  }
}
.blog-area .section-header {
  display: grid;
  gap: 20px 60px;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .blog-area .section-header {
    grid-template-columns: 1fr;
  }
}
.blog-area .section-header .title-wrapper {
  margin-top: 10px;
}
.blog-area .blogs-wrapper-box {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .blog-area .blogs-wrapper-box {
    margin-top: 30px;
  }
}
.blog-area .blogs-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
.blog-area .blogs-wrapper > *:nth-child(2n) .blog .thumb {
  order: 2;
}
@media only screen and (max-width: 1199px) {
  .blog-area .blogs-wrapper > *:nth-child(2n) .blog .thumb {
    order: inherit;
  }
}
.blog-area .blog {
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 30px 30px;
  display: grid;
  gap: 20px 30px;
  grid-template-columns: auto 1fr;
  align-items: center;
  background-color: var(--white);
  filter: drop-shadow(0px 3px 0px var(--primary));
}
@media only screen and (max-width: 1199px) {
  .blog-area .blog {
    padding: 20px 20px;
  }
}
@media (max-width: 575px) {
  .blog-area .blog {
    grid-template-columns: auto;
  }
}
.blog-area .blog:hover .thumb img {
  transform: scale(1.1);
}
.blog-area .blog:hover .title {
  color: #e4122f;
}
.blog-area .blog .thumb {
  border-radius: 16px;
  overflow: hidden;
  width: 520px;
}
@media only screen and (max-width: 1399px) {
  .blog-area .blog .thumb {
    width: 470px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-area .blog .thumb {
    width: 350px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-area .blog .thumb {
    width: 270px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-area .blog .thumb {
    width: 220px;
  }
}
@media (max-width: 575px) {
  .blog-area .blog .thumb {
    width: 100%;
  }
}
.blog-area .blog .thumb img {
  transition: all 0.5s;
}
.blog-area .blog .title {
  font-size: 30px;
  line-height: 1.2;
  margin-top: 22px;
  transition: all 0.5s;
}
@media only screen and (max-width: 1399px) {
  .blog-area .blog .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-area .blog .title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-area .blog .title {
    font-size: 22px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-area .blog .title {
    font-size: 20px;
  }
}
.blog-area .blog .meta span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_inter);
}
@media only screen and (max-width: 767px) {
  .blog-area .blog .meta span {
    font-size: 12px;
  }
}
.blog-area .blog .meta span:not(:first-child) {
  position: relative;
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .blog-area .blog .meta span:not(:first-child) {
    padding-left: 40px;
  }
}
.blog-area .blog .meta span:not(:first-child):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #CCCCCC;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .blog-area .blog .meta span:not(:first-child):before {
    left: 20px;
    height: 12px;
  }
}
.blog-area .blog .content-wrapper {
  padding: 0 20px;
}
@media only screen and (max-width: 991px) {
  .blog-area .blog .content-wrapper {
    padding: 0;
  }
}

/* blog area 2 style  */
.blog-area-2 .section-title {
  max-width: 540px;
}
@media only screen and (max-width: 1199px) {
  .blog-area-2 .section-title {
    max-width: 470px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-area-2 .section-title {
    max-width: 470px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-area-2 .section-title {
    max-width: 100%;
  }
}
.blog-area-2 .section-header {
  display: grid;
  gap: 20px 60px;
  grid-template-columns: 1fr 480px;
  align-items: flex-end;
}
@media only screen and (max-width: 1199px) {
  .blog-area-2 .section-header {
    grid-template-columns: 1fr 420px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-area-2 .section-header {
    grid-template-columns: 1fr;
  }
}
.blog-area-2 .section-header .title-wrapper {
  margin-top: 10px;
}
.blog-area-2 .blogs-wrapper-box {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .blog-area-2 .blogs-wrapper-box {
    margin-top: 30px;
  }
}
.blog-area-2 .blogs-wrapper {
  display: grid;
  gap: 40px 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 991px) {
  .blog-area-2 .blogs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .blog-area-2 .blogs-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-area-2 .blog:hover .thumb img {
  transform: scale(1.1);
}
.blog-area-2 .blog:hover .title {
  color: #e4122f;
}
.blog-area-2 .blog .thumb {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.blog-area-2 .blog .thumb img {
  width: 100%;
  transition: all 0.5s;
}
.blog-area-2 .blog .title {
  font-size: 24px;
  line-height: 1.33;
  transition: all 0.5s;
}
@media only screen and (max-width: 1199px) {
  .blog-area-2 .blog .title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-area-2 .blog .title {
    font-size: 20px;
  }
}
.blog-area-2 .blog .meta {
  margin-top: 24px;
}
@media only screen and (max-width: 1199px) {
  .blog-area-2 .blog .meta {
    margin-top: 14px;
  }
}
.blog-area-2 .blog .meta span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_inter);
}
@media only screen and (max-width: 767px) {
  .blog-area-2 .blog .meta span {
    font-size: 12px;
  }
}
.blog-area-2 .blog .meta span:not(:first-child) {
  position: relative;
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .blog-area-2 .blog .meta span:not(:first-child) {
    padding-left: 40px;
  }
}
.blog-area-2 .blog .meta span:not(:first-child):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #CCCCCC;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .blog-area-2 .blog .meta span:not(:first-child):before {
    left: 20px;
    height: 12px;
  }
}
.blog-area-2 .blog .content-wrapper {
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .blog-area-2 .blog .content-wrapper {
    margin-top: 20px;
  }
}

/* counter area 2 style  */
.counter-area-2-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: 420px 1fr;
}
@media only screen and (max-width: 1399px) {
  .counter-area-2-inner {
    grid-template-columns: 370px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .counter-area-2-inner {
    grid-template-columns: 1fr;
  }
}
.counter-area-2 .counter-thumb {
  border-radius: 16px;
  border: 1px solid rgb(5, 5, 5);
  box-shadow: 0px 3px 0px 0px rgb(5, 5, 5);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.counter-area-2 .counter-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.counter-area-2 .note-box {
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.counter-area-2 .note-box .text {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.12px;
  text-transform: uppercase;
  background-color: #e4122f;
  display: inline-block;
  padding: 32px 45px;
  border-radius: 12px;
}
@media (max-width: 575px) {
  .counter-area-2 .note-box .text {
    font-size: 26px;
    padding: 22px 25px;
  }
}
.counter-area-2 .counter-box .number {
  font-size: 87px;
  font-weight: 300;
  line-height: 0.82;
}
@media only screen and (max-width: 1399px) {
  .counter-area-2 .counter-box .number {
    font-size: 77px;
  }
}
@media only screen and (max-width: 991px) {
  .counter-area-2 .counter-box .number {
    font-size: 67px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-area-2 .counter-box .number {
    font-size: 47px;
  }
}
.counter-area-2 .counter-box .text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .counter-area-2 .counter-box .text {
    font-size: 16px;
    line-height: 1.2;
  }
}
.counter-area-2 .counter-box .content {
  display: grid;
  gap: 15px 30px;
  grid-template-columns: 170px 1fr;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .counter-area-2 .counter-box .content {
    grid-template-columns: 150px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .counter-area-2 .counter-box .content {
    grid-template-columns: 130px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .counter-area-2 .counter-box .content {
    grid-template-columns: 90px 1fr;
  }
}
.counter-area-2 .counter-wrapper {
  background: rgb(255, 192, 0);
  border: 1px solid rgb(5, 5, 5);
  box-shadow: 0px 3px 0px 0px rgb(5, 5, 5);
  border-radius: 20px;
  padding: 116px 60px;
  display: grid;
  gap: 100px;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 1399px) {
  .counter-area-2 .counter-wrapper {
    gap: 90px;
    padding: 76px 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .counter-area-2 .counter-wrapper {
    gap: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .counter-area-2 .counter-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .counter-area-2 .counter-wrapper {
    padding: 46px 30px;
  }
}
@media (max-width: 575px) {
  .counter-area-2 .counter-wrapper {
    grid-template-columns: 1fr;
  }
}

/* testimonial area style  */
.testimonial-area .testimonial-wrapper {
  position: relative;
}
.testimonial-area .swiper {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 88px 65px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  background-color: var(--bg);
  filter: drop-shadow(0px 3px 0px var(--primary));
}
@media only screen and (max-width: 1399px) {
  .testimonial-area .swiper {
    max-width: 890px;
    padding: 60px 58px 45px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-area .swiper {
    max-width: 710px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-area .swiper {
    padding: 40px 38px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-area .swiper {
    padding: 30px 20px 25px;
  }
}
.testimonial-area .nav-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 991px) {
  .testimonial-area .nav-wrapper {
    display: none;
  }
}
.testimonial-area .nav-wrapper [role=button] {
  width: 70px;
  height: 70px;
  background-color: transparent;
  border: 1.75px solid rgb(227, 227, 227);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.5s;
  font-size: 22px;
}
.testimonial-area .nav-wrapper [role=button]:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: transparent;
}
.testimonial-area .nav-wrapper [role=button]:hover img {
  filter: brightness(10);
}
.dir-rtl .testimonial-area .nav-wrapper [role=button] img {
  transform: rotateY(180deg);
}

.testimonial-content {
  text-align: center;
}
.testimonial-content .icon {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.testimonial-content .icon i {
  font-size: 16px;
  color: #e4122f;
}
.testimonial-content .text {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.33px;
}
@media only screen and (max-width: 767px) {
  .testimonial-content .text {
    font-size: 18px;
  }
}
.testimonial-content .name {
  font-size: 24px;
  line-height: 1.33;
}
@media only screen and (max-width: 1919px) {
  .testimonial-content .name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-content .name {
    font-size: 16px;
  }
}
.testimonial-content .designation {
  font-size: 16px;
  display: inline-block;
  margin-top: 4px;
  line-height: 2;
}
.testimonial-content .text-wrapper {
  margin-top: 47px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-content .text-wrapper {
    margin-top: 37px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-content .text-wrapper {
    margin-top: 27px;
  }
}
.testimonial-content .meta {
  margin-top: 57px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-content .meta {
    margin-top: 37px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-content .meta {
    margin-top: 27px;
  }
}

.pagination-wrapper {
  margin-top: 67px;
}
@media only screen and (max-width: 1199px) {
  .pagination-wrapper {
    margin-top: 47px;
  }
}
.pagination-wrapper .swiper-pagination-bullets {
  display: flex;
  gap: 15px;
  justify-content: center;
  cursor: pointer;
}
.pagination-wrapper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #DEDEDE;
  opacity: 1;
  margin: 0 !important;
}
.pagination-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}

/* breadcrumb style  */
.breadcrumb {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 0;
}
.breadcrumb li {
  display: inline;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  font-family: var(--font_inter);
	color: #fff;
}
.breadcrumb li + li:before {
  padding: 0 20px;
  color: #fff;
  content: "\f105";
  font-family: var(--font_awesome);
  font-weight: 700;
}
.breadcrumb li a {
  color: #fff;
}

/* page title area style  */
.page-title-area {
 
  overflow: hidden;
}
.page-title-area-inner {
  position: relative;
}
.page-title-area-inner .area-shape-1 {
  position: absolute;
  left: 45%;
  bottom: 0;
  width: 680px;
}
@media only screen and (max-width: 1399px) {
  .page-title-area-inner .area-shape-1 {
    width: 630px;
  }
}
@media only screen and (max-width: 1199px) {
  .page-title-area-inner .area-shape-1 {
    width: 530px;
  }
}
.page-title-area-inner .section-content {
  margin-top: 70px;
  margin-bottom: 10px;
}

/* service details area style  */
.service-details-area-inner {
  display: grid;
  gap: 50px 30px;
}
@media only screen and (max-width: 1399px) {
  .service-details-area-inner {
    grid-template-columns: 750px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .service-details-area-inner {
    grid-template-columns: 580px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .service-details-area-inner {
    grid-template-columns: auto;
  }
}
.service-details-area .details-content-wrapper .heading {
  font-size: 40px;
  line-height: 1.2;
}
@media only screen and (max-width: 1199px) {
  .service-details-area .details-content-wrapper .heading {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .service-details-area .details-content-wrapper .heading {
    font-size: 19px !important;
  }
  .service-details-area .details-content-wrapper .services-wrapper-box {
    margin-top: 0px !important;
}
.service-details-area .details-content-wrapper .service-box {

  margin-top: 25px !important;
}
}
.service-details-area .details-content-wrapper .thumb {
  border-radius: 16px;
  overflow: hidden;
}
.service-details-area .details-content-wrapper .text-wrapper:not(:first-child) {
  margin-top: 21px;
}
.service-details-area .details-content-wrapper .heading + .text-wrapper {
  margin-top: 19px;
}
.service-details-area .details-content-wrapper .services-wrapper-box {
  margin-top: 32px;
}
.service-details-area .details-content-wrapper .services-wrapper-box + .text-wrapper {
  margin-top: 27px;
}
.service-details-area .details-content-wrapper .text-wrapper + .thumb {
  margin-top: 55px;
}
.service-details-area .details-content-wrapper .services-wrapper {
  display: grid;
  gap: 30px 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .service-details-area .details-content-wrapper .services-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-details-area .details-content-wrapper .service-box {
  border-radius: 16px;
  padding: 0 25px 25px;
  background-color: #e00f26;
  margin-top: 40px;
}
@media only screen and (max-width: 1399px) {
  .service-details-area .details-content-wrapper .service-box {
    padding: 0 30px 28px;
  }
}
.service-details-area .details-content-wrapper .service-box .icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e4122f;
  filter: drop-shadow(0px 2px 0px var(--primary));
  margin-top: -40px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .service-details-area .details-content-wrapper .service-box .icon {
    margin-left: 0;
  }
}
.service-details-area .details-content-wrapper .service-box .title {
  font-size: 18px;
  line-height: 1.77;
}
.service-details-area .details-content-wrapper .service-box .content {
  margin-top: 23px;
}
.service-details-area .details-content-wrapper .service-box .text {
  margin-top: 9px;
}
.service-details-area .details-content-wrapper .feature-list {
  margin-top: 17px;
}
.service-details-area .details-content-wrapper .feature-list ul {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 56px;
       column-gap: 56px;
}
@media only screen and (max-width: 767px) {
  .service-details-area .details-content-wrapper .feature-list ul {
    -moz-column-count: auto;
         column-count: auto;
  }
}
.service-details-area .details-content-wrapper .feature-list ul li {
  font-size: 16px;
  line-height: 2;
  display: inline-flex;
  gap: 15px;
  margin-top: 11px;
}
@media only screen and (max-width: 767px) {
  .service-details-area .details-content-wrapper .feature-list ul li {
    width: 100%;
  }
}
.service-details-area .details-content-wrapper .feature-list ul li i {
  font-size: 16px;
  color: #e4122f;
  margin-top: 7px;
}
.service-details-area .sidebar-wrapper {
  max-width: 500px;
}
.service-details-area .sidebar-box {
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 30px 30px;
  filter: drop-shadow(0px 3px 0px var(--primary));
  background-color: white;
}
.service-details-area .sidebar-box.service {
  padding: 0;
  border: 0;
  border-radius: 0;
  filter: none;
}
.service-details-area .sidebar-box:not(:first-child) {
  margin-top: 40px;
}
.service-details-area .sidebar-box .heading {
  font-size: 24px;
  line-height: 1.33;
}
.service-details-area .sidebar-box .service-list {
  margin-top: 22px;
}
.service-details-area .sidebar-box .service-list li:not(:first-child) {
  margin-top: 10px;
}
.service-details-area .sidebar-box .service-list li a {
  font-size: 18px;
  line-height: 1.77;
  display: flex;
  gap: 0 10px;
  justify-content: space-between;
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 14px 40px;
  align-items: center;
  filter: drop-shadow(0px 3px 0px var(--primary));
  background-color: var(--bg);
  transition: all 0.3s;
}
.service-details-area .sidebar-box .service-list li a:hover {
  transform: translateY(-2px);
}
.service-details-area .sidebar-box .service-list li a.active {
  background-color: #e4122f;
  color: var(--white);
}
.service-details-area .sidebar-box .contact-meta {
  margin-top: 24px;
  margin-bottom: 2px;
}
.service-details-area .sidebar-box .contact-meta > *:not(:first-child) {
  margin-top: 8px;
}
.service-details-area .sidebar-box .contact-meta .contact-item {
  display: flex;
  align-items: center;
  gap: 17px;
}
.service-details-area .sidebar-box .contact-meta .contact-item:hover a {
  color: #e4122f;
}
.service-details-area .sidebar-box .contact-meta .contact-item .icon i {
  font-size: 14px;
  color: #e4122f;
}
.service-details-area .sidebar-box .contact-meta .contact-item .text {
  font-size: 16px;
  line-height: 2;
  display: inline-block;
}

/* contact area style  */
.contact-area .contact-formwrap {
  display: grid;
  gap: 20px 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 767px) {
  .contact-area .contact-formwrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-area .contact-formwrap .messages,
.contact-area .contact-formwrap .name {
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .contact-area .contact-formwrap .messages,
  .contact-area .contact-formwrap .name {
    grid-column: auto;
  }
}
.contact-area .contact-formfield input,
.contact-area .contact-formfield textarea {
  font-size: 16px;
  line-height: 2;
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #CCCCCC;
  border-radius: 20px;
  outline: none;
  background-color: var(--white);
  transition: all 0.5s;
  resize: none;
}
.contact-area .contact-formfield input:focus,
.contact-area .contact-formfield textarea:focus {
  border-color: var(--primary);
}
.contact-area .contact-formfield input::-moz-placeholder, .contact-area .contact-formfield textarea::-moz-placeholder {
  color: var(--primary);
}
.contact-area .contact-formfield input::placeholder,
.contact-area .contact-formfield textarea::placeholder {
  color: var(--primary);
}
.contact-area .contact-formfield textarea {
  height: 175px;
}
.contact-area .submit-btn {
  margin-top: 20px;
}
.contact-area .contact-box {
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 60px 54px;
  background-color: var(--bg);
  display: grid;
  gap: 40px 50px;
  grid-template-columns: 1fr 500px;
  align-items: flex-start;
  filter: drop-shadow(0 3px 0 var(--primary));
}
@media only screen and (max-width: 1399px) {
  .contact-area .contact-box {
    grid-template-columns: 1fr 410px;
  }
}
@media only screen and (max-width: 1199px) {
  .contact-area .contact-box {
    grid-template-columns: 1fr;
    padding: 40px 34px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-area .contact-box {
    padding: 30px 24px;
  }
}
.contact-area .form-thumb {
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .contact-area .form-thumb {
    aspect-ratio: 100/60;
  }
}
.contact-area .form-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .contact-area .section-title {
    font-size: 40px;
  }
}
.contact-area .contact-wrap {
  margin-top: 30px;
}
.contact-area .contact-meta-box {
  margin-top: 0px;
}
.contact-area .contact-meta {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1199px) {
  .contact-area .contact-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .contact-area .contact-meta {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-area .contact-item {
  border: 1px solid var(--primary);
  border-radius: 20px;
  background-color:#c9c9c9;
  padding: 35px 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  filter: drop-shadow(0 3px 0 var(--primary));
}
@media (max-width: 575px) {
  .contact-area .contact-item {
    padding: 24px 24px;
    display: grid;
  }
}
.contact-area .contact-item .icon {
  width: 65px;
  height: 65px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  min-width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-area .contact-item .icon i {
  font-size: 25px;
  color: #e4122f;
}
.contact-area .contact-item .title {
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.46px;
}
.contact-area .contact-item .text {
  letter-spacing: -0.18px;
}
.ijfSyc{
	display:none !important;
}
.hQDBEg{
	display:none !important;
}
.contact-area .contact-item .text a:hover {
  color: #e4122f;
}

/* map area style  */
.map-box iframe {
  width: 100%;
  aspect-ratio: 100/53;
  border-radius: 16px;
  overflow: hidden;
  outline: none;
  border: 0;
  min-height: 300px;
}

/* project details area style  */
.project-details-area .details-content-wrapper .heading {
  font-size: 40px;
  line-height: 1.2;
}
@media only screen and (max-width: 1199px) {
  .project-details-area .details-content-wrapper .heading {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .project-details-area .details-content-wrapper .heading {
    font-size: 26px;
  }
}
.project-details-area .details-content-wrapper .thumb {
  border-radius: 16px;
  overflow: hidden;
}
.project-details-area .details-content-wrapper .main-thumb + .heading {
  margin-top: 30px;
}
.project-details-area .details-content-wrapper .text-wrapper:not(:first-child) {
  margin-top: 21px;
}
.project-details-area .details-content-wrapper .heading + .text-wrapper {
  margin-top: 21px;
}
.project-details-area .details-content-wrapper .thumb-gallery {
  margin-top: 55px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 991px) {
  .project-details-area .details-content-wrapper .thumb-gallery {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .project-details-area .details-content-wrapper .thumb-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.project-details-area .details-content-wrapper .thumb-gallery + .text-wrapper {
  margin-top: 23px;
}
.project-details-area .details-content-wrapper .text-wrapper {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .project-details-area .details-content-wrapper .text-wrapper {
    -moz-column-count: unset;
         column-count: unset;
  }
}
.project-details-area .details-content-wrapper .text-wrapper .text + .text {
  margin-top: 21px;
}
.project-details-area .details-content-wrapper .main-thumb {
  position: relative;
}
.project-details-area .details-content-wrapper .main-thumb .thumb {
  max-width: 960px;
  margin-right: 200px;
}
@media only screen and (max-width: 991px) {
  .project-details-area .details-content-wrapper .main-thumb .thumb {
    margin-right: 0;
  }
}
.project-details-area .navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.project-details-area .navigation a {
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.project-details-area .navigation a:hover .icon {
  background-color: #e4122f;
  color: #F7F7F7;
}
.project-details-area .navigation a .icon {
  font-size: 16px;
  color: #e4122f;
  width: 40px;
  height: 40px;
  background-color: #F7F7F7;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s;
}
.project-details-area .navigation a .text {
  font-size: 24px;
  line-height: 1.33;
}
@media only screen and (max-width: 1199px) {
  .project-details-area .navigation a .text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .project-details-area .navigation a .text {
    font-size: 18px;
  }
}

.project-meta {
  width: 410px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  box-shadow: 0 3px 0 var(--primary);
  background-color: var(--bg);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .project-meta {
    width: 350px;
  }
}
@media only screen and (max-width: 991px) {
  .project-meta {
    position: static;
    transform: none;
    margin-top: 20px;
    width: 100%;
  }
}
.project-meta .title {
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.46px;
  background-color: #e4122f;
  text-align: center;
  padding: 8px 15px;
  border-bottom: 1px solid var(--primary);
  filter: drop-shadow(0px 3px 0px var(--primary));
  color: var(--white);
}
.project-meta .meta-list {
  padding: 40px 40px;
}
@media only screen and (max-width: 1199px) {
  .project-meta .meta-list {
    padding: 30px 30px;
  }
}
.project-meta .meta-list .label {
  font-family: var(--font_inter);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77;
  letter-spacing: -0.46px;
  width: 73px;
  display: inline-block;
  margin-right: 20px;
}
.project-meta .meta-list .price {
  font-family: var(--font_inter);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.46px;
  color: #e4122f;
}
.project-meta .meta-list .review {
  display: inline-flex;
  gap: 8px;
}
.project-meta .meta-list .review i {
  font-size: 16px;
  color: #e4122f;
}
.project-meta .meta-list .review i:last-child {
  color: #CCCCCC;
}
.project-meta .meta-list li:not(:first-child) {
  margin-top: 20px;
}
@media only screen and (max-width: 1199px) {
  .project-meta .meta-list li:not(:first-child) {
    margin-top: 15px;
  }
}

/* blog post area style  */
.blog-post-area-inner {
  display: grid;
  gap: 60px 30px;
  grid-template-columns: 850px 1fr;
}
@media only screen and (max-width: 1399px) {
  .blog-post-area-inner {
    grid-template-columns: 680px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-post-area-inner {
    grid-template-columns: 580px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .blog-post-area-inner {
    grid-template-columns: auto;
  }
}
.blog-post-area .pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .pagination {
    gap: 10px;
    margin-top: 50px;
  }
}
.blog-post-area .pagination a {
  width: 67px;
  height: 67px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font_inter);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(250, 99, 23, 0.062745098);
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .pagination a {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
.blog-post-area .pagination a:hover:not(.active) {
  background-color: #e4122f;
}
.blog-post-area .pagination a.active {
  background-color: #e4122f;
  color: var(--white);
}
.blog-post-area .blog .thumb {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.blog-post-area .blog .thumb:hover img {
  transform: scale(1.1);
}
.blog-post-area .blog .thumb img {
  width: 100%;
  transition: all 0.5s;
}
.blog-post-area .blog .thumb .meta-date {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog .thumb .meta-date {
    right: 15px;
    top: 15px;
  }
}
.blog-post-area .blog .thumb .meta-date .date {
  font-family: var(--font_inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.18px;
  background-color: #e4122f;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 50px;
  color: var(--white);
}
.blog-post-area .blog .content-wrapper {
  border: 1px solid var(--primary);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  padding: 40px 40px 47px;
  filter: drop-shadow(0px 3px 0px var(--primary));
  background-color: var(--white);
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog .content-wrapper {
    padding: 30px 30px 37px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog .content-wrapper {
    padding: 20px 20px 23px;
  }
}
.blog-post-area .blog .meta span {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog .meta span {
    font-size: 14px;
  }
}
.blog-post-area .blog .meta span i {
  font-size: 18px;
  color: #e4122f;
}
.blog-post-area .blog .meta span:not(:first-child) {
  margin-left: 33px;
}
.blog-post-area .blog .title {
  font-size: 30px;
  line-height: 1.33;
  letter-spacing: -0.88px;
  margin-top: 15px;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog .title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog .title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .blog-post-area .blog .title {
    font-size: 22px;
  }
}
.blog-post-area .blog .title a:hover {
  color: #e4122f;
}
.blog-post-area .blog .btn-wrapper {
  margin-top: 21px;
}
.blog-post-area .blogs-wrapper > *:not(:first-child) {
  margin-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blogs-wrapper > *:not(:first-child) {
    margin-top: 40px;
  }
}
.blog-post-area .sidebar-box {
  border: 1px solid var(--primary);
  border-radius: 20px;
  background-color: var(--bg);
  padding: 40px 40px 40px;
  filter: drop-shadow(0px 3px 0px var(--primary));
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .sidebar-box {
    padding: 30px 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post-area .sidebar-box {
    padding: 20px 20px 20px;
  }
}
.blog-post-area .sidebar-box:not(:first-child) {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .blog-post-area .sidebar-box:not(:first-child) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .sidebar-box:not(:first-child) {
    margin-top: 30px;
  }
}
.blog-post-area .sidebar-box .heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.46px;
}
.blog-post-area .sidebar-box .search-box {
  margin-top: 22px;
}
.blog-post-area .sidebar-box .search-box .input-field {
  border: 1px solid var(--primary);
  border-radius: 50px;
  background-color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .sidebar-box .search-box .input-field {
    padding: 13px 20px;
  }
}
.blog-post-area .sidebar-box .search-box .input-field input {
  width: 100%;
  border: 0;
  outline: 0;
}
.blog-post-area .sidebar-box .search-box .input-field input::-moz-placeholder {
  color: #28292A;
}
.blog-post-area .sidebar-box .search-box .input-field input::placeholder {
  color: #28292A;
}
.blog-post-area .sidebar-box .category-list {
  margin-top: 25px;
}
.blog-post-area .sidebar-box .category-list li {
  font-size: 16px;
  line-height: 2;
  color: #28292A;
}
.blog-post-area .sidebar-box .category-list li:not(:first-child) {
  margin-top: 15px;
}
.blog-post-area .sidebar-box .category-list li a {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.blog-post-area .sidebar-box .category-list li a:hover {
  color: #e4122f;
}
.blog-post-area .sidebar-box .blogs-wrapper-box {
  margin-top: 32px;
}
.blog-post-area .sidebar-box .blogs-wrapper > *:not(:first-child) {
  margin-top: 20px;
}
.blog-post-area .sidebar-box .blog-sidebar {
  display: flex;
  gap: 15px 30px;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .sidebar-box .blog-sidebar {
    gap: 15px 20px;
  }
}
.blog-post-area .sidebar-box .blog-sidebar .thumb {
  width: 130px;
  height: 90px;
  min-width: 130px;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .sidebar-box .blog-sidebar .thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
}
.blog-post-area .sidebar-box .blog-sidebar .thumb:hover img {
  transform: scale(1.1);
}
.blog-post-area .sidebar-box .blog-sidebar .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.blog-post-area .sidebar-box .blog-sidebar .date {
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  color: #585858;
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-post-area .sidebar-box .blog-sidebar .date i {
  color: #e4122f;
  font-size: 16px;
}
.blog-post-area .sidebar-box .blog-sidebar .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.37;
  letter-spacing: -0.46px;
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .sidebar-box .blog-sidebar .title {
    margin-top: 5px;
  }
}
.blog-post-area .sidebar-box .blog-sidebar .title a:hover {
  color: #e4122f;
}
.blog-post-area .sidebar-box .tag-list {
  margin-top: 25px;
  display: flex;
  gap: 15px 13px;
  flex-wrap: wrap;
}
.blog-post-area .sidebar-box .tag-list a {
  font-family: var(--font_inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.18px;
  border: 1px solid #050505;
  padding: 4px 13px;
  border-radius: 30px;
}
.blog-post-area .sidebar-box .tag-list a:hover {
  color: var(--white);
  background-color: #e4122f;
}
.blog-post-area .sidebar-wrapper {
  max-width: 550px;
}
.blog-post-area .blog-details .thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.blog-post-area .blog-details .thumb img {
  width: 100%;
}
.blog-post-area .blog-details .thumb .meta-date {
  position: absolute;
  right: 30px;
  top: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog-details .thumb .meta-date {
    right: 15px;
    top: 15px;
  }
}
.blog-post-area .blog-details .thumb .meta-date .date {
  font-family: var(--font_inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.18px;
  background-color: #e4122f;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 50px;
  color: var(--white);
}
.blog-post-area .blog-details .meta {
  padding: 12px 20px;
  border-radius: 0px 5px 5px 0px;
  background-color: #e4122f;
  margin-top: -28px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 26px;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog-details .meta {
    padding: 6px 20px;
    margin-top: -22px;
  }
}
.blog-post-area .blog-details .meta span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.18px;
  color: var(--white);
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog-details .meta span {
    font-size: 14px;
  }
}
.blog-post-area .blog-details .meta span i {
  font-size: 14px;
  color: var(--white);
}
.blog-post-area .blog-details .meta span:not(:first-child) {
  margin-left: 20px;
}
.blog-post-area .blog-details .heading {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.88px;
}
@media only screen and (max-width: 1399px) {
  .blog-post-area .blog-details .heading {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog-details .heading {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .blog-post-area .blog-details .heading {
    font-size: 24px;
  }
}
.blog-post-area .blog-details .text-wrapper .text:not(:first-child) {
  margin-top: 13px;
}
.blog-post-area .blog-details .heading + .text-wrapper {
  margin-top: 18px;
}
.blog-post-area .blog-details .text-wrapper + .feature-list {
  margin-top: 22px;
}
.blog-post-area .blog-details .feature-list + .heading-2 {
  margin-top: 45px;
}
.blog-post-area .blog-details .heading-2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.88px;
}
@media only screen and (max-width: 1399px) {
  .blog-post-area .blog-details .heading-2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog-details .heading-2 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .blog-post-area .blog-details .heading-2 {
    font-size: 20px;
  }
}
.blog-post-area .blog-details .heading-2 + .text-wrapper {
  margin-top: 16px;
}
.blog-post-area .blog-details .text-wrapper + .heading-2 {
  margin-top: 45px;
}
.blog-post-area .blog-details .text-wrapper + .thumb {
  margin-top: 22px;
}
.blog-post-area .blog-details .feature-list ul {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog-details .feature-list ul {
    -moz-columns: unset;
         columns: unset;
  }
}
.blog-post-area .blog-details .feature-list ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.18px;
  display: flex;
  gap: 10px;
}
.blog-post-area .blog-details .feature-list ul li i {
  font-size: 16px;
  color: #e4122f;
  margin-top: 8px;
}
.blog-post-area .blog-details .feature-list ul li:not(:first-child) {
  margin-top: 15px;
}
.blog-post-area .blog-details .navigation {
  margin-top: 40px;
  border: 1px solid #CCCCCC;
  border-radius: 16px;
  padding: 32px 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px 30px;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog-details .navigation {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog-details .navigation {
    padding: 22px 20px;
  }
}
.blog-post-area .blog-details .navigation .author {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77;
  letter-spacing: -0.47px;
}
.blog-post-area .blog-details .navigation .links {
  display: flex;
  gap: 20px;
}
.blog-post-area .blog-details .navigation .links a {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.18px;
}
.blog-post-area .blog-details .navigation .social-links {
  display: flex;
  gap: 10px;
}
.blog-post-area .blog-details .navigation .social-links a {
  border: 1px solid #CCCCCC;
  font-size: 14px;
  width: 33px;
  height: 33px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.blog-post-area .blog-details .navigation .social-links a:hover {
  background-color: #e4122f;
  border-color: transparent;
  color: var(--white);
}
.blog-post-area .blog-details .heading-3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.47px;
}
@media (max-width: 575px) {
  .blog-post-area .blog-details .heading-3 {
    font-size: 20px;
  }
}
.blog-post-area .blog-details .heading-3 + .comment-box {
  margin-top: 34px;
}
.blog-post-area .blog-details .comment-box:not(:first-child) {
  margin-top: 24px;
}
.blog-post-area .blog-details .comment-box {
  display: flex;
  gap: 20px;
}
.blog-post-area .blog-details .comment-box .thumb {
  width: 95px;
  height: 95px;
  min-width: 95px;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog-details .comment-box .thumb {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }
}
.blog-post-area .blog-details .comment-box .name {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.47px;
}
@media (max-width: 575px) {
  .blog-post-area .blog-details .comment-box .name {
    font-size: 16px;
  }
}
.blog-post-area .blog-details .comment-box .date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.blog-post-area .blog-details .comment-box .text {
  margin-top: 10px;
}
.blog-post-area .blog-details .comments-wrapper {
  margin-top: 67px;
}
@media only screen and (max-width: 1399px) {
  .blog-post-area .blog-details .comments-wrapper {
    margin-top: 47px;
  }
}
.blog-post-area .blog-details .comment-form-wrapper {
  margin-top: 76px;
}
@media only screen and (max-width: 1399px) {
  .blog-post-area .blog-details .comment-form-wrapper {
    margin-top: 46px;
  }
}
.blog-post-area .blog-details .comment-form-wrapper .text-wrapper {
  margin-top: 2px;
}
.blog-post-area .blog-details .comment-formwrap {
  display: grid;
  gap: 30px 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog-details .comment-formwrap {
    gap: 20px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog-details .comment-formwrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-post-area .blog-details .comment-formwrap .messages {
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .blog-post-area .blog-details .comment-formwrap .messages {
    grid-column: auto;
  }
}
.blog-post-area .blog-details .comment-formfield input,
.blog-post-area .blog-details .comment-formfield textarea {
  font-size: 16px;
  line-height: 2;
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  outline: none;
  background-color: var(--white);
  transition: all 0.5s;
  resize: none;
}
.blog-post-area .blog-details .comment-formfield input:focus,
.blog-post-area .blog-details .comment-formfield textarea:focus {
  border-color: var(--primary);
}
.blog-post-area .blog-details .comment-formfield input::-moz-placeholder, .blog-post-area .blog-details .comment-formfield textarea::-moz-placeholder {
  color: var(--primary);
}
.blog-post-area .blog-details .comment-formfield input::placeholder,
.blog-post-area .blog-details .comment-formfield textarea::placeholder {
  color: var(--primary);
}
.blog-post-area .blog-details .comment-formfield textarea {
  height: 175px;
}
.blog-post-area .blog-details .submit-btn {
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog-details .submit-btn {
    margin-top: 20px;
  }
}
.blog-post-area .blog-details .comment-wrap {
  margin-top: 35px;
}
@media only screen and (max-width: 1199px) {
  .blog-post-area .blog-details .comment-wrap {
    margin-top: 25px;
  }
}/*# sourceMappingURL=style.css.map */