@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  --gutter-x: 15px;
  --gutter-x2: -15px;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #4F4F4F;
  line-height: 1.2;
}
body.modal-opened {
  overflow: hidden !important;
  width: 100%;
}
body main {
  overflow-x: clip;
}
body:not(.home) header {
  background: linear-gradient(87deg, #01042D 0%, #000320 100%);
  position: unset;
}
.mobile-hamburger-menu {
  z-index: 9;
  position: relative;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 34px;
}
.mobile-hamburger-menu .hamburger-menu {
  position: relative;
  transform: translateY(6px);
  background: #fff;
  transition: all 0ms 300ms;
  width: 20px;
  height: 2px;
}
.mobile-hamburger-menu .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
.mobile-hamburger-menu .hamburger-menu.animate.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #010321;
}
.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  background: #010321;
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-hamburger-menu .hamburger-menu:after,
.mobile-hamburger-menu .hamburger-menu:before {
  width: 20px;
  height: 2px;
}
.mobile-hamburger-menu .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  background: #fff;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-hamburger-menu .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background: #fff;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.gen-col-mb {
  margin-bottom: 30px;
}
#side-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
}
#side-menu .backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  flex: 1;
  width: 100%;
  height: 100%;
}
#side-menu .content {
  padding: 60px 0 50px;
  width: 85%;
  max-width: 450px;
  background-color: #fff;
  box-shadow: -3px 0 10px 0 #00000026;
  margin-right: calc((50% + 56px) * -1);
  overflow-y: auto;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
#side-menu .content .mobile-hamburger-menu {
  position: absolute;
  right: 20px;
  top: 30px;
}
#side-menu .content.in {
  margin-right: 0;
}
#side-menu .content ul.menu li.current-menu-item > a {
  font-weight: 700;
  color: #000;
}
#side-menu .content ul.menu li.opened.menu-item-has-children > a svg {
  transform: translateY(-50%) rotate(180deg);
}
#side-menu .content ul.menu li.opened > ul.sub-menu {
  max-height: 400px;
  overflow-y: auto;
}
#side-menu .content ul.menu li.menu-item-has-children > a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 8px;
  right: 0px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #010321;
}
#side-menu .content ul.menu li a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  color: #010321;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid #eaeaea;
}
#side-menu .content ul.menu li ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#side-menu .content ul.menu li ul.sub-menu li {
  padding: 0 12px;
}
#side-menu .content ul.menu li ul.sub-menu li a {
  height: 40px;
}
#side-menu .content .lang-list {
  margin-top: 20px;
}
#side-menu .content .lang-list li div {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 48px;
  color: #010321;
  padding: 6px 24px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
#side-menu .content .lang-list li div svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 8px;
  right: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #010321;
}
#side-menu .content .lang-list li .name {
  margin-left: 10px;
}
#side-menu .content ul.social-menu {
  margin-top: 30px;
}
#side-menu .content ul.social-menu li {
  margin: 5px;
}
#side-menu .content ul.social-menu li a {
  border: 1px solid #010321;
  padding: 6px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#side-menu .content ul.social-menu li a svg {
  color: #010321;
}
#right-whatsapp {
  position: fixed;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
