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

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

span {
  display: inline-block;
}

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

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

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

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

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

.frontend-toast-stack {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(380px, calc(100vw - 32px));
}

.frontend-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(19, 39, 71, 0.18);
  border-left: 5px solid #1c7c54;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.frontend-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.frontend-toast.is-error {
  border-left-color: #c0392b;
}

.frontend-toast__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(28, 124, 84, 0.12);
  color: #1c7c54;
  font-size: 16px;
}

.frontend-toast.is-error .frontend-toast__icon {
  background: rgba(192, 57, 43, 0.12);
  color: #c0392b;
}

.frontend-toast__content {
  flex: 1 1 auto;
}

.frontend-toast__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #251444;
  margin-bottom: 4px;
}

.frontend-toast__message {
  font-size: 14px;
  line-height: 1.5;
  color: #5f6170;
}

.frontend-toast__close {
  border: none;
  background: transparent;
  color: #7a7d8a;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .frontend-toast-stack {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

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

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

p {
  font-size: 16px;
  font-weight: 500;
  color: #737177;
  line-height: 180%;
  font-family: "Poppins", sans-serif;
}

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

.pt-100 {
  padding-top: 100px;
}
@media (max-with: 1399px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media (max-with: 991px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-with: 1399px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
@media (max-with: 991px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.py-100 {
  padding: 100px 0;
}
@media (max-with: 1399px) {
  .py-100 {
    padding: 80px 0;
  }
}
@media (max-with: 991px) {
  .py-100 {
    padding: 50px 0;
  }
}

.u_section_title span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Exo", sans-serif;
  text-transform: uppercase;
  color: #AC1909;
}
.u_section_title span svg {
  position: relative;
  top: -2px;
}
.u_section_title .title {
  font-family: "Exo", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #251444;
  margin-top: 20px;
}
@media (max-width: 1399.98px) {
  .u_section_title .title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (max-width: 767.98px) {
  .u_section_title .title {
    font-size: 34px;
    line-height: 44px;
  }
}

.reveal_image {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.reveal_image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.white {
  color: #ffffff;
}

.black {
  color: #251444;
}

.sec-title__tagline {
  margin: 0;
  color: var(--ienet-base, #DF2339);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1em;
  margin-bottom: 5px;
}

.sec-title__tagline__left-border {
  width: 25px;
  height: 12px;
  display: inline-block;
  border: 1px solid var(--ienet-base, #DF2339);
  border-radius: 100px;
  position: relative;
  top: 0;
  margin-right: 10px;
  overflow: hidden;
}

.sec-title__tagline__left-border::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 100%;
  background-color: var(--ienet-base, #DF2339);
  border-radius: 100px;
  content: "";
  -webkit-animation: zumpXX 2s linear infinite;
          animation: zumpXX 2s linear infinite;
}

.sec-title__tagline__right-border {
  width: 25px;
  height: 12px;
  display: inline-block;
  border: 1px solid var(--ienet-base, #DF2339);
  border-radius: 100px;
  position: relative;
  top: 0;
  margin-left: 10px;
  overflow: hidden;
}

.sec-title__tagline__right-border::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 100%;
  background-color: var(--ienet-base, #DF2339);
  border-radius: 100px;
  content: "";
  -webkit-animation: zumpXX 2s linear infinite;
          animation: zumpXX 2s linear infinite;
}

.sec-title__title {
  margin: 0;
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  margin: 0;
}

.sec-title__title > span {
  position: relative;
  color: var(--ienet-base, #DF2339);
  overflow: hidden;
  top: 12px;
}

.sec-title__title > span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  content: "";
  -webkit-animation: widths 3s linear infinite;
          animation: widths 3s linear infinite;
  background-color: var(--ienet-base, #DF2339);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 229 7" xmlns="http://www.w3.org/2000/svg"><path d="M229 2.67187C228.139 2.92187 227.429 2.96484 226.707 2.95703C222.57 2.91015 218.428 2.83984 214.291 2.80468C211.131 2.77734 207.866 2.55468 204.835 2.83984C199.487 3.34374 194.151 2.95703 188.826 3.09374C182.696 3.24999 176.505 3.19531 170.336 3.16015C164.983 3.1289 159.63 2.92578 154.26 3.05078C152.173 3.09765 150.057 2.87109 147.969 3.02343C144.893 3.24999 141.839 3.21093 138.774 3.0039C137.375 2.91015 136.042 3.14843 134.67 3.20312C131.039 3.35156 127.402 3.37109 123.765 3.41015C123.126 3.41796 122.432 3.44531 121.855 3.56249C119.8 3.97265 117.59 4.15624 115.441 4.15234C111.782 4.14843 108.234 4.55078 104.558 4.52734C98.3223 4.48437 92.0754 4.74218 85.8342 4.72656C79.8317 4.71484 73.8292 4.67187 67.8267 4.71484C65.5501 4.73046 63.279 4.76953 61.019 4.88281C60.2916 4.91796 59.5587 4.98437 58.8368 4.95703C54.0115 4.78906 49.3028 5.25781 44.5385 5.46484C40.2629 5.64843 35.9929 5.88671 31.7062 6.03515C26.4478 6.21484 21.206 6.53124 15.992 6.89453C11.6886 7.19531 7.57959 6.80468 3.46502 6.36718C1.94913 6.20703 0.072307 4.93749 0.00567426 4.21484C-0.0609585 3.49609 0.577605 3.12499 2.15458 2.95703C6.19141 2.51953 10.356 2.49999 14.4317 2.13281C23.366 1.32421 32.4003 0.816401 41.4901 0.558588C48.6253 0.355463 55.7662 0.273432 62.9181 0.285151C68.4375 0.292963 73.9624 0.164057 79.4763 0.226557C85.4066 0.292963 91.3258 0.164057 97.2506 0.164057C106.585 0.164057 115.924 0.0117134 125.259 0.00390089C133.382 -0.0039116 141.506 0.0742134 149.624 0.281245C164.394 0.660151 179.187 0.886713 193.94 1.38671C204.074 1.73046 214.219 1.96484 224.352 2.28515C225.868 2.32812 227.329 2.48046 229 2.67187Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 229 7" xmlns="http://www.w3.org/2000/svg"><path d="M229 2.67187C228.139 2.92187 227.429 2.96484 226.707 2.95703C222.57 2.91015 218.428 2.83984 214.291 2.80468C211.131 2.77734 207.866 2.55468 204.835 2.83984C199.487 3.34374 194.151 2.95703 188.826 3.09374C182.696 3.24999 176.505 3.19531 170.336 3.16015C164.983 3.1289 159.63 2.92578 154.26 3.05078C152.173 3.09765 150.057 2.87109 147.969 3.02343C144.893 3.24999 141.839 3.21093 138.774 3.0039C137.375 2.91015 136.042 3.14843 134.67 3.20312C131.039 3.35156 127.402 3.37109 123.765 3.41015C123.126 3.41796 122.432 3.44531 121.855 3.56249C119.8 3.97265 117.59 4.15624 115.441 4.15234C111.782 4.14843 108.234 4.55078 104.558 4.52734C98.3223 4.48437 92.0754 4.74218 85.8342 4.72656C79.8317 4.71484 73.8292 4.67187 67.8267 4.71484C65.5501 4.73046 63.279 4.76953 61.019 4.88281C60.2916 4.91796 59.5587 4.98437 58.8368 4.95703C54.0115 4.78906 49.3028 5.25781 44.5385 5.46484C40.2629 5.64843 35.9929 5.88671 31.7062 6.03515C26.4478 6.21484 21.206 6.53124 15.992 6.89453C11.6886 7.19531 7.57959 6.80468 3.46502 6.36718C1.94913 6.20703 0.072307 4.93749 0.00567426 4.21484C-0.0609585 3.49609 0.577605 3.12499 2.15458 2.95703C6.19141 2.51953 10.356 2.49999 14.4317 2.13281C23.366 1.32421 32.4003 0.816401 41.4901 0.558588C48.6253 0.355463 55.7662 0.273432 62.9181 0.285151C68.4375 0.292963 73.9624 0.164057 79.4763 0.226557C85.4066 0.292963 91.3258 0.164057 97.2506 0.164057C106.585 0.164057 115.924 0.0117134 125.259 0.00390089C133.382 -0.0039116 141.506 0.0742134 149.624 0.281245C164.394 0.660151 179.187 0.886713 193.94 1.38671C204.074 1.73046 214.219 1.96484 224.352 2.28515C225.868 2.32812 227.329 2.48046 229 2.67187Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left bottom;
  mask-position: left bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
}

@media (min-width: 768px) {
  .sec-title__title {
    font-size: 55px;
    line-height: 65px;
  }
}
.sec-title.text-left .sec-title__tagline__right-border,
.sec-title.text-end .sec-title__tagline__right-border {
  display: none;
}

@-webkit-keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
  }
}

@keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes zumpXX {
  0%, 100% {
    left: -20%;
  }
  50% {
    left: 50%;
  }
}
@keyframes zumpXX {
  0%, 100% {
    left: -20%;
  }
  50% {
    left: 50%;
  }
}
.theme_btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none !important;
  background-color: #AC1909;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0;
  padding: 15px 30px;
  padding-right: 20px;
  -webkit-transition: 500ms;
  transition: 500ms;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
  overflow: hidden;
  text-align: center;
}
.theme_btn svg {
  width: 22px;
  height: 22px;
  margin-left: 6px;
  position: relative;
  top: -1px;
}
.theme_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 28px solid #251444;
  border-bottom: 28px solid #251444;
  border-right: 28px solid transparent;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: -1;
}
.theme_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 28px solid #251444;
  border-bottom: 28px solid #251444;
  border-left: 28px solid transparent;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: -1;
}
.theme_btn:hover {
  color: #ffffff;
}
.theme_btn:hover::before {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}
.theme_btn:hover::after {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}

.text-black {
  color: #251444 !important;
}

.stroke_text {
  font-size: 117px;
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
  color: white;
  text-transform: uppercase;
}

.reveal_text > div {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #251444), color-stop(50%, rgba(77, 81, 95, 0.1)));
  background: linear-gradient(to right, #251444 50%, rgba(77, 81, 95, 0.1) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.reveal_text_white > div {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(50%, rgba(255, 255, 255, 0.1)));
  background: linear-gradient(to right, #ffffff 50%, rgba(255, 255, 255, 0.1) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.short_p > div {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #737177), color-stop(50%, rgba(77, 81, 95, 0.1)));
  background: linear-gradient(to right, #737177 50%, rgba(77, 81, 95, 0.1) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

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

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

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

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

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

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

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 575.98px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@-webkit-keyframes l20-2 {
  0% {
    -webkit-transform: scaleY(1) rotate(0deg);
            transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    -webkit-transform: scaleY(1) rotate(135deg);
            transform: scaleY(1) rotate(135deg);
  }
  50% {
    -webkit-transform: scaleY(-1) rotate(0deg);
            transform: scaleY(-1) rotate(0deg);
  }
  100% {
    -webkit-transform: scaleY(-1) rotate(-135deg);
            transform: scaleY(-1) rotate(-135deg);
  }
}
@keyframes l20-2 {
  0% {
    -webkit-transform: scaleY(1) rotate(0deg);
            transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    -webkit-transform: scaleY(1) rotate(135deg);
            transform: scaleY(1) rotate(135deg);
  }
  50% {
    -webkit-transform: scaleY(-1) rotate(0deg);
            transform: scaleY(-1) rotate(0deg);
  }
  100% {
    -webkit-transform: scaleY(-1) rotate(-135deg);
            transform: scaleY(-1) rotate(-135deg);
  }
}
.u_top_header {
  background: #1F3562;
  padding: 5px 80px;
}
@media (max-width: 1699.98px) {
  .u_top_header {
    padding: 12px 40px;
  }
}
@media (max-width: 1399.98px) {
  .u_top_header {
    padding: 12px 26px;
  }
}
.u_top_header .contact_info {
  gap: 34px;
}
.u_top_header .contact_info li {
  position: relative;
}
.u_top_header .contact_info li:first-child::before {
  position: absolute;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -17px;
}
.u_top_header span,
.u_top_header li {
  font-size: 16px;
}
.u_top_header .social_info a {
  color: #ffffff;
  font-size: 14px;
  margin-right: 5px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.u_top_header .social_info a:last-child {
  margin-right: 0;
}
.u_top_header .social_info a:hover {
  color: #ffffff;
  background: #AC1909;
}

.header_area {
  padding: 15px 0;
  position: relative;
  z-index: 999;
  background-color: transparent;
  width: 100%;
  padding: 5px 0;
}
.header_area .navbar {
  padding: 0;
}
.header_area .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.header_area .navbar-nav .nav-item {
  position: relative;
}
.header_area .navbar-nav .nav-item .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #251444;
  line-height: normal;
  position: relative;
  margin-left: 30px;
  line-height: 52px;
  position: relative;
}
.header_area .navbar-nav .nav-item.has-submenu .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header_area .navbar-nav .nav-item.has-submenu .nav-link i {
  font-size: 13px;
  transition: transform 0.3s ease;
}
.header_area .navbar-nav .nav-item .nav-link svg {
  position: relative;
  top: -1px;
}
.header_area .navbar-nav .nav-item .sub_menu {
  width: 290px;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  padding: 10px 0;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  border-top: 3px solid #AC1909;
}
.header_area .navbar-nav .nav-item .sub_menu::before {
  position: absolute;
  top: -10px;
  left: 0;
  background-color: transparent;
  width: 100%;
  height: 10px;
  content: "";
}
.header_area .navbar-nav .nav-item .sub_menu li a {
  color: #251444;
  display: block;
  width: 100%;
  padding: 6px 20px;
  font-size: 15px;
  line-height: 1.25;
}
.header_area .navbar-nav .nav-item .sub_menu li a:hover {
  color: #AC1909;
}
.header_area .navbar-nav .nav-item .sub_menu li + li {
  margin-top: 0;
}
.header_area .navbar-nav .nav-item:hover > .sub_menu {
  visibility: visible;
  opacity: 1;
}
.header_area .navbar-nav .nav-item.has-submenu:hover .nav-link i {
  transform: rotate(180deg);
}
.header_area .navbar-nav .nav-item .active {
  color: #AC1909;
}
.header_area .navbar-nav .nav-item:hover .nav-link {
  color: #AC1909;
}
.header_area .navbar-nav .nav-item:hover .nav-link::after {
  background-color: #AC1909;
}
.header_area .navbar-nav .nav-item:hover .nav-link::before {
  border: 1px solid #251444;
}
.header_area .navbar-nav .action {
  margin-left: 30px;
}
.header_area .menu_right_options .offcanvas_menubar {
  background-color: transparent;
  border: 1px solid #AC1909;
  color: #AC1909;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.header_area .menu_right_options .offcanvas_menubar:hover {
  background-color: #AC1909;
  color: #ffffff;
}
.header_area .menu_right_options .action_btn .theme_btn {
  border-radius: 50px;
  background: transparent;
  color: #AC1909;
  border: 1px solid #AC1909;
  padding: 14px 20px;
}
@media (max-width: 1399.98px) {
  .header_area .menu_right_options .action_btn .theme_btn {
    padding: 14px 21px;
    font-size: 14px;
  }
}
.header_area .menu_right_options .action_btn .theme_btn::before {
  border-top: 28px solid #AC1909;
  border-bottom: 28px solid #AC1909;
}
.header_area .menu_right_options .action_btn .theme_btn::after {
  border-top: 28px solid #AC1909;
  border-bottom: 28px solid #AC1909;
}
.header_area .menu_right_options .action_btn .theme_btn:hover {
  border-color: #AC1909;
  color: #ffffff;
}

.sticky-menu {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 60px;
  -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

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

.mobile-menu-area {
  z-index: 999;
  width: 100%;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  background-color: #ffffff;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero {
  position: relative;
}
.hero .hero-slide {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1399.98px) {
  .hero .hero-slide {
    padding: 60px 0;
  }
}
.hero .hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(10, 25, 41, 0.95)), color-stop(rgba(26, 58, 92, 0.9)), to(rgba(26, 58, 92, 0.7)));
  background: linear-gradient(90deg, rgba(10, 25, 41, 0.95), rgba(26, 58, 92, 0.9), rgba(26, 58, 92, 0.7));
}
.hero .hero-left {
  position: relative;
  z-index: 2;
  color: white;
}
.hero .hero-left .hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #DF2339;
  color: #DF2339;
  background: rgba(77, 182, 172, 0.15);
  margin-bottom: 25px;
  font-size: 15px;
}
.hero .hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 1399.98px) {
  .hero .hero-left h1 {
    font-size: 50px;
  }
}
@media (max-width: 1199.98px) {
  .hero .hero-left h1 {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .hero .hero-left h1 {
    font-size: 36px;
  }
}
.hero .hero-left h1 span {
  display: block;
  color: #DF2339;
}
.hero .hero-left p {
  max-width: 500px;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .hero .hero-left p {
    font-size: 16px;
  }
}
.hero .hero-left .hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (max-width: 575.98px) {
  .hero .hero-left .hero-buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.hero .hero-left .hero-buttons .btn-start {
  background: #DF2339;
  color: white;
  padding: 14px 25px;
  border-radius: 6px;
}
.hero .hero-left .hero-buttons .btn-start:hover {
  background: #ffffff;
  color: #251444;
}
.hero .hero-left .hero-buttons .btn-call {
  background: white;
  color: #1a3a5c;
  padding: 14px 25px;
  border-radius: 6px;
}
.hero .hero-left .hero-buttons .btn-call:hover {
  background: #e9e9e9;
}
.hero .hero-services .services-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px;
}
@media (max-width: 575.98px) {
  .hero .hero-services .services-card {
    padding: 14px;
  }
}
.hero .hero-services .services-card h4 {
  text-align: center;
  color: white;
  margin-bottom: 14px;
}
.hero .hero-services .services-card .services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 1199.98px) {
  .hero .hero-services .services-card .services-grid {
    -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .hero .hero-services .services-card .services-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero .hero-services .services-card .services-grid a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: white;
  background: #3a6a94;
  border: 1px solid #2d5a87;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hero .hero-services .services-card .services-grid a:hover {
  background: #3d79b4;
}

.hero-dots {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-animation: dotsMove 30s linear infinite;
          animation: dotsMove 30s linear infinite;
  width: 50%;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  background-size: 25px 25px;
}

@-webkit-keyframes dotsMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 300px 300px;
  }
}

@keyframes dotsMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 300px 300px;
  }
}
.form-notice {
  padding: 25px 0;
  background: -webkit-gradient(linear, left top, right top, from(#e4d0d7), color-stop(#FBCFE2), to(#FBCFE2));
  background: linear-gradient(90deg, #e4d0d7, #FBCFE2, #FBCFE2);
}
.form-notice .notice-text p {
  margin: 0;
  font-size: 16px;
  color: #163a5c;
  font-weight: 500;
}
.form-notice .notice-text p:not(:last-child) {
  margin-bottom: 6px;
}
.form-notice .btn-download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #1a3a5c;
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-notice .btn-download i {
  font-size: 14px;
}
.form-notice .btn-download:hover {
  background: #0f2a44;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.py-100 {
  padding: 100px 0;
}
@media (max-width: 1199.98px) {
  .py-100 {
    padding: 80px 0;
  }
}

.custom-plate-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#f8fafc), to(#eef2f7));
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  position: relative;
  /* subtle background pattern */
}
.custom-plate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
  pointer-events: none;
}
.custom-plate-section .plate-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .custom-plate-section .plate-box {
    padding: 14px;
  }
}
.custom-plate-section .plate-box {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.custom-plate-section .plate-box img {
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.custom-plate-section .plate-box {
  /* gradient border effect */
}
.custom-plate-section .plate-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #DF2339, #2d8cff);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.custom-plate-section .plate-box:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
  -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
.custom-plate-section .plate-box:hover::before {
  opacity: 1;
}
.custom-plate-section .plate-box:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.custom-plate-section .plate-footer {
  margin-top: 70px;
  letter-spacing: 6px;
  font-size: 20px;
  color: #64748b;
}

.section-header {
  margin-bottom: 40px;
}
.section-header .section-badge {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #DF2339;
  color: #DF2339;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  background: rgba(223, 35, 57, 0.1);
}
.section-header .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}
@media (max-width: 767.98px) {
  .section-header .section-title {
    font-size: 36px;
  }
}
@media (max-width: 575.98px) {
  .section-header .section-title {
    font-size: 32px;
  }
}

.ny-moving-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}
.ny-moving-section .ny-image-box {
  position: relative;
}
.ny-moving-section .ny-image-box img {
  width: 100%;
  border-radius: 18px;
  -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ny-moving-section .ny-image-box:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.ny-moving-section .ny-image-box .ny-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: linear-gradient(135deg, #DF2339, #2d8cff);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.ny-moving-section .ny-content {
  padding-left: 30px;
}
@media (max-width: 991.98px) {
  .ny-moving-section .ny-content {
    padding-left: 0;
  }
}
.ny-moving-section .ny-content .ny-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(45, 140, 255, 0.1);
  color: #2d8cff;
  font-size: 13px;
  margin-bottom: 12px;
}
.ny-moving-section .ny-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
}
.ny-moving-section .ny-content .ny-buttons {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.ny-moving-section .ny-content .ny-buttons .btn-call {
  background: #1a3a5c;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ny-moving-section .ny-content .ny-buttons .btn-call:hover {
  background: #0f2a44;
}
.ny-moving-section .ny-content .ny-buttons .btn-info {
  border: 1px solid #1a3a5c;
  padding: 12px 24px;
  border-radius: 8px;
  color: #1a3a5c;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ny-moving-section .ny-content .ny-buttons .btn-info:hover {
  background: #1a3a5c;
  color: #fff;
}

.services-section {
  background: linear-gradient(135deg, #0b1f35, #132f4c);
  position: relative;
  overflow: hidden;
}
.services-section .section-header h2 {
  color: white;
}
.services-section .service-item {
  padding: 12px;
  height: 360px;
}
.services-section .service-card {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 1399.98px) {
  .services-section .service-card {
    padding: 20px;
  }
}
.services-section .service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  border-color: #DF2339;
}
.services-section .service-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(223, 35, 57, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.services-section .service-card .icon i {
  color: #DF2339;
  font-size: 24px;
}
.services-section .service-card h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.services-section .service-card p {
  color: #b4c3d3;
  font-size: 15px;
  margin-bottom: 20px;
}
.services-section .service-card a {
  color: #DF2339;
  text-decoration: none;
  font-weight: 500;
}
.services-section .service-card a i {
  margin-left: 6px;
}

/* Slick arrows */
.services-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  z-index: 10;
}
.services-slider .slick-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}
.services-slider .slick-prev {
  left: -60px;
}
@media (max-width: 1399.98px) {
  .services-slider .slick-prev {
    left: -20px;
  }
}
.services-slider .slick-next {
  right: -60px;
}
@media (max-width: 1399.98px) {
  .services-slider .slick-next {
    right: -20px;
  }
}

