@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Medium.woff2") format("woff2"),
    url("../fonts/Inter18pt-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Bold.woff2") format("woff2"),
    url("../fonts/Inter18pt-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Regular.woff2") format("woff2"),
    url("../fonts/Inter18pt-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-SemiBold.woff2") format("woff2"),
    url("../fonts/Inter18pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #e76436;
}

body {
  overflow-x: hidden;
}

ul {
  padding-left: 0;
}

p,
a,
body {
  font-family: "Montserrat", sans-serif !important;
}

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

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

.bg-black {
  background: #070c14;
}

.pd-100 {
  padding: 100px 0;
}

.txt-white {
  color: #fff;
}

.txt-yellow {
  color: #fbc343 !important;
}

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

#main-wrapper {
  min-height: calc(100vh - 15vh);
  background: #fff;
}

/***Common Button Start***/
.gradient-btn {
  background: linear-gradient(90deg,
      rgba(237, 161, 60, 1) 0%,
      rgba(227, 86, 56, 1) 100%);
  border-radius: 30px;
  color: #fff;
  padding: 14px 22px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
  border: #fff;
  font-weight: 500;
}

.gradient-btn:hover {
  opacity: 0.8;
}

.wht-btn {
  background: #fff;
  border-radius: 30px;
  color: #000;
  padding: 14px 22px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
}

.wht-btn:hover {
  opacity: 0.8;
}

.bd-grd-btn {
  border-radius: 30px;
  color: #fff;
  padding: 13px 22px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  border: 1px solid #e35638;
  background: transparent;
}

.bd-grd-btn:hover {
  background: linear-gradient(90deg,
      rgba(237, 161, 60, 1) 0%,
      rgba(227, 86, 56, 1) 100%);
}

/***Common Button End***/

.header-card {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 9;
}

.header-card .navbar-collapse {
  justify-content: center !important;
}

.header-card .navbar-nav .nav-item {
  margin-right: 50px;
}

.header-card .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  color: #fff;
  position: relative;
  padding: 0;
}

.header-card .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
}

.header-card .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
}

.header-card .navbar-nav .nav-item .nav-link::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: -1px;
  transform: none;
  content: "";
  background: var(--primary-color);
  border-radius: 0;
  opacity: 0;
}

.header-card .dropdown-toggle::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  position: absolute;
  right: -15px;
  top: 8px;
}

.header-card .navbar-nav .nav-item.dropdown ul {
  padding: 0;
  overflow: hidden;
}

.header-card .navbar-nav .nav-item.dropdown ul li a {
  border-bottom: 1px dashed #eee;
  padding: 10px 15px;
  font-size: 13px;
}

.header-card .navbar-nav .nav-item.dropdown ul li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.header-card .navbar-nav .nav-item.dropdown ul li:last-child a {
  border: 0;
}

.orange-txt {
  color: #e56739 !important;
}

.banner-area {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}

.banner_header_top {
  position: relative;
  width: 100%;
  min-height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}

.banner_header_top .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  object-position: center center;
}

.banner-area .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-area .content,
.banner_header_top .my-protecto-breadcrum {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.banner-area:before,
.banner_header_top:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: #000;
  opacity: 0.6;
}

