/*
    ** Importing custom components fot the theme
    ** Created by 
    ** import all sub_components 
*/
@font-face {
  font-family: "Publico Roman";
  src: url("../fonts/Publico-Italic.woff2") format("woff2"),
    url("../fonts/Publico-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Publico";
  src: url("../fonts/Publico-Light.woff2") format("woff2"),
    url("../fonts/Publico-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Publico";
  src: url("../fonts/Publico-Bold.woff2") format("woff2"),
    url("../fonts/Publico-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Publico Roman";
  src: url("../fonts/Publico-Roman.woff2") format("woff2"),
    url("../fonts/Publico-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: ".";
  src: url("../fonts/1c8c48244b51b7cd5a9cfc45a4df2bda.woff2") format("woff2"),
    url("../fonts/1c8c48244b51b7cd5a9cfc45a4df2bda.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2"),
    url("../fonts/Lato-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.woff2") format("woff2"),
    url("../fonts/Lato-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2"),
    url("../fonts/Lato-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Italic.woff2") format("woff2"),
    url("../fonts/Lato-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Bold.woff2') format('woff2'),
        url('../fonts/Tajawal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Medium.woff2') format('woff2'),
        url('../fonts/Tajawal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Light.woff2') format('woff2'),
        url('../fonts/Tajawal-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Regular.woff2') format('woff2'),
        url('../fonts/Tajawal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --main-color: #6e27c5;
  --secondary-color: #ffb617;
  --body-color: #000;
  --soft-white: #f4f4f4;
  --gray: #afafaf;
  --blue: #42aabb;
  --main-font: "Lato", "Publico", sans-serif;
  --secondary-font: "Publico", sans-serif;
  --body-font-size: 16px;
  --section-padding: 60px;
  --header-height: 78px;
  --container-width: 1200px;
  --container-fluid: 1400px;
  --main-radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  font-family: var(--main-font);
  font-size: var(--body-font-size);
  color: var(--body-color);
  font-weight: 400;
  line-height: 1.3;
}

body.lang-ar {
  direction: rtl;
  text-align: right;
  --main-font: "Tajawal", "Publico", sans-serif;
  --secondary-font: "Tajawal", sans-serif;
}

.f-300 {
  font-weight: 300;
}

.f-400 {
  font-weight: 400;
}

.f-500 {
  font-weight: 500;
}

.f-600 {
  font-weight: 600;
}

.bold {
  font-weight: bold;
}

.font-2 {
  font-family: var(--secondary-font);
  font-weight: 400;
  /* -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
      text-rendering: optimizeLegibility; */
}

a {
  text-decoration: none;
}

.container,
.container-big {
  max-width: var(--container-width);
  width: 95%;
  margin: 0 auto;
}

.container-big {
  max-width: var(--container-fluid);
}

.list-none {
  padding: 0;
}

figure {
  margin: 0;
}

.list-none li {
  list-style: none;
}

.d-flex {
  display: flex;
  display: -webkit-flex;
}

.row-reverse {
  flex-direction: row-reverse;
}

.d-block {
  display: block;
}

.flex-column {
  flex-direction: column;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: end;
}

.shrink-0 {
  flex-shrink: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal {
  text-transform: none;
}

button {
  cursor: pointer;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  text-transform: none;
}

button,
input,
textarea,
select {
  font-family: var(--main-font);
  font-size: var(--body-font-size);
}

.line_1 {
  line-height: 1;
}

.line_1-3 {
  line-height: 1.3;
}

.line_1-5 {
  line-height: 1.5;
}

.center {
  text-align: center;
}

.align {
  text-align: inherit;
}

.text-reverse {
  text-align: right;
}

.lang-ar .text-reverse {
  text-align: left;
}

.justify {
  text-align: justify;
}

.pre-line {
  white-space: pre-line;
}

.flex-1 {
  flex: 1;
}

.align-center {
  align-items: center;
}

.align-self {
  align-self: baseline;
}

.align-end {
  align-items: flex-end;
}

.self-end {
  align-self: end;
}

.flex-all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unicode {
  unicode-bidi: plaintext;
}

.underline {
  text-decoration: underline;
}

:focus {
  outline: none;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.overflow-hidden {
  overflow: hidden;
}

.trans,
.hover-color {
  transition: 0.4s;
}

.hover-color:hover {
  color: var(--main-color);
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  white-space: nowrap;
}

.main-color {
  color: var(--main-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.gray {
  color: var(--gray);
}

.blue {
  color: var(--blue);
}

.bg-black {
  background-color: black;
}

.bg-transparent {
  background-color: transparent;
}

.bg-main {
  background-color: var(--main-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-soft {
  background-color: var(--soft-white);
}

.bg-body-color {
  background-color: var(--body-color);
}

.body-color {
  color: var(--body-color);
}

.body-color-i {
  color: var(--body-color) !important;
}

.soft-white {
  color: var(--soft-white);
}

.black {
  color: #000;
}

.white {
  color: #fff;
}

.white-i {
  color: #fff !important;
}

.bg-white {
  background-color: #fff;
}

.bg-cover {
  background-size: cover !important;
}

.object-fit {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.h-100 {
  height: 100%;
}

.h-full {
  height: 100vh;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-32 {
  width: 32%;
}

.w-33 {
  width: 33%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-41 {
  width: 41%;
}

.w-43 {
  width: 43%;
}

.w-45 {
  width: 45%;
}

.w-47 {
  width: 47%;
}

.w-48 {
  width: 48%;
}

.w-50 {
  width: 50%;
}

.w-53 {
  width: 53%;
}

.w-55 {
  width: 55%;
}

.w-58 {
  width: 58%;
}

.w-67 {
  width: 67%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-100 {
  width: 100%;
}

.w-100-i {
  width: 100% !important;
}

.relative {
  position: relative;
}

.intl-tel-input {
  width: 100%;
}

.intl-tel-input .country-list .flag-box,
.intl-tel-input .country-list .country-name {
  color: #000;
}

.top-2 {
  position: relative;
  top: 2px;
}

.section-padding {
  padding-block: var(--section-padding);
}

.section-padding-t {
  padding-top: var(--section-padding);
}

.section-padding-b {
  padding-bottom: var(--section-padding);
}

.section-padding-x {
  padding-inline: var(--section-padding);
}

.p-section-padding {
  padding: var(--section-padding);
}

.p-0 {
  padding: 0px;
}

.p-16 {
  padding: 16px;
}

.p-32 {
  padding: 32px;
}

.py-8 {
  padding-block: 8px;
}

.py-15 {
  padding-block: 15px;
}

.py-25 {
  padding-block: 25px;
}

.py-30 {
  padding-block: 30px;
}

.px-15 {
  padding-inline: 15px;
}

.px-25 {
  padding-inline: 25px;
}

.px-30 {
  padding-inline: 30px;
}
.px-50 {
  padding-inline: 50px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mx-auto {
  margin-inline: auto;
}

.mt-section-padding {
  margin-top: var(--section-padding);
}

.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-section-padding {
  margin-bottom: var(--section-padding);
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-100 {
  margin-bottom: 100px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
  display: grid;
  gap: 25px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-full-row {
  grid-column: 1/-1;
}

.gap-5 {
  gap: 5px;
}

.gap-7 {
  gap: 7px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}
.gap-100 {
  gap: 100px;
}

.gap-section-padding {
  gap: var(--section-padding);
}

.row-gap-30 {
  row-gap: 30px;
}

.lang-ar .flip-ar,
.flip {
  transform: scaleX(-1);
}

.pointer-none {
  pointer-events: none;
}

.pointer,
[photo-swipe] {
  cursor: pointer;
}

.font-10 {
  font-size: 10px;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-17 {
  font-size: 17px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-26 {
  font-size: 26px;
}

.font-28 {
  font-size: 28px;
}

.font-30 {
  font-size: 30px;
}

.font-32 {
  font-size: 32px;
}

.font-34 {
  font-size: 34px;
}

.mo {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.one-line,
.three-line,
.four-line,
.five-line,
.two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.one-line {
  -webkit-line-clamp: 1;
}

.two-line {
  -webkit-line-clamp: 2;
}

.three-line {
  -webkit-line-clamp: 3;
}

.four-line {
  -webkit-line-clamp: 4;
}

.five-line {
  -webkit-line-clamp: 5;
}

.full-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.opacity-0 {
  opacity: 0;
}

.radius-0 {
  border-radius: 0 !important;
}

.radius {
  border-radius: var(--main-radius);
}

.radius-4 {
  border-radius: 4px;
}

.radius-5 {
  border-radius: 5px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-16 {
  border-radius: 16px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-32 {
  border-radius: 32px;
}

.rounded {
  border-radius: 50%;
}

.border {
  border: 1px solid #e6e6e6;
}

.border-0 {
  border: 0;
}

.modal,
.main-menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
}

.modal-half-bottom {
  display: flex;
  align-items: end;
}

.modal-half-bottom .modal-body {
  width: 100%;
  bottom: -100%;
  border-radius: 8px 8px 0 0;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-half-bottom.active .modal-body {
  bottom: 0;
}

.modal.active,
.main-menu-mobile.active {
  visibility: visible;
  pointer-events: initial;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  cursor: pointer;
  z-index: 0;
  opacity: 0;
}

.modal.active .modal-overlay {
  animation: modal-overlay 0.4s 1 forwards ease;
}

.modal.modal-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.modal-center .modal-body {
  margin-inline: auto;
}

@keyframes modal-overlay {
  to {
    opacity: 0.3;
  }
}
.modal .modal-body {
  transition: 0.4s;
}

.side-modal .modal-body {
  width: 658px;
  left: -100%;
  height: 100%;
  max-width: 100%;
}

.corner-modal {
  display: flex;
  align-items: end;
}

.corner-modal .modal-body {
  width: 379px;
  top: 100%;
}

.corner-modal.active .modal-body {
  top: 0;
}

.lang-ar .side-modal .modal-body {
  left: auto;
  right: -100%;
}

.side-modal.active .modal-body {
  left: 0;
}

.lang-ar .side-modal.active .modal-body {
  left: auto;
  right: 0;
}

[accordion-item] [acc-body],
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s;
}

[accordion-item].active [acc-body],
.princp_item:hover .acc-body {
  grid-template-rows: 1fr;
}

[accordion-item] [acc-body] > div,
.princp_item .acc-body > div {
  overflow: hidden;
}

[data-toggle-tab]:not(.active) {
  display: none;
}

input.no-arr::-webkit-inner-spin-button,
input.no-arr::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  text-align: center;
}

.z-1 {
  z-index: 1;
}

.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.pswp__container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #fff;
  border-radius: 50%;
  animation: spin-pswp 1s linear infinite;
  pointer-events: none;
}

.hover-box {
  transition: 0.4s;
}

.hover-box:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 40px 70px -30px rgba(19, 33, 54, 0.36),
    0 20px 70px -30px rgba(0, 0, 0, 0.8);
}

@keyframes spin-pswp {
  to {
    transform: rotate(360deg);
  }
}
.wpcf7 form .wpcf7-response-output:empty {
  display: none;
}

.wpcf7.sent .btn-submit,
.disabled-form-submit form {
  pointer-events: none;
}

.wpcf7-form.incomplete .btn-submit,
.wpcf7-form.submitting .btn-submit {
  pointer-events: none;
  opacity: 0.5;
}

.pswp__item video {
  max-width: 80%;
  max-height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cont-section-new .img {
  margin-bottom: -70px;
}
.contact-page-section {
  padding-top: 150px;
}
.normal-content-pro img {
  max-width: 100%;
}
.foot-tt2[href="#"] {
  pointer-events: none;
}
.page-insure-now .news-section .box {
  grid-template-columns: repeat(3, 1fr);
}
.banner-section.product-banner .left .banner-icn,
.banner-section.product-banner .left svg {
  width: 96px;
  height: 96px;
}
.banner-section.product-banner .left svg path {
  fill: var(--main-color);
}
.single-product .banner-section .right .img {
  object-position: right center;
}
@media (max-width: 1200px) {
  .grid-3-t {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2-t {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1-t {
    grid-template-columns: repeat(1, 1fr);
  }
  .do-only {
    display: none !important;
  }
  .to {
    display: block !important;
  }
}
@media (max-width: 1000px) {
  :root {
    --section-padding: 32px;
    --header-height: 141px;
  }
  .container,
  .container-p,
  .container-small {
    max-width: inherit;
    width: 100%;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto;
    margin-right: auto;
  }
  .container-left-p {
    margin-inline-start: auto;
    padding-inline: 20px;
    max-width: 100%;
    padding-inline-end: 10px;
  }
  .grid-1-p,
  .grid-2-p,
  .grid-3-p {
    display: grid;
  }
  .grid-1-p {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2-p {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-p {
    grid-template-columns: repeat(3, 1fr);
  }
  .mo {
    display: block !important;
  }
  .do {
    display: none !important;
  }
  .flex-p {
    display: flex;
  }
  .wrap-p {
    flex-wrap: wrap;
  }
  .center-p {
    text-align: center;
  }
  .justify-center-p {
    justify-content: center;
  }
  .column-reverse-p {
    flex-direction: column-reverse;
  }
  .row-reverse-p {
    flex-direction: row-reverse;
  }
  .full-p {
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  .flex-column-p {
    flex-direction: column;
  }
  .d-flex-p {
    display: flex;
  }
  .space-between-p {
    justify-content: space-between;
  }
  .justify-end-p {
    justify-content: end;
  }
  .justify-start-p {
    justify-content: start;
  }
  .f-400-p {
    font-weight: 400;
  }
  .font-12-p {
    font-size: 12px !important;
  }
  .font-14-p {
    font-size: 14px !important;
  }
  .font-16-p {
    font-size: 16px !important;
  }
  .font-18-p {
    font-size: 18px !important;
  }
  .font-20-p {
    font-size: 20px !important;
  }
  .font-22-p {
    font-size: 22px !important;
  }
  .font-32-p {
    font-size: 32px !important;
  }
  .font-48-p {
    font-size: 48px;
  }
  .modal.active,
  .main-menu-mobile.active {
    pointer-events: initial;
  }
  .main-menu-mobile .menu-wrapper {
    width: 100%;
  }
  .main-menu-mobile .menu-wrapper {
    left: -100%;
    opacity: 0;
  }
  .main-menu-mobile.active .menu-wrapper {
    left: 0;
    opacity: 1;
  }
  .lang-ar .main-menu-mobile .menu-wrapper {
    left: auto;
    right: -100%;
  }
  .lang-ar .main-menu-mobile.active .menu-wrapper {
    right: 0;
  }
  .main-menu-mobile .menu-upper-part {
    overflow-y: auto;
  }
  .align-center-p {
    align-items: center;
  }
  .align-start-p {
    align-items: start;
  }
  .w-100-p {
    width: 100% !important;
  }
  .p-0-p {
    padding: 0;
  }
  .p-15-p {
    padding: 15px;
  }
  .p-24-p {
    padding: 24px;
  }
  .px-15-p {
    padding-inline: 15px;
  }
  .px-p {
    padding-inline: 24px;
  }
  .section-padding-t-p {
    padding-top: var(--section-padding);
  }
  .section-padding-b-p {
    padding-bottom: var(--section-padding);
  }
  .section-padding-p {
    padding-block: var(--section-padding);
  }
  .py-0-p {
    padding-block: 0px;
  }
  .py-15-p {
    padding-block: 15px;
  }
  .py-30-p {
    padding-block: 30px;
  }
  .pt-0-p {
    padding-top: 0px;
  }
  .pt-10-p {
    padding-top: 10px;
  }
  .pt-15-p {
    padding-top: 15px;
  }
  .pt-20-p {
    padding-top: 20px;
  }
  .pt-25-p {
    padding-top: 25px;
  }
  .pt-30-p {
    padding-top: 30px;
  }
  .pt-50-p {
    padding-top: 50px;
  }
  .pt-65-p {
    padding-top: 65px;
  }
  .pt-100-p {
    padding-top: 100px;
  }
  .pb-0-p {
    padding-bottom: 0px;
  }
  .pb-15-p {
    padding-bottom: 15px;
  }
  .pb-25-p {
    padding-bottom: 25px;
  }
  .pb-30-p {
    padding-bottom: 30px;
  }
  .pb-40-p {
    padding-bottom: 40px !important;
  }
  .pb-50-p {
    padding-bottom: 50px !important;
  }
  .pb-65-p {
    padding-bottom: 65px;
  }
  .mt-20-p {
    margin-top: 20px;
  }
  .mb-0-p {
    margin-bottom: 0;
  }
  .mb-5-p {
    margin-bottom: 5px;
  }
  .mb-10-p {
    margin-bottom: 10px;
  }
  .mb-15-p {
    margin-bottom: 15px;
  }
  .mb-20-p {
    margin-bottom: 20px;
  }
  .mb-30-p {
    margin-bottom: 30px;
  }
  .mb-40-p {
    margin-bottom: 40px;
  }
  .mb-50-p {
    margin-bottom: 50px;
  }
  .gap-0-p {
    gap: 0;
  }
  .gap-3-p {
    gap: 3px;
  }
  .gap-7-p {
    gap: 7px;
  }
  .gap-10-p {
    gap: 10px;
  }
  .gap-15-p {
    gap: 15px;
  }
  .gap-20-p {
    gap: 20px;
  }
  .gap-25-p {
    gap: 25px;
  }
  .gap-30-p {
    gap: 30px;
  }
  .gap-40-p {
    gap: 40px;
  }
  .gap-50-p {
    gap: 50px;
  }
  .gap-60-p {
    gap: 60px;
  }
  .gap-65-p {
    gap: 65px;
  }
  .br-0-p br {
    display: none;
  }
  .border-0-p {
    border: 0 !important;
  }
  .scroll-80-p::-webkit-scrollbar-thumb,
  .scroll-80-p::-webkit-scrollbar-track,
  .scroll-80-p::-webkit-scrollbar,
  .scroll-90-p::-webkit-scrollbar-thumb,
  .scroll-90-p::-webkit-scrollbar-track,
  .scroll-90-p::-webkit-scrollbar,
  .scroll-x-p::-webkit-scrollbar-thumb,
  .scroll-x-p::-webkit-scrollbar-track,
  .scroll-x-p::-webkit-scrollbar,
  .scroller-0-p::-webkit-scrollbar-thumb,
  .scroller-0-p::-webkit-scrollbar-track,
  .scroller-0-p::-webkit-scrollbar {
    display: none;
  }
  .scroll-80-p,
  .scroll-90-p,
  .scroll-x-p {
    display: flex;
    overflow-x: auto;
    gap: 25px;
  }
  .scroll-80-p > * {
    max-width: 80%;
    width: 80%;
    min-width: 80%;
  }
  .scroll-90-p > * {
    max-width: 90%;
    width: 90%;
    min-width: 90%;
  }
  .overflow-hidden-p {
    overflow: hidden;
  }
  .has-childs > a:after {
    content: "";
    background: url(../images/chevron-down-black.svg) no-repeat;
    width: 24px;
    height: 24px;
    transition: 0.4s;
    background-size: contain;
  }
  .justify-p {
    text-align: justify;
  }
  .pswp__item video {
    max-width: 100%;
    width: 100%;
    height: 100svh;
  }
}
.header {
  background-color: #fff;
  border-bottom: 1px solid #d7d7d7;
  position: sticky;
  transition: 0.4s;
  z-index: 4;
  top: 0;
}

.scroll .header {
  transform: translateY(-100%);
}

.scroll.scroll-up .header {
  transform: translateY(0);
}

.main-menu-box .menu-item a {
  color: #000;
  /* transition: 0.4s; */
  position: relative;
  /* font-family: var(--secondary-font); */
  padding-block: 24px;
  display: block;
  border-bottom: 4px solid transparent;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}
.lang-ar .main-menu-box .menu-item a {
  padding-block: 30px 18px;
}
.main-menu-box .menu-item a:hover,
.main-menu-box .menu-item a.active,
.links-right-also .itm:hover {
  border-color: var(--main-color);
}
.links-right-also {
  list-style: none;
}
.links-right-also a {
  font-size: 14px;
  border-bottom: 4px solid transparent;
  font-size: 14px;
  line-height: 22px;
  padding: 24px 0;
  white-space: nowrap;
  font-weight: bold;
  color: #000;
  transition: 0.4s;
}

.search-header-btn {
  padding: 0;
  padding-bottom: 4px;
}

.land-item {
  height: 660px;
}

.land-item .vid-box {
  width: calc(100% - 165px);
  right: 0;
}

.land-item .bg {
  background: rgba(0, 0, 0, 0.4);
}

.land-item .tt {
  font-size: 62px;
  line-height: 72px;
}

.hero__notch {
  padding: 4pc 90pt;
}

.span-inside span,
.span-inside i {
  color: var(--main-color);
}

.landing-about-chubb {
  margin-top: -60px;
}

.land-btn {
  position: absolute;
  bottom: 70px;
  right: var(--container-offset-normal);
  z-index: 2;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.6784313725);
  border: 0;
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
}

.land-btn.active {
  opacity: 1;
  pointer-events: auto;
}

.subtitle span {
  text-transform: uppercase;
  line-height: 26px;
  border-bottom: 4px solid var(--main-color);
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.we-serve-section .item {
  border-bottom: 2px solid #6e27c5;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  height: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1.5;
}

.we-serve-section .item .tt1 .icn {
  width: 38px;
  height: 38px;
  border: 1px solid #000;
  border-radius: 50%;
}

.we-serve-section .item .tx1 {
  word-wrap: break-word;
  font-size: 32px;
  line-height: 2pc;
  padding-block: 15px;
}

.we-serve-section .item .cntnt {
  padding: 24px 2pc;
}

.we-serve-section .item .desc {
  line-height: 22px;
}

.we-serve-section .item .acc {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s;
}

.we-serve-section .item:hover .acc {
  grid-template-rows: 1fr;
}

.why-chubb-section .box {
  border: 1px solid #d7d7d7;
  gap: 120px;
}

.why-chubb-section .img {
  width: 75%;
  height: 75%;
}

.why-chubb-section .dd {
  line-height: 1.7;
}

.h-40,
.h-50 {
  font-size: 44px;
  font-family: var(--secondary-font);
  font-weight: 400;
}

.h-50 {
  font-size: 54px;
}

.why-chubb-section .bg {
  width: 90%;
}
.lang-ar .why-chubb-section .bg {
  left: auto;
  right: 0;
}

.have-question-section .box {
  padding: 4pc 5pc;
}

.have-question-section {
  background-attachment: fixed;
  background-size: cover;
}

.btn {
  transition: 0.4s;
  background-color: #000;
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 22px 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--main-color);
}

.btn.btn-primary:hover {
  background-color: var(--main-color);
}

.btn.btn-outline {
  border-color: #fff;
}

.btn.btn-outline:hover {
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.btn.btn-outline-black {
  border-color: #000;
  background-color: transparent;
  color: #000;
}

.btn.btn-outline-black:hover {
  border-color: var(--main-color);
  background-color: var(--main-color);
  color: #fff;
}

.foot-links a {
  font-weight: 700;
  line-height: 26px;
  color: #fff;
}

.foot-links a:hover {
  text-decoration: underline;
}

.foot-col.col1 {
  width: 282px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.2901960784);
}

.foot-tt2 {
  border-bottom: 4px solid transparent;
  font-size: 1pc;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 26px;
  padding-bottom: 4px;
  text-decoration: none;
  text-transform: uppercase;
}

.foot-tt2:hover {
  border-color: var(--main-color);
}

.footer .restup .foot-col {
  max-width: 330px;
}

.foot-social a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
}

.footer .box2 {
  border-top: 1px solid rgba(255, 255, 255, 0.2901960784);
}

.banner-section .right {
  width: calc(41.66667% + var(--container-offset-normal) / 2);
  transform: translateX(calc(var(--container-offset-normal) / 2));
}
.lang-ar .banner-section .right {
  transform: translateX(calc(-1 * var(--container-offset-normal) / 2));
}

.banner-section .right .ins {
  height: 100%;
  padding: 5pc;
}

.products-section .itm:hover {
  background-color: var(--main-color);
  color: #fff;
}

.products-section .itm span {
  line-height: 1.3;
}

.products-section .itm:hover img {
  filter: invert(1);
}

.products-section .itm span:after {
  content: "";
  background: url(../image/chevron-right.svg) no-repeat center center;
  width: 16px;
  height: 16px;
  transition: 0.4s;
  display: inline-block;
}
.lang-ar .products-section .itm span:after,
.lang-ar .products-section .itm2 svg {
  transform: scale(-1);
}
.products-section .itm:hover span:after {
  filter: invert(1);
}

.products-section .box {
  row-gap: 6px;
}

.products-section .box2-list {
  border: 2px solid #d7d7d7;
  padding: 2pc;
}

.products-section .itm2 svg {
  width: 16px;
  height: 16px;
}

.products-section .itm2 svg path {
  transition: 0.4s;
  fill: #000;
}

.products-section .itm2:hover {
  color: var(--main-color);
}

.products-section .itm2:hover svg path {
  fill: var(--main-color);
}

.products-section .itm2:hover span {
  text-decoration: underline;
}

.single-product-section .left {
  width: 281px;
}

.single-product-section .right {
  row-gap: 50px;
  width: calc(100% - 330px);
}

.single-product-section .left-in {
  border-inline-start: 4px solid var(--main-color);
  padding-inline-start: 14px;
}
.single-product-section-original .h-40 {
  font-size: 40px;
}

.single-product-section .left-in .l-desc,
.single-product-section .td1 {
  line-height: 26px;
}

.news-section .box {
  border-top: 1px solid #ebebeb;
}

.news_item {
  background-color: #ebebeb;
  border-top: 4px solid var(--secondary-color);
}

.news_item .btn {
  border-width: 2px;
  padding-block: 15px;
}

.normal-content-pro {
  overflow-x: auto;
  max-width: 100%;
}
.normal-content-pro h2 {
  color: #000;
  font-size: 32px;
  margin-bottom: 15px;
  font-family: var(--secondary-font);
}

.normal-content-pro h3 {
  color: #000;
  font-size: 24px;
  margin-bottom: 15px;
  font-family: var(--secondary-font);
}
.page-template-contact-us-page .cont-section-new .box .img {
      height: 360px;
    object-position: center 22%;
}
.fees-page-section .feed-cntnt table,
.table-inside table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  border: 1px solid #d0d2d4;
  overflow: hidden;
}

.fees-page-section .feed-cntnt table thead th,
.fees-page-section .feed-cntnt table tbody td,
.table-inside table thead th,
.table-inside table tbody td {
  background-color: #f5f5f5;
  border-bottom: 1px solid #d0d2d4;
  padding: 13px 10px;
  font-size: 14px;
  font-weight: bold;
  border-inline-end: 1px solid #d0d2d4;
  text-align: center;
}

.fees-page-section .feed-cntnt table thead th:last-of-type,
.fees-page-section .feed-cntnt table tbody td:last-of-type,
.table-inside table thead th:last-of-type,
.table-inside table tbody td:last-of-type {
  border-inline-end: 0;
}

.fees-page-section .feed-cntnt table tbody td,
.table-inside table tbody td {
  background-color: transparent;
  text-align: center;
  font-weight: 400;
}

.fees-page-section .feed-cntnt table tbody tr:last-of-type td,
.table-inside table tbody tr:last-of-type td {
  border-bottom: 0;
}

.about-banner .box {
  height: 660px;
  padding-inline-start: 60px;
}

.about-banner .tt {
  font-size: 72px;
}

.about-banner .tg {
  background-color: #fff;
  font-size: 24px;
  color: #000;
  padding: 15px 35px;
}

.about-banner .bg {
  background: rgba(0, 0, 0, 0.4);
}

.have-question-section .box {
  text-align: center;
}

.form-control {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #d0d2d4;
  padding: 16px;
  font-size: 20px;
  color: #000;
  font-family: var(--secondary-font);
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.3882352941);
}
.lang-ar .iti {
  direction: ltr;
}

.contact-page-section .right .succsess-message {
  display: none;
}

.contact-page-section .right.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page-section .right.active .succsess-message {
  display: block;
}

.contact-page-section .right.active .form-inside {
  display: none;
}

.btn {
  cursor: pointer;
}

.search-modal .form-box {
  border-bottom: 1px solid #d7d7d7;
  border-top: 1px solid #d7d7d7;
  width: 100%;
}

.search-modal .form-box .inp {
  border: 0;
  width: 100%;
  height: 110px;
  padding: 20px;
  font-size: 24px;
  background: url(../image/search-purple.svg) no-repeat 20px center;
  background-size: 30px;
  padding-inline-start: 70px;
  color: #000;
}
.lang-ar .search-modal .form-box .inp {
      background-position-x: calc(100% - 20px);
}
.search-modal .form-box .inp::placeholder {
  font-family: var(--secondary-font);
  font-style: italic;
}

.search-modal .modal-body {
  transition: 0.4s;
  top: 0;
  opacity: 0;
}

.search-modal.active .modal-body {
  top: var(--header-height);
  opacity: 1;
}

.float-to-up-btn {
  box-shadow: 0 0 9.4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 2;
  width: 60px;
  height: 60px;
  bottom: 15px;
  right: var(--container-offset-normal);
  opacity: 0;
  transition: 0.4s;
}

.scroll .float-to-up-btn {
  opacity: 1;
}

.lang-ar .float-to-up-btn {
  right: auto;
  left: var(--container-offset-normal);
}

.foot-links-bottm a {
  color: #fff;
}

textarea.form-control {
  height: 148px;
  max-width: 100%;
}

select.form-control {
  padding-inline-end: 46px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../image/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.lang-ar select.form-control {
  background-position: left 16px center;
}

.lang-switcher-popup .hidden-overlay,
.menu-item-has-children .hidden-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.right-options .lang-switcher-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: 0.4s;
}

.lang-ar .right-options .lang-switcher-popup {
  right: auto;
  left: 0;
}

.right-options .lang-right-ccc.active .lang-switcher-popup {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.lang-ddl {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 16px;
  background-color: #fff;
  min-width: 150px;
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}

.lang-ddl a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #131e29;
  font-size: 20px;
  padding: 10px;
}

.lang-ddl a .c {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #131e29;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.4s;
  flex-shrink: 0;
}

.lnk-lang-en {
  font-weight: 500;
}

.lang-ddl a.active .c {
  background-color: var(--main-color);
  border-color: var(--main-color);
  position: relative;
  overflow: hidden;
}

.lang-ddl a.active .c:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #fff;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
}

.lang-switcher-popup .hidden-overlay,
.menu-item-has-children .hidden-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single-investor-section .item1-temp {
  border-bottom: 1px solid #000;
  padding-block: 50px;
}
.single-investor-section .item1-temp:first-of-type {
  /* padding-top: 0; */
}
.single-investor-section .item1-temp:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.single-investor-section .itm2-tmp .left-side .insz {
  position: sticky;
  top: var(--header-height);
}
.team_item {
  border-bottom: 3px solid var(--main-color);
}
.font-38 {
  font-size: 38px;
}
.banner-section .right .img {
  height: 490px;
}
.inner-service-options-modal .modal-body {
  top: -50px;
  opacity: 0;
  width: 1000px;
  max-height: 100vh;
  overflow-y: auto;
}
.inner-service-options-modal.active .modal-body {
  top: 0;
  opacity: 1;
}
.lang-ar .contact-locations-section .normal-content-pro {
  unicode-bidi: plaintext;
  direction: ltr;
}
@media (max-width: 1440px) and (min-width: 1001px) {
  .land-item .vid-box {
    width: 100%;
  }
  .banner-section .right {
    width: 50%;
    transform: translateX(0);
  }
  .banner-section .box {
    justify-content: space-between;
  }
}
@media (max-width: 1000px) {
  .banner-section .right .ins {
    width: 100%;
  }
  .land-item .vid-box {
    width: 100%;
  }
  .land-item .tt {
    font-size: 50px;
    line-height: 1.2;
  }
  .land-item .inner {
    width: 100%;
  }
  .header {
    padding-block: 24px;
  }
  .landing-about-chubb .box {
    font-size: 26px;
    padding: 3pc 2pc;
  }
  .we-serve-section .item {
    aspect-ratio: 1/1.15;
  }
  .we-serve-section .item .acc {
    grid-template-rows: 1fr;
  }
  .we-serve-section .item .tx1 {
    font-size: 20px;
    padding-block: 0 20px;
  }
  .we-serve-section .item .cntnt {
    padding: 15px 20px;
  }
  .why-chubb-section .bg {
    width: 100%;
    height: calc(100% - 40px);
  }
  .why-chubb-section .left {
    padding-top: 50px;
  }
  .why-chubb-section .right {
    padding: 0;
  }
  .why-chubb-section .img {
    width: 80%;
    height: 186px;
    margin-inline: auto;
  }
  .why-chubb-section .box {
    border: 0;
    gap: 40px;
  }
  .h-40,
  .h-50 {
    font-size: 34px;
  }
  .h-50 {
    font-size: 40px;
  }
  .have-question-section .box {
    padding: 3pc 24px;
    text-align: center;
  }
  .footer {
    padding-top: 64px;
  }
  .foot-col.col1 {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2901960784);
    padding-bottom: 30px;
  }
  .foot-tt-wrap {
    padding-bottom: 25px;
  }
  .foot-social a {
    width: 30px;
    height: 30px;
  }
  .main-menu-mo-list a {
    font-size: 26px;
    font-family: var(--secondary-font);
    color: #000;
  }
  .main-menu-mobile .menu-part-1 {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 18px;
    margin-bottom: 20px;
  }
  .banner-section .box {
    flex-direction: column-reverse;
  }
  .banner-section .right .ins {
    padding: 40px;
  }
  .banner-section .right .img {
    width: 100%;
    height: 295px;
  }
  .products-section .itm {
    gap: 15px;
    padding: 12px 0;
    font-size: 20px;
  }
  .products-section .itm > img {
    width: 24px;
    height: 24px;
  }
  .products-section .box2 {
    border: 2px solid #d7d7d7;
    margin-top: 24px;
    padding: 9pt 24px;
  }
  .products-section .box2 .c1 {
    letter-spacing: 2px;
  }
  .about-banner .tt {
    font-size: 30px;
  }
  .about-banner .box {
    height: auto;
    padding-inline-start: 0;
    padding-block: 150px;
  }
  .about-banner .tg {
    font-size: 16px;
  }
  .float-to-up-btn {
    width: 45px;
    height: 45px;
    bottom: 12px;
    right: 20px;
  }
  .lang-ar .float-to-up-btn {
    right: auto;
    left: 20px;
  }
  .footer .restup .foot-col {
    max-width: 100%;
    width: 100%;
  }
  .form-control {
    height: 51px;
    font-size: 16px;
  }
  textarea.form-control {
    height: 100px;
  }
  .cont-section-new .img {
    margin-bottom: -30px;
    height: 150px;
  }
  .contact-page-section {
    padding-top: 80px;
  }
  .contact-locations-section .box {
    gap: 80px;
  }
  .cont-section-new .ic {
    width: 40px;
    height: 40px;
  }
  .search-modal .form-box .inp {
    font-size: 16px;
  }
  .inner-service-options-modal .lnx {
    font-size: 22px;
  }
  .single-product-section .left {
    width: 100%;
  } 
  .single-product-section .right {
    width: 100%;
  }
  .lang-menu-modal .modal-body {
    transition: 0.4s;
    top: 50px;
    opacity: 0;
  }
  .lang-menu-modal.active .modal-body {
    top: 150px;
    opacity: 1;
  }
  .lang-switcher-popup-mo {
    border-radius: 40px;
    padding: 24px;
  }
  .lang-ddl {
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    gap: 10px;
  }
  .lang-ddl a {
    font-size: 16px;
    padding: 10px;
  }
  .main-menu-mobile {
    height: 100vh;
    width: 100vw;
  }
  .table-inside table tbody td,
  .table-inside table th {
      font-size: 13px!important;
  }
  .prd-content-only .right {
    overflow-x: auto;
  }
  .page-insure-now .news-section .box {
  grid-template-columns: repeat(1, 1fr);
}
.page-template-contact-us-page .cont-section-new .box .img {
    height: 120px;
}
.header .menu-bottom-part {
      position: sticky;
    bottom: 0;
}
}