/* Slick dots */
.slick-dots li button:before {
  color: #DF2339;
  font-size: 10px;
}

.info-services {
  padding: 70px 0;
  background: #f5f6f7;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.info-services .info-item {
  padding: 20px 40px;
}
@media (max-width: 1199.98px) {
  .info-services .info-item {
    padding: 0;
  }
}
.info-services .info-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.info-services .info-item p {
  font-size: 14px;
  color: #5d6d7e;
  max-width: 320px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.info-services .info-item .info-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #d8e3ec;
}
.info-services .info-item .info-icon i {
  font-size: 20px;
  color: #1a3a5c;
}

.facility-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  position: relative;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .facility-section {
    padding-top: 0;
  }
}
.facility-section .facility-left .facility-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 12px;
  margin-bottom: 15px;
}
.facility-section .facility-left p {
  color: #475569;
  font-size: 15px;
}
.facility-section {
  /* GRID */
}
.facility-section .facility-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 575.98px) {
  .facility-section .facility-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.facility-section .facility-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  /* dotted pattern */
}
.facility-section .facility-card::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, #1a3a5c 2px, transparent 2px);
  background-size: 12px 12px;
  top: 20px;
  left: 20px;
  opacity: 0.15;
}
.facility-section .facility-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #1a3a5c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.facility-section .facility-card .card-icon i {
  color: #fff;
  font-size: 26px;
}
.facility-section .facility-card a {
  color: #251444;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.facility-section .facility-card a:hover {
  color: #AC1909;
}
.facility-section .facility-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}
.facility-section .facility-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.facility-section .facility-card:hover .card-icon {
  background: #DF2339;
}