.banner-area h1,
.banner_header_top h1 {
  position: relative;
  font-size: 70px;
  line-height: 80px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.banner-area h1 span {
  position: relative;
  font-size: 70px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #e45a39;
  -webkit-text-stroke: 0px #ec9b3c;
  opacity: 1;
}

.banner-area p,
.banner_header_top p {
  font-size: 18px;
  color: #fff;
  margin: 15px 0;
}

.created-sec {
  overflow: hidden;
}

.created-sec::after {
  position: absolute;
  left: 0;
  background: url(../images/banner-ellipse.png);
  content: "";
  width: 603px;
  height: 933px;
  top: 0;
  z-index: -1;
}

.created-lft-dis .created-span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.created-lft-dis h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.created-lft-dis p {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 25px;
}

.created-rt-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.who-we-img {
  position: relative;
  z-index: 999;
}

.who-we-img img {
  width: 100%;
}

.who-we-img::after {
  position: absolute;
  right: -60%;
  background: url(../images/who-we-bg.png);
  content: "";
  width: 1071px;
  height: 1072px;
  top: -60%;
}

.who-we {
  overflow: hidden;
}

.common-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.common-hd p {
  max-width: 660px;
}

.common-hd p.w-lg-75 {
  max-width: 1200px;
}

.who-we-rt p {
  color: #fff;
  font-size: 16px;
}

.special-factor {
  position: relative;
  overflow: hidden;
}

.special-factor::after {
  position: absolute;
  left: 60%;
  background: url(../images/special-ellipse.png);
  content: "";
  width: 1113px;
  height: 1114px;
  top: 60%;
  transform: translate(-50%, -50%);
}

.offer-card {
  padding: 20px;
  background: rgb(178 178 178 / 30%);
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 999;
  height: calc(100% - 20px);
  margin-bottom: 20px;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-img {
  border-radius: 4px;
  overflow: hidden;
  height: 220px;
  margin-bottom: 16px;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-dis h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}

.offer-dis p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
  line-height: 26px;
}

.how-it {
  position: relative;
  padding: 80px 0;
}

.how-it::after {
  position: absolute;
  right: 0;
  background: url(../images/how-rt-ellipse.png);
  content: "";
  width: 469px;
  height: 949px;
  top: 20%;
}

.how-it::before {
  position: absolute;
  left: 0;
  background: url(../images/how-lft-ellipse.png);
  content: "";
  width: 506px;
  height: 1080px;
  bottom: -40%;
}

.how-step-dis {
  background: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  position: relative;
  max-height: 400px;
}

.how-step-dis::after {
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 4px;
  background: transparent;
  content: "";
  border: 1px solid #fff;
}

.how-step-dis::before {
  position: absolute;
  left: -90px;
  width: 90px;
  height: 2px;
  background: #fff;
  content: "";
  top: 47%;
  z-index: -1;
}

.how-step-dis h4 {
  color: #e76436;
  font-weight: 700;
  font-size: 20px;
}

.how-step-dis p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.step-no {
  max-width: 118px;
  max-height: 108px;
  border-radius: 8px;
  display: inline-block;
  background: #fff;
  min-width: 118px;
  min-height: 108px;
  text-align: center;
  line-height: 98px;
  transform: rotate(-45deg);
  margin-right: 70px;
  position: relative;
}

.step-no p {
  transform: rotate(45deg);
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #e76436;
  margin-bottom: 0;
}

.app-sec-inr {
  background: var(--primary-color);
  padding: 30px;
  border-radius: 20px;
}

.app-dis h4 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.app-img {
  position: relative;
  bottom: -20px;
  right: 40px;
}

.why-we-counter {
  background: rgb(178 178 178 / 30%);
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-we-counter .text {
  margin-bottom: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.why-we-counter p {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 58px;
}

.why-we {
  position: relative;
  overflow: hidden;
}

.why-we::after {
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("../images/choose-ellipse.png");
  width: 359px;
  height: 569px;
  content: "";
  z-index: -1;
}

.testimonial-sec {
  overflow: hidden;
  position: relative;
}

.testimonial-sec .swiper-slide.swiper-slide-active .test-disc {
  transform: scale(1.1);
}

.test-disc {
  text-align: center;
  padding: 20px;
  background: rgb(178 178 178 / 30%);
  border-radius: 10px;
  padding: 40px;
  transform: scale(0.9);
}

.test-disc p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  min-height: 190px;
}

.test-disc .icon {
  color: #e76436;
  font-size: 55px;
}

.testi-user {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  gap: 12px;
}

.testi-user .testi-img {
  display: inline-block;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0;
}

.testi-user .testi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-user h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 28px;
  text-align: start;
}

.testi-user .info span {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 26px;
  text-align: start;
}

.star-list li {
  display: inline-block;
  font-size: 16px;
  color: #fff;
}

.testimonial-sec .swiper {
  overflow: visible;
}

.testiSwiper .swiper-button-next::after,
.testiSwiper .swiper-button-prev::after {
  display: none;
}

.testiSwiper .swiper-button-next,
.testiSwiper .swiper-button-prev {
  width: 69px;
  min-width: 69px;
  height: 69px;
  top: -50% !important;
  z-index: 99 !important;
  transform: translateY(50%);
}

.testiSwiper .swiper-button-next::before,
.testiSwiper .swiper-button-prev::before {
  position: absolute;
  width: 69px;
  min-width: 69px;
  height: 69px;
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  border-radius: 50%;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: #fff;
}

.testiSwiper .swiper-button-prev::before {
  content: "\f060";
  left: 0;
  background-color: rgba(255 255 255 / 20%);
}

.testiSwiper .swiper-button-prev:hover::before {
  background-color: var(--primary-color);
}

.testiSwiper .swiper-button-next::before {
  content: "\f061";
  right: 0;
}

.testiSwiper .swiper-button-prev {
  left: 7%;
  right: auto;
}

.testiSwiper .swiper-button-next {
  right: 7%;
  left: auto;
}

/***Footer***/
.main_footer {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #000;
  padding: 80px 0 0;
}

.main_footer .footer-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
}