#right-whatsapp a {
  height: 80px;
  width: 80px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #58d164;
  /* Old browsers */
  background: -moz-linear-gradient(top, #58d164 0%, #2cb842 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #58d164 0%, #2cb842 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #58d164 0%, #2cb842 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#right-whatsapp a:hover {
  transform: scale(1.1);
}
#right-whatsapp a svg {
  color: #fff;
  width: 60px;
  height: 60px;
}
#mobile-footer-cta-buttons {
  padding-bottom: 14px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
}
#mobile-footer-cta-buttons:before {
  content: " ";
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #010321;
}
#mobile-footer-cta-buttons .row {
  --gutter-x: 4px;
  --gutter-x2: -4px;
}
#mobile-footer-cta-buttons .button-x {
  height: 52px;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 0 10px;
  color: #fff;
}
#mobile-footer-cta-buttons .button-x.button-call {
  background: linear-gradient(89deg, #2F8DDC 0%, #2D8BD9 3%, #2079C5 27%, #1064AB 56%, #0C5FA5 63%, #0C5FA5 100%);
}
#mobile-footer-cta-buttons .button-x.button-whatsapp {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
  background: #58D164;
  /* Old browsers */
  background: -moz-linear-gradient(top, #58D164 0%, #2CB842 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #58D164 0%, #2CB842 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #58D164 0%, #2CB842 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
  /* IE6-9 */
}
#mobile-footer-cta-buttons .button-x span.text {
  margin-left: 12px;
  font-weight: 400;
  font-size: 14px;
}
.iti__country-list {
  background-color: #fff;
  color: #010321;
}
.iti__country-list .iti__flag-box,
.iti__country-list .iti__country-name {
  color: #000;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-left: 52px !important;
}
#success {
  position: absolute;
  bottom: -125px;
  padding: 15px;
  border-radius: 15px;
  background: #389d26;
  color: #FFF;
  width: 94%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: all, 0.4s;
}
#success.acik {
  opacity: 1;
  bottom: -80px;
  transition: all, 0.4s;
}
#unsuccessful {
  position: absolute;
  bottom: -125px;
  padding: 15px;
  border-radius: 15px;
  background: red;
  color: #FFF;
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all, 0.4s;
}
#unsuccessful.acik {
  opacity: 1;
  bottom: -80px;
  transition: all, 0.4s;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 15px 0;
}
header .header-btn {
  display: block;
  padding: 4px 16px;
  font-size: 16px;
  font-weight: 500;
  min-width: 180px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(89deg, #2F8DDC 0%, #2D8BD9 3%, #2079C5 27%, #1064AB 56%, #0C5FA5 63%, #0C5FA5 100%);
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .header-btn:hover {
  color: #000;
}
header .top-logo img {
  width: 300px;
  height: auto;
}
header .h-right {
  width: 100%;
}
header .h-right .h-top {
  margin-bottom: 15px;
}
header .web-lang {
  cursor: pointer;
  z-index: 9;
}
header .web-lang > li {
  background: linear-gradient(89deg, #2F8DDC 0%, #2D8BD9 3%, #2079C5 27%, #1064AB 56%, #0C5FA5 63%, #0C5FA5 100%);
  padding: 5px 10px;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
header .web-lang > li svg {
  width: 20px;
  height: 20px;
}
header .web-lang > li:after {
  content: ' ';
  border: 5px solid;
  transform: translateY(50%);
  border-color: #fff transparent transparent transparent;
  margin-left: 10px;
}
header .web-lang > li:hover > ul.sub-menu {
  z-index: 15;
  opacity: 1;
  top: 100%;
  pointer-events: initial;
}
header .web-lang li ul.sub-menu {
  display: initial;
  opacity: 0;
  position: absolute;
  z-index: 9;
  top: 80%;
  margin-top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 1px solid #fff;
  pointer-events: none;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .web-lang li ul.sub-menu::after {
  content: '';
  width: 100%;
  height: 20px;
  position: absolute;
  top: -20px;
  background: None;
  left: 0;
  z-index: 0;
}
header .web-lang li ul.sub-menu:before {
  content: ' ';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  border: 10px solid;
  border-color: transparent transparent #fff transparent;
}
header .web-lang li ul.sub-menu li {
  padding: 0;
  margin: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
}
header .web-lang li ul.sub-menu li:last-child {
  border-bottom: 0;
}
header .web-lang li ul.sub-menu li:hover {
  background-color: #e6e6e6;
}
header .web-lang li ul.sub-menu li a {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #010321;
  margin: 0;
  padding: 5px 15px 5px 10px;
  display: block;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
header .web-lang li ul.sub-menu li a img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
header .top-menu {
  display: flex;
  margin-right: 20px;
}
header .top-menu > li > a {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  padding: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 500;
}
header .top-menu > li::after {
  content: '';
  display: block;
  background-color: #fff;
  width: 100%;
  height: 2px;
  opacity: 1;
  width: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .top-menu li {
  position: relative;
}
header .top-menu li:hover > ul.sub-menu {
  z-index: 15;
  opacity: 1;
  top: 100%;
  pointer-events: initial;
}
header .top-menu li:hover::after {
  width: 100%;
}
header .top-menu li ul.sub-menu {
  display: initial;
  opacity: 0;
  position: absolute;
  z-index: 9;
  top: 80%;
  left: 0%;
  background-color: #ffffff;
  border: none;
  pointer-events: none;
  min-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .top-menu li ul.sub-menu::after {
  content: '';
  width: 100%;
  height: 20px;
  position: absolute;
  top: -10px;
  background: None;
  left: 0;
  z-index: 0;
}
header .top-menu li ul.sub-menu li {
  padding: 0;
  margin: 0;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .top-menu li ul.sub-menu li:hover {
  background-color: #e6e6e6;
}
header .top-menu li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  top: 0;
  pointer-events: initial;
}
header .top-menu li ul.sub-menu li:after {
  display: none;
}
header .top-menu li ul.sub-menu li a {
  white-space: nowrap;
  color: #010321;
  font-weight: 500;
  margin: 0;
  padding: 6px 24px 6px 12px;
  display: block;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  font-size: 16px;
}
header .top-menu li ul.sub-menu li ul.sub-menu {
  left: 100%;
  margin: 0;
  transform: translateX(0);
}
header .top-menu li ul.sub-menu li ul.sub-menu:before {
  display: none;
}
.section-top-title {
  font-size: 24px;
  color: #010321;
  line-height: 1.2;
  font-weight: bold;
}
.section-text {
  font-size: 18px;
  line-height: 1.2;
}
.section-title {
  font-size: 42px;
  color: #010321;
  line-height: 1.2;
  font-weight: bold;
}
.gen-btn {
  min-width: 200px;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #51B37F;
  width: max-content;
  text-align: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  white-space: nowrap;
}
.gen-btn:hover {
  background-color: #010321;
}
#contact-banner {
  position: relative;
  z-index: 2;
  margin-bottom: -80px;
}
#contact-banner .banner-outer {
  width: max-content;
  max-width: 100%;
  background: radial-gradient(closest-side at 50% 50%, #2AB96D 0%, #2BB96E 3%, #51B37F 100%, #51B37F 100%);
  box-shadow: -21.45px 18px 16px #00000000;
  min-width: 65vw;
  -webkit-border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  border-radius: 30px 0 0 30px;
}
#contact-banner .banner-outer .banner-inner-area {
  padding: 25px 8vw 25px 4vw;
  gap: 80px;
}
#contact-banner .banner-outer .banner-inner-area .banner-icon {
  padding-right: 40px;
  border-right: 2px solid #fff;
}
#contact-banner .banner-outer .banner-inner-area .banner-icon svg {
  width: 100px;
  height: 100px;
  color: #fff;
}
#contact-banner .banner-outer .banner-inner-area .banner-content-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  width: 100%;
}
#contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-sub-title {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
}
#contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-title {
  font-size: 44px;
  color: #fff;
  font-weight: bold;
}
#contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-btn {
  min-width: 200px;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  width: max-content;
  text-align: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  white-space: nowrap;
}
#contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-btn:hover {
  background-color: #fff;
  color: #51B37F;
}
footer {
  background-color: #010321;
}
footer .footer-top {
  padding: 160px 0 80px;
}
footer .footer-top .footer-col {
  margin-bottom: 30px;
}
footer .footer-top .footer-logo {
  margin-bottom: 35px;
  display: block;
}
footer .footer-top .footer-logo img {
  width: 360px;
  height: auto;
  max-width: 100%;
}
footer .footer-top .footer-socials {
  display: flex;
}
footer .footer-top .footer-socials li {
  margin: 5px;
}
footer .footer-top .footer-socials li a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  padding: 8px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-top .footer-socials li a svg {
  height: 32px;
  width: 32px;
}
footer .footer-top .footer-socials li a:hover {
  background-color: #fff;
  color: #010321;
}
footer .footer-top .footer-title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}
footer .footer-top .footer-menu {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
footer .footer-top .footer-menu li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-top .footer-menu li a:hover {
  opacity: 0.6;
}
footer .footer-top .footer-contacts .footer-contact {
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .footer-top .footer-contacts .footer-contact:last-child {
  margin: 0;
}
footer .footer-top .footer-map {
  overflow: hidden;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
}
footer .footer-top .footer-map iframe {
  width: 300%;
  margin-left: -100%;
  height: 250px;
  display: block;
}
footer .footer-bottom {
  border-top: 1px solid #fff;
  padding: 15px 0;
}
footer .footer-bottom .copyright {
  font-size: 14px;
  color: #fff;
}
footer .footer-bottom .footer-cr-logo img {
  width: 150px;
  height: auto;
}
/* Zoho Css */
#crmWebToEntityForm.zcwf_lblLeft {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
#crmWebToEntityForm.zcwf_lblLeft * {
  box-sizing: border-box;
}
#crmWebToEntityForm {
  text-align: left;
}
#crmWebToEntityForm * {
  direction: ltr;
}
.zcwf_lblLeft .zcwf_title {
  word-wrap: break-word;
  padding: 0px 6px 10px;
  font-weight: bold;
}
.zcwf_lblLeft.cpT_primaryBtn:hover {
  background: linear-gradient(#02acff 0, #006be4 100%) no-repeat padding-box !important;
  box-shadow: 0 -2px 0 0 #0159b9 inset !important;
  border: 0 !important;
  color: #fff !important;
  outline: 0 !important;
}
.zcwf_lblLeft .zcwf_col_lab {
  width: 30%;
  word-break: break-word;
  padding: 0px 6px 0px;
  margin-right: 10px;
  float: left;
  min-height: 1px;
}
.zcwf_lblLeft .zcwf_col_fld {
  float: left;
  width: 100%;
  padding: 0px 6px 0px;
  position: relative;
}
.zcwf_lblLeft .zcwf_privacy {
  padding: 6px;
}
.zcwf_lblLeft .wfrm_fld_dpNn {
  display: none;
}
.dIB {
  display: inline-block;
}
.zcwf_lblLeft .zcwf_col_fld_slt {
  width: 100%;
  border: 3px solid #22253f;
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
  float: left;
  resize: vertical;
  padding: 10px 15px;
  font-size: 16px;
  color: #010321;
  font-family: 'Poppins', sans-serif;
}
.zcwf_lblLeft .zcwf_row:after,
.zcwf_lblLeft .zcwf_col_fld:after {
  content: '';
  display: table;
  clear: both;
}
.zcwf_lblLeft .zcwf_col_help {
  float: left;
  margin-left: 7px;
  font-size: 12px;
  max-width: 35%;
  word-break: break-word;
}
.zcwf_lblLeft .zcwf_help_icon {
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: inline-block;
  background: #fff;
  border: 1px solid #c0c6cc;
  color: #c1c1c1;
  text-align: center;
  font-size: 11px;
  line-height: 16px;
  font-weight: bold;
  border-radius: 50%;
}
.zcwf_lblLeft .zcwf_row {
  margin: 15px 0px;
}
.zcwf_lblLeft .zcwf_privacy_txt {
  width: 90%;
  color: #000000;
  font-size: 12px;
  font-family: Arial;
  display: inline-block;
  vertical-align: top;
  color: var(--baseColor);
  padding-top: 2px;
  margin-left: 6px;
}
.zcwf_lblLeft .zcwf_button {
  font-size: 12px;
  color: var(--baseColor);
  border: 1px solid #c0c6cc;
  padding: 3px 9px;
  border-radius: 4px;
  cursor: pointer;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zcwf_lblLeft .zcwf_tooltip_over {
  position: relative;
}
.zcwf_lblLeft .zcwf_tooltip_ctn {
  position: absolute;
  background: #dedede;
  padding: 3px 6px;
  top: 3px;
  border-radius: 4px;
  word-break: break-word;
  min-width: 100px;
  max-width: 150px;
  color: var(--baseColor);
  z-index: 100;
}
.zcwf_lblLeft .zcwf_ckbox {
  float: left;
}
.zcwf_lblLeft .zcwf_file {
  width: 55%;
  box-sizing: border-box;
  float: left;
}
.zcwf_col_lab label {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
}
.cBoth:after {
  content: '';
  display: block;
  clear: both;
}
@media all and (max-width: 600px) {
  .zcwf_lblLeft .zcwf_col_lab,
  .zcwf_lblLeft .zcwf_col_fld {
    width: auto;
    float: none !important;
  }
  .zcwf_lblLeft .zcwf_col_help {
    width: 40%;
  }
}
/* ek css */
.zwcf-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.zcwf_col_fld input {
  width: 100% !important;
  border: 3px solid #5abcd9 !important;
  resize: vertical;
  float: left;
  margin-top: 10px;
  padding: 15px 20px;
  background-color: transparent;
  color: #fff;
  font-family: 'Poppins';
}
.zcwf_col_fld_slt {
  max-height: 140px;
}
.zcwf_col_fld input:focus {
  outline: none !important;
}
.zcwf_col_lab {
  width: 100% !important;
  margin-bottom: 10px;
}
.zcwf_col_fld_slt:focus {
  outline: none;
}
.zcwf_col_fld_slt option {
  font-size: 16px;
}
.zcwf_col_fld input::placeholder {
  color: #fff;
  font-family: 'Poppins';
}
#custom-zoho-select option {
  color: #000;
}
#form-button {
  margin-top: 15px;
  display: flex;
}
#form-button input {
  max-width: 50%;
  min-width: 200px;
  background-color: transparent;
  color: #fff;
  padding: 10px 15px;
  border: 3px solid #235192;
  font-family: 'Poppins';
  font-size: 18px;
  margin-right: 20px;
}
.zwcf-reset {
  background-color: red !important;
  border: 3px solid #fff !important;
}
label.mobile-class {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #crmWebToEntityForm.zcwf_lblLeft {
    padding: 15px;
  }
  .zwcf-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .formTitle h2 {
    font-size: 25px;
  }
  .zcwf_col_lab label {
    font-size: 16px;
  }
  .zcwf_col_fld input::placeholder {
    color: #fff;
    font-family: 'Poppins';
    font-size: 16px;
  }
  #form-button {
    margin-top: 15px;
    display: flex;
  }
  #form-button input {
    min-width: 47%;
  }
}
.zwcf-none {
  display: none;
}
#form-button input:hover {
  background-color: #fff;
  color: #010321;
  font-weight: 600;
  transition: 0.4s;
}
div#side-button input {
  width: 100%;
  padding: 10px;
  font-family: 'Poppins';
  font-size: 18px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}