.plate-section {
  padding: 80px 0;
}
@media (max-width: 575.98px) {
  .plate-section {
    padding: 60px 0;
  }
}

.plate-card {
  padding: 10px;
}

.plate-card img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.plate-card:hover img {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.plate-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1d3f66, #3a6ea5);
}
.newsletter-section .newsletter-box {
  background: linear-gradient(135deg, #2b5c8a, #1f3f60);
  padding: 50px 60px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991.98px) {
  .newsletter-section .newsletter-box {
    padding: 30px;
  }
}
.newsletter-section .newsletter-text h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.newsletter-section .newsletter-text p {
  color: #cbd5e1;
  margin: 0;
}
.newsletter-section .newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .newsletter-section .newsletter-form {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.newsletter-section .newsletter-form input {
  width: 100%;
  max-width: 320px;
  border: none;
  padding: 14px 18px;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}
.newsletter-section .newsletter-form button {
  background: #DF2339;
  border: none;
  padding: 14px 24px;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.newsletter-section .newsletter-form button:hover {
  background: #3fa399;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.dmv-form-section {
  background: #f8fafc;
}
@media (max-width: 575.98px) {
  .dmv-form-section .form-title {
    font-size: 18px;
  }
}

/* title line */
.title-line {
  width: 60px;
  height: 4px;
  background: #1a3a5c;
  border-radius: 10px;
}

/* table */
.custom-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
}

.custom-table thead {
  background: #1a3a5c;
  color: #fff;
}

.custom-table th {
  padding: 15px;
  font-weight: 600;
}

.custom-table td {
  padding: 14px;
  font-size: 14px;
  color: #475569;
}

/* hover row */
.custom-table tbody tr {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.custom-table tbody tr:hover {
  background: #f1f5f9;
}

/* form link */
.custom-table a {
  color: #1a3a5c;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.custom-table a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #1a3a5c;
  left: 0;
  bottom: -2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.custom-table a:hover::after {
  width: 100%;
}

.faq-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  position: relative;
}

/* title */
.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: #1a3a5c;
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 38px;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .faq-title {
    font-size: 28px;
  }
}

/* accordion */
.custom-faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.custom-faq .accordion-button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.custom-faq .accordion-button:after {
  display: none;
}
.custom-faq .accordion-body {
  padding: 20px 25px;
  color: #64748b;
  line-height: 1.7;
}

/* custom icon */
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1a3a5c;
  position: relative;
  margin-left: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}
.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* active state */
.accordion-button:not(.collapsed) .faq-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.about-section {
  background: #f8fafc;
  position: relative;
}

/* LEFT IMAGES */
.about-image-single {
  position: relative;
}
.about-image-single img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.about-image-single:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.about-image-single {
  /* gradient overlay */
}
.about-image-single::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.35)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  border-radius: 20px;
}