.main_footer .footer-box h4 {
  font-size: 20px;
  line-height: 33px;
  font-weight: 700;
  color: #e76436;
  margin-bottom: 16px;
}

.main_footer .footer-box ul {
  padding: 0;
  margin-bottom: 0;
}

.main_footer .footer-box ul li {
  list-style: none;
  margin-bottom: 14px;
}

.main_footer .footer-box ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.main_footer .footer-box ul li a:hover {
  color: var(--primary-color);
}

.index-page-navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color);
}

.main_footer .footer-box ul li:last-child {
  margin: 0;
}

.main_footer .footer-box .footer-search {
  display: flex;
  align-items: center;
  border: 1px solid #ffd0d0;
  border-radius: 10px;
  position: relative;
}

.main_footer .footer-box .footer-search .form-control {
  border: 0;
  height: 45px;
  padding: 11px;
  border-radius: 0;
  color: #fff;
  background-color: transparent;
  font-size: 14px;
}

.main_footer .footer-box .footer-search .form-control:focus {
  box-shadow: none;
}

.main_footer .footer-box .footer-search .form-control::placeholder {
  color: #fff;
}

.main_footer .footer-box .footer-search .btn-dark {
  font-size: 14px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  min-height: 47px;
  background-color: #e76436;
  color: #fff;
  border-radius: 11px;
  position: absolute;
  right: -5px;
}

.main_footer .footer-box ul.social-icons {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 0;
  margin-top: 30px;
}

.main_footer .footer-box ul.social-icons li {
  background-color: #fff;
  border: 1px solid #fff;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 100%;
  cursor: pointer;
}

.main_footer .footer-box ul.social-icons li a {
  color: var(--primary-color);
}

.main_footer .footer-box ul.social-icons li:hover {
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.main_footer .copy-right {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 40px;
}

.main_footer .copy-right p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin: 0;
}

.main_footer .copy-right p a {
  color: #fff;
}

label.error {
  font-weight: 400 !important;
  color: red !important;
}

label#checkbox-error {
  margin-top: 4px;
  position: absolute;
  top: 15px;
  left: 0;
}

/* contact us page css */
.created_header {
  background: #000;
  padding: 30px 0px 80px;
}

.created_hd_inner h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
}

.contact__area {
  padding: 80px 0px;
}

.contact__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  text-align: center;
  font-size: 13px;
  color: #0e1133;
  background: #f3f4f8;
  border-radius: 4px;
}

.contact__form-input input,
.contact__form-input textarea {
  width: 100%;
  height: 56px;
  line-height: 54px;
  padding: 0 23px;
  background: #f3f4f8;
  border-radius: 4px;
  border: 2px solid #f3f4f8;
  color: #0e1133;
  font-size: 15px;
  margin-bottom: 20px;
}

.contact__form-input input::-webkit-input-placeholder,
.contact__form-input textarea::-webkit-input-placeholder {
  font-size: 15px;
  color: #6d6e75;
}

.contact__form-input input:-ms-input-placeholder,
.contact__form-input textarea:-ms-input-placeholder {
  font-size: 15px;
  color: #6d6e75;
}

.contact__form-input input::placeholder,
.contact__form-input textarea::placeholder {
  font-size: 15px;
  color: #6d6e75;
}

.contact__form-input input:focus,
.contact__form-input textarea:focus {
  border-color: var(--mainColor);
  outline: none;
  background: #fff;
}

.contact__form-input textarea {
  height: 180px;
  padding: 23px 25px;
  line-height: 1.1;
  resize: none;
  margin-bottom: 13px;
}

.contact__form-agree {
  padding-left: 5px;
}

.contact__form-agree input {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #b9bac1;
  outline: none;
  border-radius: 4px;
}

.contact__form-agree input:checked {
  position: relative;
  background-color: #2b4eff;
  border-color: transparent;
}

.contact__form-agree input:checked:after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  font-size: 10px;
  color: #fff;
  top: 1px;
  left: 4px;
  height: 8px;
  width: 5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contact__form-agree input:hover {
  cursor: pointer;
}

.contact__form-agree label {
  padding-left: 8px;
  color: #53545b;
}

.contact__form-agree label a {
  color: #fff;
  font-weight: 600;
  padding-left: 4px;
}