#side-button input:hover {
  background-color: #fff;
  color: #010321;
  transition: 0.4s;
}
@media (max-width: 1440px) {
  #right-whatsapp a {
    width: 60px;
    height: 60px;
  }
  #right-whatsapp a svg {
    width: 40px;
    height: 40px;
  }
  header .h-right .h-top {
    margin-bottom: 10px;
  }
  header .top-logo img {
    width: 240px;
  }
  header .top-menu {
    margin-right: 15px;
  }
  header .top-menu > li > a {
    font-size: 14px;
  }
  .section-top-title {
    font-size: 20px;
  }
  .section-title {
    font-size: 36px;
  }
  .section-text {
    font-size: 16px;
  }
  .gen-btn {
    font-size: 16px;
    min-width: 180px;
  }
  #contact-banner .banner-outer .banner-inner-area {
    gap: 40px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area {
    gap: 35px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-sub-title {
    font-size: 26px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-title {
    font-size: 40px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-btn {
    min-width: 180px;
    font-size: 16px;
  }
  footer .footer-top {
    padding: 120px 0 60px;
  }
  footer .footer-top .footer-socials li a {
    padding: 6px;
  }
  footer .footer-top .footer-socials li a svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 1200px) {
  .section-top-title {
    font-size: 18px;
  }
  .section-title {
    font-size: 32px;
  }
  #contact-banner .banner-outer .banner-inner-area {
    gap: 30px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-icon {
    padding-right: 30px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-icon svg {
    width: 80px;
    height: 80px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area {
    gap: 20px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-sub-title {
    font-size: 24px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-title {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .section-top-title {
    font-size: 16px;
  }
  .section-title {
    font-size: 28px;
  }
  header .top-logo img {
    width: 200px;
  }
  header .web-lang {
    margin-right: 10px;
  }
  #contact-banner .banner-outer {
    width: 90vw;
  }
  #contact-banner .banner-outer .banner-inner-area {
    padding: 25px 6vw;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-icon {
    padding-right: 20px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-icon svg {
    width: 60px;
    height: 60px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area {
    flex-direction: column;
    text-align: center;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-sub-title {
    font-size: 22px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .section-top-title {
    font-size: 14px;
  }
  .section-title {
    font-size: 24px;
  }
  .section-text {
    font-size: 14px;
  }
  .gen-btn {
    font-size: 14px;
    min-width: 160px;
  }
  #contact-banner .section-inner {
    padding: 0 25px;
  }
  #contact-banner .banner-outer {
    width: 100vw;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
  }
  #contact-banner .banner-outer .banner-inner-area {
    padding: 15px;
    flex-direction: column;
    gap: 20px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-icon {
    padding: 0;
    border: none;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-sub-title {
    font-size: 20px;
  }
  #contact-banner .banner-outer .banner-inner-area .banner-content-area .banner-title {
    font-size: 28px;
  }
  footer .footer-top {
    padding: 120px 0 20px;
  }
  footer .footer-bottom {
    padding: 20px 0 80px;
  }
  footer .footer-bottom .copyright {
    margin-bottom: 10px;
  }
}