/* RIGHT CONTENT */
.about-content {
  padding-left: 40px;
}
@media (max-width: 1199.98px) {
  .about-content {
    padding-left: 0;
  }
}
.about-content .about-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: #1a3a5c;
  color: #fff;
  font-size: 12px;
  margin-bottom: 15px;
}
.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FEATURE */
.about-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.about-feature .icon {
  width: 40px;
  height: 40px;
  background: #DF2339;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
.about-feature h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.about-feature p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  background: #1a3a5c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-btn:hover {
  background: #0f2a44;
}

.plans-section {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  position: relative;
  /* background glow */
}
.plans-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #2d8cff;
  -webkit-filter: blur(120px);
          filter: blur(120px);
  opacity: 0.2;
  top: 0;
  left: 0;
}
.plans-section .plan-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1a3a5c, #2d8cff);
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}
.plans-section h2 {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .plans-section h2 {
    font-size: 36px;
  }
}
@media (max-width: 575.98px) {
  .plans-section h2 {
    font-size: 32px;
  }
}
.plans-section .plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 9;
}
.plans-section .plan-card:last-child {
  margin-bottom: 0;
}
.plans-section .plan-card {
  /* gradient border glow */
}
.plans-section .plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #2d8cff, #DF2339);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}
.plans-section .plan-card:hover {
  -webkit-transform: translateY(-10px) scale(1.02);
          transform: translateY(-10px) scale(1.02);
  -webkit-box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
          box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}