.contact__form-agree label a:hover {
  color: #2b4eff;
}

.contact__form-agree label:hover {
  cursor: pointer;
}

.contact__info-inner {
  padding: 45px 70px 45px 40px;
  border-radius: 4px;
  box-shadow: 0 30px 50px 0 rgba(1, 11, 60, 0.1);
  position: relative;
  z-index: 1;
}

.contact__info-icon svg {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__info-icon svg.map {
  width: 16px;
  height: 20px;
}

.contact__info-icon svg.call,
.contact__info-icon svg.mail {
  width: 18px;
  height: 18px;
}

.contact__info-text .h4,
.contact__info-text h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact__info-text p {
  margin-bottom: 0;
  color: #53545b;
}

.contact__info-text p a:hover {
  color: var(--mainColor);
}

.contact__social .h4,
.contact__social h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 13px;
}

.contact__social ul li {
  display: inline-block;
  margin-right: 10px;
}

.contact__social ul li a {
  line-height: 44px;
  text-align: center;
  font-size: 18px;
  color: #0e1133;
}

.contact__social ul li a.fb {
  color: #285da1;
  background: rgba(40, 93, 161, 0.1);
}

.contact__social ul li a.fb:hover {
  color: #fff;
  background: #285da1;
}

.contact__social ul li a.tw {
  color: #03a9f4;
  background: rgba(3, 169, 244, 0.1);
}

.contact__social ul li a.tw:hover {
  color: #fff;
  background: #03a9f4;
}

.contact__social ul li a.pin {
  color: #d8163f;
  background: rgba(216, 22, 63, 0.1);
}

.contact__social ul li a.pin:hover {
  color: #fff;
  background: #d8163f;
}

.contact__icon {
  margin-bottom: 28px;
}

.contact__icon svg {
  width: 70px;
  height: 70px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18),
    -webkit-transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}

.contact__icon svg .st0 {
  fill: none;
  stroke: #2b4eff;
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__item {
  padding: 50px 80px 62px;
  border-radius: 6px;
  box-shadow: 0 40px 50px 0 #fff;
  position: relative;
  z-index: 1;
}

.contact__item:hover .contact__icon svg {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.contact__title {
  font-size: 26px;
  margin-bottom: 8px;
}

.contact__content p {
  font-size: 16px;
  color: #53545b;
  margin-bottom: 30px;
}

.section__title-wrapper {
  margin-bottom: 40px;
}

.contact__info-text p a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.contact__info-item {
  margin-bottom: 30px;
}

.contact__info-inner ul {
  padding: 0px;
}

.contact__info-icon {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border: 1px solid #e06a3f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  min-width: 50px;
  margin-top: 7px;
}

.otp-input input {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #c1c1c1;
}

.otp-input input:not(:last-child) {
  margin-right: 8px;
}

/* end contact us page css */

.iti__selected-flag {
  height: 37px !important;
}

.text-orange {
  color: #e76436 !important;
}

.text-orange:hover {
  text-decoration: underline;
}

.required-field {
  position: relative;
}

.required-field .form-label:after {
  content: "*";
  color: red;
  position: absolute;
  top: 0;
  margin-left: 2px;
}

.navbar-toggler {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 7px 12px;
  font-size: 14px;
}

.footer-box img {
  width: 180px;
  margin-bottom: 20px;
}

.header-in.language-option-div #language_translate {
  min-width: 110px !important;
  background: transparent;
  color: #fff;
  height: 52px;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  appearance: none;
  border: 0;
  box-shadow: none !important;
  cursor: pointer;
}

select#language_translate option {
  color: #000 !important;
}

#offcanvasMenu .header-in.language-option-div #language_translate {
  color: #000;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.security-area .security-bx {
  padding: 40px;
  background: rgb(178 178 178 / 30%);
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  border: 0;
  position: relative;
  z-index: 999;
  text-align: center;
  height: calc(100% - 20px);
  margin-bottom: 20px;
}

.security-area .security-bx:hover {
  transform: translateY(-10px);
}

.security-area .security-bx .icon {
  display: block;
  margin: 0 auto 15px;
  font-size: 45px;
  color: #fff;
}

.security-area .security-bx h6 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
}