.plans-section .plan-card:hover::after {
  opacity: 1;
}
.plans-section .plan-card .title {
  font-size: 26px;
  color: #251444;
  font-weight: 700;
  margin-bottom: 10px;
}
.plans-section .plan-card .title:hover {
  color: #AC1909;
}
.plans-section .plan-card p {
  font-size: 14px;
  color: #64748b;
}
.plans-section .plan-card {
  /* checklist upgrade */
}
.plans-section .plan-card .plan-list {
  list-style: none;
  padding: 0;
}
.plans-section .plan-card .plan-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 16px;
}
.plans-section .plan-card .plan-list li span {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #DF2339, #2d8cff);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.plans-section .plan-card {
  /* PRICE BOX */
}
.plans-section .plan-card .price-box {
  background: linear-gradient(135deg, #1a3a5c, #2d8cff);
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  /* glow */
  -webkit-box-shadow: 0 15px 40px rgba(45, 140, 255, 0.4);
          box-shadow: 0 15px 40px rgba(45, 140, 255, 0.4);
}
.plans-section .plan-card .price-box small {
  font-size: 12px;
  opacity: 0.8;
}
.plans-section .plan-card .price-box h3 {
  margin: 5px 0 0;
  font-size: 28px;
  font-weight: 700;
}
.plans-section .plan-card {
  /* BUTTON */
}
.plans-section .plan-card .plan-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1a3a5c, #2d8cff);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  /* shine effect */
}
.plans-section .plan-card .plan-btn::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  left: -50px;
  top: 0;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.plans-section .plan-card .plan-btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.plans-section .plan-card .plan-btn:hover::before {
  left: 120%;
}
.plans-section .plan-card .plan-btn:hover {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-details {
  background: #f8fafc;
}
.service-details .service-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.service-details .service-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 15px;
}
.service-details .service-content .highlight-box {
  background: linear-gradient(135deg, #1a3a5c, #2d8cff);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.service-details .service-content .benefits {
  margin-top: 30px;
}
.service-details .service-content .benefits h4 {
  font-weight: 700;
  margin-bottom: 15px;
}
.service-details .service-content .benefits ul {
  list-style: none;
  padding: 0;
}
.service-details .service-content .benefits ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #1a3a5c;
}
.service-details .service-content .included {
  margin-top: 40px;
}
.service-details .service-content .included h4 {
  margin-bottom: 20px;
}
.service-details .service-content .included .custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.service-details .service-content .included .custom-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.service-details .service-content .included .custom-accordion .accordion-body {
  background: #f1f5f9;
}
.service-details {
  /* SIDEBAR */
}
.service-details .service-sidebar .sidebar-card {
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 16px;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.service-details .service-sidebar .sidebar-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}
.service-details .service-sidebar .sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-details .service-sidebar .sidebar-card li {
  margin-bottom: 12px;
}
.service-details .service-sidebar .sidebar-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  background: #f8fafc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-details .service-sidebar .sidebar-card a .icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(223, 35, 57, 0.1);
  color: #DF2339;
  font-size: 14px;
}
.service-details .service-sidebar .sidebar-card a .arrow {
  font-size: 12px;
  opacity: 0;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-details .service-sidebar .sidebar-card a:hover {
  background: #e6f4f1;
  color: #0f172a;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.service-details .service-sidebar .sidebar-card a:hover .arrow {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.service-details .service-sidebar .sidebar-card.brochure {
  text-align: center;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a3a5c, #2d8cff);
  color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.service-details .service-sidebar .sidebar-card.brochure .brochure-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  font-size: 28px;
}
.service-details .service-sidebar .sidebar-card.brochure h5 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-details .service-sidebar .sidebar-card.brochure p {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 20px;
}
.service-details .service-sidebar .sidebar-card.brochure .btn-download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a3a5c;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-details .service-sidebar .sidebar-card.brochure .btn-download i {
  font-size: 13px;
}
.service-details .service-sidebar .sidebar-card.brochure .btn-download:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.service-details .service-sidebar .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.service-details .service-sidebar .contact-info .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-details .service-sidebar .contact-info .info-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.service-details .service-sidebar .contact-info .info-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #DF2339, #2d8cff);
  color: #fff;
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.service-details .service-sidebar .contact-info .info-item .text h6 {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 3px;
}
.service-details .service-sidebar .contact-info .info-item .text p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  word-break: break-all;
}

.footer-modern {
  background: #071c2f;
  color: #cbd5e1;
  position: relative;
}
.footer-modern .footer-top {
  padding: 100px 0;
  padding-bottom: 60px;
}
.footer-modern p {
  color: #ffffff;
}
.footer-modern .footer-heading {
  margin-bottom: 60px;
}
.footer-modern .footer-heading span {
  color: #ff4b4b;
  letter-spacing: 2px;
  font-weight: 600;
}
.footer-modern .footer-heading h2 {
  color: #fff;
  font-weight: 700;
  margin-top: 5px;
}
.footer-modern .footer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-modern .footer-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  border-color: #DF2339;
}
.footer-modern .footer-card h4 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
}
.footer-modern .footer-card p {
  font-size: 14px;
  margin-bottom: 8px;
  word-break: break-all;
}
.footer-modern .footer-card ul {
  list-style: none;
  padding: 0;
}
.footer-modern .footer-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
}
.footer-modern .footer-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #DF2339;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}
.footer-modern .footer-icon i {
  color: #fff;
}
.footer-modern .footer-warning {
  max-width: 800px;
  color: #ffffff;
  font-size: 24px;
  margin: 40px auto;
}
@media (max-width: 1199.98px) {
  .footer-modern .footer-warning {
    font-size: 18px;
  }
}
.footer-modern .footer-social a {
  width: 42px;
  height: 42px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 0 6px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-modern .footer-social .fb {
  background: #1877f2;
}
.footer-modern .footer-social .ig {
  background: #e4405f;
}
.footer-modern .footer-social .tw {
  background: #1da1f2;
}
.footer-modern .footer-social .li {
  background: #0077b5;
}
.footer-modern .footer-social .yt {
  background: #ff0000;
}
.footer-modern .footer-social a:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}
.footer-modern .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #94a3b8;
}
.footer-modern .footer-bottom a {
  color: #ffffff;
}

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

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