.abt-content {
  width: 100%;
  height: auto;
  padding: 50px;
  background: rgb(178 178 178 / 30%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.abt-content::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  border: 10px solid #e56739;
  border-radius: 100%;
  opacity: 0.5;
}

.abt-content::before {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  background-color: #e56739;
  border-radius: 100%;
  opacity: 0.5;
}

.benifit-area .benifit-list li {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  border-bottom: 1px solid #333333;
  display: flex;
  gap: 15px;
}

.benifit-area .benifit-list li span,
.benifit-area .benifit-list li p {
  font-size: 28px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
  margin: 0;
}

.benifit-area .benifit-list li:hover span {
  color: #e76436;
}

.benifit-area .benifit-list li:hover p {
  letter-spacing: 4px;
  color: #e76436;
}

.top-inner-title p,
.inner-text p {
  font-size: 16px;
  line-height: 26px;
}

.inner-video {
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 8px;
}

.inner-video iframe {
  border-radius: 8px;
}

.financial-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 5px 6px;
  padding: 25px;
  border: 1px solid #e35638;
  border-radius: 8px;
  min-height: 320px;
}

.financial-box h5,
.financial-box p {
  font-size: 16px;
}

.financial-box h5 {
  margin-bottom: 10px;
}

.smart-right-txt.text-end {
  height: 450px;
  width: 100%;
  margin: 0 0 0 auto;
  object-fit: cover;
}

.smart-right-txt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security-area-sec .security-bx {
  background-color: #e56739 !important;
}

.banner_header {
  background: #000;
  padding: 150px 0px 80px !important;
}

.banner_hd_inner h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
}

/* Hide the "Powered by Google Translate" text */
body>.skiptranslate>iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

head>.skiptranslate>iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

.app-sec-inr-main {
  background-color: #000 !important;
  padding: 50px 30px 50px 50px;
}

.app-btn a {
  display: block;
  background: #fff;
  padding: 10px 30px;
  border-radius: 12px;
}

.App-img img {
  width: 300px;
  margin: 0 auto;
}

.app-sec-inr-main {
  position: relative;
  z-index: 9999;
}

.app-sec-inr-main::before {
  content: "";
  background-color: #e56739 !important;
  width: 43%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.video-box {
  cursor: pointer;
  display: inline-block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.video-box img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg,
      rgba(237, 161, 60, 1) 0%,
      rgba(227, 86, 56, 1) 100%);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 60px;
  text-align: center;
  transition: background 0.3s;
}

/* FAQ */

.faq-wrapper-en {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
}

.faq-column-en {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 50%;
}

.faq-item-en {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 0 15px rgba(231, 100, 54, 0.5);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.faq-item-en:hover {
  box-shadow: 0 0 20px rgba(231, 100, 54, 0.5);
}

.faq-question-en {
  cursor: pointer;
  background: transparent;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  padding: 1rem 1.25rem;
  position: relative;
}

.faq-question-en::after {
  content: "\f077";
  position: absolute;
  right: 1.25rem;
  font-weight: 900;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  font-family: "Font Awesome 6 Pro";
}

.faq-item-en.active .faq-question-en {
  color: #e76436;
  background: rgba(231, 100, 54, 0.1);
}

.faq-item-en.active .faq-question-en::after {
  content: "\f078";
}

.faq-answer-en {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgb(255 255 255 / 15%);
  padding: 0px;
  font-size: 14px;
  line-height: 26px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.faq-item-en.active .faq-answer-en {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  padding: 20px;
}

.faq-wrapper-it {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: nowrap;
}

.faq-column-it {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 50%;
}

.faq-item-it {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 0 15px rgba(231, 100, 54, 0.5);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.faq-item-it:hover {
  box-shadow: 0 0 20px rgba(231, 100, 54, 0.5);
}

.faq-question-it {
  cursor: pointer;
  background: transparent;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  padding: 1rem 1.25rem;
  position: relative;
}

.faq-question-it::after {
  content: "\f077";
  position: absolute;
  right: 1.25rem;
  font-weight: 900;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  font-family: "Font Awesome 6 Pro";
}

.faq-item-it.active .faq-question-it {
  color: #e76436;
  background: rgba(231, 100, 54, 0.1);
}

.faq-item-it.active .faq-question-it::after {
  content: "\f078";
}

.faq-answer-it {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgb(255 255 255 / 15%);
  padding: 0px;
  font-size: 14px;
  line-height: 26px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.faq-item-it.active .faq-answer-it {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  padding: 20px;
}

@media (max-width: 768px) {

  .faq-wrapper-en,
  .faq-wrapper-it {
    flex-direction: column;
  }

  .faq-column-en,
  .faq-column-it {
    max-width: 100%;
  }
}

.swal2-popup {
  justify-items: center !important;
  padding: 30px 20px;
}

div:where(.swal2-icon).swal2-warning {
  border: 1px solid #f8bb86;
}