.about_us_page {
  margin-top: 0;
  margin-bottom: -100px;
}
.about_us_page .main .about-one__image {
  float: left;
  margin-right: 55px;
  margin-bottom: 10px;
}
.about_us_page .main .inner_image {
  margin: 0 auto;
  float: left;
  margin-right: 30px;
  margin-bottom: 18px;
  width: 52%;
}

.team-page-section {
  margin-top: 100px;
}

.team-section .side-text {
  position: absolute;
  right: 5px;
  bottom: 0px;
  opacity: 0.2;
  font-size: 170px;
  color: transparent;
  font-weight: 700;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  text-transform: uppercase;
  -webkit-transform-origin: 42% -1680%;
          transform-origin: 42% -1680%;
}

.team-block {
  position: relative;
}

.team-block .inner-box {
  position: relative;
  padding-left: 0;
}

.team-block .inner-box .image {
  position: relative;
  overflow: hidden;
  background-color: #251444;
  border-radius: 20px;
}

.team-block .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.team-block .inner-box:hover .image img {
  opacity: 0.5;
  -webkit-transform: scale(1.04, 1.04);
          transform: scale(1.04, 1.04);
}

.team-block .inner-box .content {
  position: absolute;
  left: 0px;
  bottom: 22px;
  padding: 15px 20px;
  display: inline-block;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
  max-width: 90%;
  width: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.team-block .inner-box .content:before {
  position: absolute;
  content: "";
  left: -2px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: #AC1909;
}

.team-block .inner-box .content .title {
  position: relative;
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.team-block .inner-box .content .name {
  position: relative;
  color: #555555;
  font-size: 15px;
  font-weight: 500;
  margin-top: 5px;
}

.team-block .inner-box .shared-boxed {
  position: absolute;
  right: 25px;
  bottom: 25px;
  z-index: 10;
  display: inline-block;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.team-block .inner-box .shared-boxed:hover .shared-inner {
  height: 100%;
  padding-bottom: 45px;
}

.team-block .inner-box .shared-boxed .shared-inner {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  padding: 8px 6px 8px;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background-color: #222222;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.team-block .inner-box .shared-boxed .shared-inner a {
  position: relative;
  color: #ffffff;
  margin: 5px 8px 3px;
  font-size: 16px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.team-block .inner-box .shared-boxed:hover .shared-inner a {
  opacity: 1;
  visibility: visible;
}

.team-block .inner-box .shared-boxed .shared-inner .share-now {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 0px;
  text-align: center;
}

.factory_counter_area {
  margin-top: 100px;
}

.numbers {
  position: relative;
}

.numbers .g-img {
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  bottom: 0;
  pointer-events: none;
}

.numbers .g-img img {
  width: 100%;
  height: 100%;
}

.numbers .item {
  width: 300px;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.numbers .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  z-index: -1;
  pointer-events: none;
}

.numbers .item h3 {
  font-size: 70px;
  font-weight: 700;
}

.numbers .item .sm-title {
  font-size: 18px;
}

.numbers .item .icon {
  font-size: 18px;
}
.numbers .item .icon svg {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 5px;
}

.numbers.style2 .item:after {
  border: 0;
  background: #FFA88C;
  opacity: 0.1;
}

.numbers.num-dark {
  background: #141414;
  color: #fff;
}

.numbers.num-dark .item:after {
  border-color: rgba(255, 255, 255, 0.1);
  border-right-color: transparent;
}

.numbers.num-dark .item .icon {
  border-color: rgba(255, 255, 255, 0.4);
}

.numbers.num-dark .item h3 {
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.factory_visits .factory_visits_main {
  margin-top: 30px;
}

.factory_address_area {
  margin-top: 100px;
}
.factory_address_area .address_main {
  padding-top: 54px;
}
.factory_address_area .address_main .contact_map {
  padding: 24px;
  height: 340px;
}
.factory_address_area .address_main .contact_map iframe {
  height: 100%;
  width: 100%;
}

.career_area_page {
  padding-top: 100px;
}
.career_area_page .sec-title p {
  margin-top: 20px;
}
.career_area_page .apply_now_form .car_details_main {
  background-color: #ffffff;
  border: 0;
  padding: 40px;
  -webkit-box-shadow: 0px 6px 50px rgba(1, 3, 25, 0.06);
          box-shadow: 0px 6px 50px rgba(1, 3, 25, 0.06);
}
.career_area_page .apply_now_form .car_details_main input {
  border-radius: 8px;
}
.career_area_page .apply_now_form .car_details_main textarea {
  border-radius: 8px;
}
.career_area_page .input_groups label {
  font-size: 15px;
  font-weight: 500;
  color: #251444;
  margin-bottom: 4px;
}
.career_area_page .input_groups input[type=file] {
  padding-top: 12px;
  padding-left: 8px;
}
.career_area_page .input_groups input,
.career_area_page .input_groups textarea {
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 20px;
  background-color: #f2f2f2;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.career_area_page .input_groups input:focus,
.career_area_page .input_groups textarea:focus {
  border-color: #251444;
}
.career_area_page .input_groups textarea {
  height: 200px;
  padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar__search {
  position: relative;
}

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

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

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

.sidebar__posts {
  margin-bottom: 0;
}

.sidebar__posts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

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

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

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

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

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

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

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

.sidebar__categories li a {
  color: inherit;
}

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

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

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

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

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

.sidebar__comments__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

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

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

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

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

.post-pagination.text-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-one {
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}

@media (max-width: 767px) {
  .gallery-one {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .gallery-one__carousel .owl-nav {
    display: none;
  }
}
.gallery-one__filter__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-one__filter__list li {
  cursor: pointer;
}

.gallery-one__filter__list li span {
  display: block;
  font-size: 12px;
  background-color: var(--ienet-gray, #F7F5F1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: var(--ienet-letter-space, 0.1em);
  padding: 15px 20px;
  line-height: 1.2em;
}

.gallery-one__filter__list li.active span,
.gallery-one__filter__list li:hover span {
  background-color: var(--ienet-base, #DF2339);
  color: var(--ienet-white, #fff);
}

.gallery-one__card {
  position: relative;
  overflow: hidden;
  background-color: var(--ienet-black, #251444);
  border-radius: 20px;
}

.gallery-one__card img {
  -webkit-transform: scale(1);
          transform: scale(1);
  max-width: 100%;
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
  opacity: 1;
}

.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--ienet-black-rgb, 37, 20, 68), 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  padding: 24px;
  text-align: center;
}

.gallery-one__card__hover .img-popup {
  position: relative;
}

.gallery-one__card:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.gallery-one__card:hover .gallery-one__card__hover {
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.gallery-one__card__icon {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(var(--ienet-white-rgb, 255, 255, 255), 0.2);
  border-radius: 50%;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-one__card .gall_name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.gallery-one__card__icon::after,
.gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 24px;
  background-color: var(--ienet-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-one__card__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-one__card__icon:hover {
  border-color: var(--ienet-base, #DF2339);
}

.gallery-one__card__icon:hover::after,
.gallery-one__card__icon:hover::before {
  background-color: var(--ienet-base, #DF2339);
}

.gutter-y-30 {
  --bs-gutter-x: 32px;
}

.gutter-x-30 {
  --bs-gutter-y: 32px;
}

.gallery-one-main .gallery-one__card {
  overflow: hidden;
}
.gallery-one-main .gallery-one__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.page-header {
  background-color: var(--ienet-black, #251444);
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .page-header {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/banner-3.jpeg);
  mix-blend-mode: soft-light;
  background-color: var(--ienet-black, #251444);
}

.page-header__layer {
  position: absolute;
  left: 27px;
  bottom: 0;
  width: 373px;
  height: 232px;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: movebounce2 3s linear 0s infinite;
          animation: movebounce2 3s linear 0s infinite;
}

@media (max-width: 1199px) {
  .page-header__layer {
    display: none;
  }
}
.page-header .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-header__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--ienet-white, #fff);
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 40px;
  }
}
@-webkit-keyframes movebounce2 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes movebounce2 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.ienet-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}

.ienet-breadcrumb li {
  font-size: 16px;
  color: var(--ienet-white, #fff);
  text-transform: capitalize;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ienet-breadcrumb li:not(:last-of-type)::after {
  content: ":";
  position: relative;
  top: -1px;
  margin-left: 4px;
  margin-right: 4px;
}

.ienet-breadcrumb li span,
.ienet-breadcrumb li a {
  color: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.1;
}

.ienet-breadcrumb li a {
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.ienet-breadcrumb li a svg {
  margin-right: 5px;
}

.ienet-breadcrumb li a:hover {
  background-size: 100% 1px;
}

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

.contact-one {
  position: relative;
}

.contact-one__info {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.contact-one__info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--ienet-gray, #F7F5F1);
  border: 1px solid var(--ienet-border-color, #E6E2D9);
  border-radius: 20px;
  padding: 31px 29px 38px;
}

.contact-one__info__item:hover .contact-one__info__icon {
  background-color: var(--ienet-base, #DF2339);
  color: var(--ienet-white, #fff);
}

.contact-one__info__item + .contact-one__info__item {
  margin-top: 30px;
}

.contact-one__info__icon {
  width: 84px;
  height: 84px;
  background-color: var(--ienet-white, #fff);
  border: 10px solid var(--ienet-border-color, #E6E2D9);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--ienet-base, #DF2339);
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-one__info__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 7px;
}

.contact-one__info__text {
  margin: 0;
  line-height: 160%;
}

.contact-one__info__text a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

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

.contact-one__form {
  padding: 29px;
  position: relative;
  background-color: var(--ienet-gray, #F7F5F1);
  border: 1px solid var(--ienet-border-color, #E6E2D9);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .contact-one__form {
    margin-top: 45px;
  }
}
.contact-one__form__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
}

.contact-one__form__image {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .contact-one__form__image {
    margin-bottom: 30px;
  }
}
.contact-one__form__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .contact-one__form .form-one__group {
    margin-left: -10px;
  }
}
.contact-one__form .ienet-btn {
  margin-top: 10px;
}

.form-one__group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0;
}

@media (min-width: 576px) {
  .form-one__group {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
}

.form-one__control--full {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: -2;
  grid-column-end: -1;
}

.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--ienet-white, #fff);
  color: var(--ienet-text, #737177);
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.form-one .bootstrap-select > .dropdown-toggle:focus,
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one textarea:focus {
  border-color: #251444;
}

.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--ienet-white, #fff);
  color: var(--ienet-text, #737177);
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  border: none;
  outline: none;
  padding: 20px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.form-one .bootstrap-select > .dropdown-toggle:focus,
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one textarea:focus {
  border-color: #251444;
}

.form-one textarea {
  height: 153px;
  padding: 20px;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  overflow: hidden;
  background-color: var(--ienet-gray, #F7F5F1);
}

.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 570px;
  width: 100%;
  mix-blend-mode: luminosity;
}

@media (max-width: 767px) {
  .google-map iframe {
    height: 450px;
  }
}
.contact_maps {
  height: 450px;
}
.contact_maps iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .contact_maps {
    height: 300px;
  }
}

.product_details_area {
  margin-top: 100px;
}
.product_details_area .main {
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 24px;
}
.product_details_area .img {
  border-radius: 15px;
  overflow: hidden;
  position: sticky;
  top: 110px;
}
.product_details_area .text .title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 24px;
}
.product_details_area .text p {
  margin-bottom: 24px;
}
.product_details_area .text ul {
  margin-top: 24px;
  padding-left: 15px;
  margin-bottom: 24px;
}
.product_details_area .text ul li {
  font-size: 18px;
  font-weight: 500;
}
.product_details_area .text ul li + li {
  margin-top: 10px;
}
