/* ======================
START OF MAIN SCSS FILE FOR ASTRO WEBSITE
=========================

TABLE OF INDEX:

# RESET CSS
# COLORS CSS
# VARIABLES CSS
# TYPOGRAPHY CSS
# MIXINS CSS
# BUTTONS CSS
====================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
  vertical-align: middle;
  max-width: 100%;
}

::-moz-selection {
  background: #20065f;
  text-shadow: none;
  color: #ffffff;
}

::selection {
  background: #20065f;
  color: #ffffff;
  text-shadow: none;
}

/********* utility headings ************/
/************* Gradient Mixin *****************/
/***************** font-weight ***********************/
/************ common property mixins ***************/
.btn {
  position: relative;
  display: inline-block;
  padding: 12px 10px 12px 16px;
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 1800px) {
  .btn {
    padding: 15px 14px 14px 24px;
    font-size: 18px;
    line-height: 22px;
  }
}
.btn.no_arrow {
  padding-right: 16px;
}
.btn > .arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: relative;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 4px 10px 0 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  will-change: transform;
  -webkit-transform-origin: 2px center;
          transform-origin: 2px center;
}
.btn > .arrow:before {
  display: block;
  background-color: #fff;
  width: 5px;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  height: 1.5px;
  position: absolute;
  opacity: 0;
  bottom: -1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  right: 0;
  will-change: transform;
}
.btn > .arrow.arrow__reverse {
  margin-left: 20px;
  width: 10px;
  height: 10px;
}
.btn > .arrow.arrow__reverse::before {
  opacity: 1;
  width: 20px;
}
.btn:hover > .arrow {
  -webkit-transform: rotate(-45deg) translate(4px, 4px);
          transform: rotate(-45deg) translate(4px, 4px);
  border-color: #fff;
}
.btn:hover > .arrow:before {
  opacity: 1;
  width: 10px;
}
.btn:hover > .arrow.arrow__reverse::before {
  width: 0;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn.btn_orange {
  color: #ffffff;
  background: #f15a29;
  border-color: #f15a29;
}
.btn.btn_orange:hover {
  background-color: #bf2f00;
  border-color: #bf2f00;
  color: #ffffff;
}
.btn.btn_white {
  color: #f15a29;
  background: #ffffff;
  border-color: #f15a29;
}
.btn.btn_white:not(:hover) > .arrow {
  border-right: 2px solid #f15a29;
  border-bottom: 2px solid #f15a29;
}
.btn.btn_white:hover {
  background-color: #f15a29;
  color: #ffffff;
}
.btn.btn_black {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}
.btn.btn_black:hover {
  background-color: #f15a29;
  border-color: #f15a29;
  color: #ffffff;
}
.btn.btn_outline.btn_outline__light {
  --bs-btn-color: #ffffff;
  --bs-btn-border-color: rgba(233, 233, 233, 0.5);
  --bs-btn-hover-border-color: #E9E9E9;
}

/* ====================== */
/* START OF HEADER */
/* ====================== */
.wraper-header-top {
  padding: 7px 0;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: auto;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .wraper-header-top {
    padding: 12px 0;
  }
}
@media (min-width: 1800px) {
  .wraper-header-top {
    height: 52px;
  }
}
.wraper-header-top .infoText {
  font-size: 12px;
}
@media (min-width: 768px) {
  .wraper-header-top .infoText {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .wraper-header-top .infoText {
    font-size: 20px;
  }
}
@media (min-width: 1800px) {
  .wraper-header-top .infoText a {
    font-size: 20px;
  }
}
.wraper-header-top .tag_lightBlue {
  font-size: 14px;
  padding: 2px 6px;
}
@media (min-width: 768px) {
  .wraper-header-top .tag_lightBlue {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .wraper-header-top .tag_lightBlue {
    font-size: 20px;
    padding: 4px 10px;
  }
}
@media (max-width: 767px) {
  .wraper-header-top .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header-search-wrap {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  background-color: #fff;
  padding: 20px 50px;
  z-index: 999;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .header-search-wrap {
    padding: 10px 20px;
  }
}
.header-search-wrap.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header-search-wrap .header-search-box {
  width: 600px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.header-search-wrap .header-search-box .cross-btn {
  background-color: transparent;
  width: 44px;
  height: 36px;
  font-size: 30px;
  line-height: 30px;
  border: none;
  margin-left: 5px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .header-search-wrap .header-search-box .cross-btn {
    width: 30px;
  }
}
.header-search-wrap .header-search-box .cross-btn:hover {
  color: #f15a29;
}
.header-search-wrap .header-search-box .input-group {
  border: solid 1px #e7e7e7;
  border-radius: 5px;
}
.header-search-wrap .header-search-box .input-group .input-group-text {
  background-color: #fff;
  border: none;
  font-size: 20px;
  color: #f15a29;
}
.header-search-wrap .header-search-box .input-group .input-group-text:hover {
  color: #000000;
}
.header-search-wrap .header-search-box .input-group .input-group-text .search-icon {
  line-height: 1;
}
.header-search-wrap .header-search-box .input-group .form-control {
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  padding-left: 0;
  height: 50px;
  padding-left: 5px;
}
.header-search-wrap .header-search-box .input-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .header-search-wrap .header-search-box .input-group .form-control {
    width: 185px;
  }
}

/* wraper-header */
.wraper-header {
  top: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1001;
  background-color: transparent;
  position: fixed;
}
.wraper-header.i-am-sticky {
  top: 10px;
}
.wraper-header.i-am-sticky .wraper-header-top {
  height: 0;
  visibility: hidden;
  -webkit-transform: translateY(-44px);
          transform: translateY(-44px);
}
.wraper-header.i-am-sticky .wraper-header-main .header-main {
  background-color: #000000;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav .menu li a {
  color: #ffffff;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav .menu li a:hover {
  color: #f15a29;
}
.wraper-header.aniHeader {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.5s ease-out 0.75s;
  transition: all 0.5s ease-out 0.75s;
}
.wraper-header.aniHeader.headerShow {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.wraper-header.aniHeader.headerShow .wraper-header-main {
  background-color: rgb(255, 255, 255);
}
.wraper-header.aniHeader.headerShow .wraper-header-main .header-main .main-nav > ul > li > a {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}
.wraper-header.aniHeader .wraper-header-main {
  background-color: rgba(255, 255, 255, 0.01);
  -webkit-transition: background 0.5s ease-out 1s;
  transition: background 0.5s ease-out 1s;
}
.wraper-header.aniHeader .wraper-header-main .header-main .main-nav > ul > li > a {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s ease-out 1.1s;
  transition: -webkit-transform 0.5s ease-out 1.1s;
  transition: transform 0.5s ease-out 1.1s;
  transition: transform 0.5s ease-out 1.1s, -webkit-transform 0.5s ease-out 1.1s;
}

/* wraper-header-main */
.wraper-header-main {
  background-color: transparent;
  padding-inline: 30px;
  /* header-main */
}
@media only screen and (max-width: 767px) {
  .wraper-header-main {
    padding-inline: 15px;
  }
}
.wraper-header-main > .container-fluid {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .wraper-header-main > .container-fluid {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .wraper-header-main > .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .wraper-header-main > .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.wraper-header-main .header-main {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 48px;
  /* brand-logo */
  /* header-actionbar */
  /* header-mobilemenu-trigger */
  /* main-nav */
}
@media only screen and (max-width: 575px) {
  .wraper-header-main .header-main {
    border-radius: 8px;
  }
}
.wraper-header-main .header-main .container-fluid {
  padding: 16px 30px;
}
@media only screen and (max-width: 575px) {
  .wraper-header-main .header-main .container-fluid {
    padding-inline: 10px;
  }
}
.wraper-header-main .header-main > .main-nav {
  width: auto;
  max-width: 100%;
}
.wraper-header-main .header-main .brand-logo {
  padding: 0;
  border-left: none;
  border-right: none;
  position: relative;
}
.wraper-header-main .header-main .brand-logo a {
  display: inline-block;
}
.wraper-header-main .header-main .brand-logo img {
  width: 165px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 575px) {
  .wraper-header-main .header-main .brand-logo img {
    width: 130px;
    height: 28px;
  }
}
@media screen and (max-width: 379px) {
  .wraper-header-main .header-main .brand-logo img {
    width: 100px;
    height: 22px;
  }
}
.wraper-header-main .header-main .mMenu-link {
  padding: 5px 15px;
  margin-right: 20px;
  border-radius: 5px;
  border: solid 1px #999;
  background-color: #ffffff;
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  .wraper-header-main .header-main .mMenu-link {
    margin-right: 10px;
  }
}
.wraper-header-main .header-main .mMenu-link .ic-courses {
  color: #f15a29;
  margin-right: 5px;
  font-size: 16px;
}
.wraper-header-main .header-main .mMenu-link .textInfo {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  text-decoration: none;
}
.wraper-header-main .header-main .header-actionbar {
  margin-left: 10px;
}
.wraper-header-main .header-main .header-actionbar .btn {
  padding: 12px 20px 12px 20px;
}
.wraper-header-main .header-main .header-actionbar .btn:hover {
  color: #fff;
}
.wraper-header-main .header-main .header-actionbar .btn.btn-primary-color:hover, .wraper-header-main .header-main .header-actionbar .btn.btn-primary-color:focus {
  background-color: #fff;
  color: #f15a29;
}
.wraper-header-main .header-main .header-mobilemenu-trigger {
  width: 53px;
  height: 53px;
  margin-top: 0;
  margin-left: 15px;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: initial;
          box-shadow: initial;
  cursor: pointer;
  min-width: auto;
  background-color: #f15a29;
}
@media only screen and (max-width: 575px) {
  .wraper-header-main .header-main .header-mobilemenu-trigger {
    width: 45px;
    height: 45px;
  }
}
.wraper-header-main .header-main .main-nav {
  vertical-align: top;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0;
  /* nav level one */
  /* nav level two */
  /* nav level three */
}
.wraper-header-main .header-main .main-nav > ul > li.current-menu-item > ul.sub-menu > li.menu-item-type-custom > a {
  color: #000000;
  background-color: transparent;
}
.wraper-header-main .header-main .main-nav > ul > li.current-menu-item > ul.sub-menu > li.menu-item-type-custom.customMenu-active a {
  background-color: #e2e2e2;
  color: #f15a29;
}
.wraper-header-main .header-main .main-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1800px) {
  .wraper-header-main .header-main .main-nav > ul {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }
}
.wraper-header-main .header-main .main-nav > ul > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.wraper-header-main .header-main .main-nav > ul > li:last-child,
.wraper-header-main .header-main .main-nav > ul > li:only-child {
  margin-right: 0;
}
.wraper-header-main .header-main .main-nav > ul > li:last-child > a,
.wraper-header-main .header-main .main-nav > ul > li:only-child > a {
  border-right: none;
}
.wraper-header-main .header-main .main-nav > ul > li > a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  padding: 28px 0;
}
@media (min-width: 1800px) {
  .wraper-header-main .header-main .main-nav > ul > li > a {
    font-size: 18px;
  }
}
.wraper-header-main .header-main .main-nav > ul > li > a .submenu-indicator {
  position: relative;
  display: inline-block;
  background-image: url(../images/icons/arrow_drop_down.svg);
  background-size: 8px auto;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
@media (min-width: 1800px) {
  .wraper-header-main .header-main .main-nav > ul > li > a .submenu-indicator {
    width: 18px;
    height: 18px;
    background-size: 11px auto;
  }
}
.wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a {
  padding-right: 50px;
}
@media screen and (max-width: 1199px) {
  .wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a {
    padding-right: 44px;
  }
}
.wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a:after {
  content: "\f0d7";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: block;
  height: 17px;
  opacity: 1;
  position: absolute;
  right: 29px;
  top: -1px;
  width: 11px;
  bottom: 0;
  margin: auto;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a:after {
    right: 23px;
  }
}
.wraper-header-main .header-main .main-nav > ul > li > a:hover,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-ancestor > a {
  color: #f15a29;
}
.wraper-header-main .header-main .main-nav > ul > li > a i {
  font-size: 130%;
}
.wraper-header-main .header-main .main-nav > ul > li > ul {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  z-index: 1;
  width: 240px;
  padding-top: 5px;
  padding-bottom: 6px;
  background: rgb(235, 235, 235);
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wraper-header-main .header-main .main-nav > ul > li:hover > ul {
  top: calc(100% + 1px);
  opacity: 1;
  visibility: visible;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li {
  position: relative;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 15px 10px 15px;
  font-family: "Red Hat Text", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-ancestor > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-ancestor > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li.current-menu-item > a {
  background-color: #e2e2e2;
  color: #f15a29;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li.menu-item-has-children > a:after,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.menu-item-has-children > a:after,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f0d7";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul {
  position: absolute;
  top: 10%;
  left: 100%;
  z-index: 1;
  width: 210px;
  padding-top: 5px;
  padding-bottom: 6px;
  background: rgb(235, 235, 235);
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li:hover > ul,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li:hover > ul {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.wraper-header-main .header-right {
  margin-left: 25px;
}
@media (min-width: 1800px) {
  .wraper-header-main .header-right {
    margin-left: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .wraper-header-main .header-right {
    margin-left: 10px;
  }
}
.wraper-header-main .header-right .btn-header {
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
}
@media (min-width: 1800px) {
  .wraper-header-main .header-right .btn-header {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .wraper-header-main .header-right .btn-header {
    font-size: 14px;
    padding: 10px 8px 10px 14px;
  }
}
@media screen and (max-width: 379px) {
  .wraper-header-main .header-right .btn-header {
    font-size: 12px;
    padding: 8px 4px 8px 8px;
  }
}
.wraper-header-main .header-right .btn-header .arrow {
  margin-left: 10px;
}

/* ====================== */
/* END OF HEADER */
/* ====================== */
/* ====================== */
/* START OF MOBILE SIDR MENU */
/* ====================== */
/* sidr */
.sidr {
  background-color: #fff;
}
.sidr#main-menu {
  max-width: 400px;
}
body.sidr-open .sidr {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* mobile-header */
.wraper-mobile-header {
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  display: block !important;
  width: 100%;
  padding: 0 0 !important;
  background-color: #000000;
  z-index: 1002;
  min-height: calc(100 * var(--vh));
}
.wraper-mobile-header.open-mMenu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-header {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: auto;
  overflow: hidden;
  width: 100%;
  /*min-height:100vh;*/
  /* mobile-header-top */
}
.mobile-header .mobile-header-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
  /* brand-logo */
  /* mobile-menu-close */
  /* mobile-header-menu */
}
.mobile-header .mobile-header-top .mobile-header-brand-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
}
.mobile-header .mobile-header-top .brand-logo {
  vertical-align: top;
  padding: 15px 30px;
}
.mobile-header .mobile-header-top .brand-logo img {
  width: 130px;
}
.mobile-header .mobile-header-top .mobile-menu-close {
  margin-top: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 83px;
  height: 86px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-header .mobile-header-top .mobile-menu-close span {
  font-size: 18px;
  color: #000;
  line-height: 1;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul {
  list-style: none;
  /* nav level one */
  /* nav level two */
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li {
  position: relative;
  /*padding-right:45px;*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li:last-child, .mobile-header .mobile-header-top .mobile-header-menu > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:only-child {
  padding-bottom: 0;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li > a {
  /*display:inline-block;*/
  display: block;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Red Hat Text", sans-serif;
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.72px;
  color: #ffffff;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener {
  position: absolute;
  top: -13px;
  right: -17px;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-ancestor > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-ancestor > a > li > ul > li > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.current-menu-ancestor > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.current-menu-item > a {
  color: #f15a29;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li > a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.56px;
  color: #f15a29;
  padding: 18px 0;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul {
  padding-top: 20px;
  padding-bottom: 6px;
  padding-left: 20px;
  display: none;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li {
  border-top: 1px solid rgba(9, 30, 63, 0.3);
  border-bottom: none;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:first-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:first-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:first-child {
  border-top: none;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:first-child > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:first-child > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:first-child > a {
  padding-top: 0;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul + ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul + ul > li:only-child {
  text-transform: uppercase;
}
.mobile-header .mobile-header-top .header-right {
  padding-left: 30px;
  padding-top: 20px;
}

/* ====================== */
/* END OF MOBILE SIDR MENU */
/* ====================== */
/* ========================== */
/* START OF RESPONSIVE CSS */
/* ========================== */
/* EXTRA LARGE DESKTOP PART */
/* EXTRA LARGE DESKTOP PART */
/* LARGE DESKTOP PART */
/* DESKTOP PART */
/* TABLET LANDSCAPE PART */
@media only screen and (max-width: 991px) {
  .mobile-header-menu .menu li .clickD {
    height: 61px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 100%;
  }
  .mobile-header-menu .menu li .clickD:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f15a29;
    top: 50%;
    right: 20px;
    left: auto;
  }
  .mobile-header-menu .menu li .clickD.toggled:after {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
  }
  .mobile-header-menu .menu li .sub-menu.show {
    display: block;
    position: static;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mobile-header-menu .menu li .sub-menu.show li {
    list-style: none;
    list-style-type: none;
  }
  .mobile-header-menu .menu li .sub-menu.show li.current-menu-item a {
    color: #f15a29;
  }
  .mobile-header-menu .menu > li.current-menu-item > ul.sub-menu > li.menu-item-type-custom > a {
    color: #000000;
    background-color: transparent;
  }
  .mobile-header-menu .menu > li.current-menu-item > ul.sub-menu > li.menu-item-type-custom.customMenu-active a {
    color: #f15a29;
    background-color: transparent;
  }
}
/* TABLET PROTRAIT PART */
/* HIGH DEFINITION PHONE PART */
/* SMART PHONE LANDSCAPE PART */
/* SMART PHONE LANDSCAPE PART */
/* ========================== */
/* END OF RESPONSIVE CSS */
/* ========================== */
.comn-footer-sec {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #767676;
  background-color: #000000;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .comn-footer-sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.comn-footer-sec .container {
  max-width: 100%;
  padding-inline: 30px;
}
@media only screen and (max-width: 767px) {
  .comn-footer-sec .container {
    padding-inline: 15px;
  }
}
.comn-footer-sec .comn-footer-main {
  width: 100%;
}
.comn-footer-sec .comn-footer-main .row {
  --bs-gutter-y: 30px;
}
.comn-footer-sec .comn-footer-main .comn-footer-left-content .footer-logo-holder {
  width: 170px;
}
@media screen and (min-width: 768px) {
  .comn-footer-sec .comn-footer-main .comn-footer-left-content .footer-logo-holder {
    width: 174px;
  }
}
.comn-footer-sec .comn-footer-main .comn-footer-left-content .footer-logo-holder img {
  width: 100%;
  height: auto;
}
.comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text {
  margin-top: 30px;
  width: 335px;
  max-width: 100%;
}
@media only screen and (min-width: 1800px) {
  .comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text {
    width: 350px;
  }
}
.comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text p {
  font-size: 14px;
  line-height: 1.4;
  line-height: 1.6428571429 !important;
  margin: 0;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text p {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text p {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .comn-footer-sec .comn-footer-main .comn-footer-left-content .logo_bottom_dsc_text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.comn-footer-sec .comn-footer-bottom {
  width: 100%;
  -webkit-box-shadow: 0 -0.5px 0 0 #333333;
          box-shadow: 0 -0.5px 0 0 #333333;
  padding-top: 30px;
  margin-top: 40px;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text p {
  margin: 0;
  color: #767676;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 1800px) {
  .comn-footer-sec .comn-footer-bottom .footer-copyRight-text p {
    font-size: 18px;
  }
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text p a:hover {
  color: #f15a29;
}

.social-link-holder {
  width: 100%;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .social-link-holder {
    margin-top: 20px;
  }
}
.social-link-holder ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
.social-link-holder ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-link-holder ul li:before {
  display: none;
}
.social-link-holder ul li:first-child {
  margin-left: 0;
}
.social-link-holder ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-link-holder ul li a:hover .icon-holder {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.social-link-holder ul li a .icon-holder {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f15a29;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1800px) {
  .social-link-holder ul li a .icon-holder {
    width: 36px;
    height: 36px;
  }
}
.social-link-holder ul li a .icon-holder img {
  width: 14px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1800px) {
  .social-link-holder ul li a .icon-holder img {
    width: 19px;
  }
}
.social-link-holder ul li a .linkInfoText {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.subscribe_form_content {
  color: #ffffff;
  width: 600px;
  max-width: 100%;
}
@media only screen and (min-width: 1200px) {
  .subscribe_form_content {
    margin-left: auto;
  }
}
@media screen and (min-width: 1460px) {
  .subscribe_form_content {
    width: 680px;
  }
}
@media screen and (min-width: 1800px) {
  .subscribe_form_content {
    width: 720px;
  }
}
.subscribe_form_content .subscribe_form_block {
  width: 100%;
}
.subscribe_form_content .subscribe_form_block .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.subscribe_form_content .subscribe_form_block .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
}
.subscribe_form_content .subscribe_form_block input {
  font-size: 14px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.1);
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #E9E9E9;
  height: 64px;
  font-weight: 400;
  color: #ffffff;
  border-radius: 0px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 100%;
  padding: 10px 20px;
}
@media screen and (min-width: 576px) {
  .subscribe_form_content .subscribe_form_block input {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .subscribe_form_content .subscribe_form_block input {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .subscribe_form_content .subscribe_form_block input {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .subscribe_form_content .subscribe_form_block input {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .subscribe_form_content .subscribe_form_block input {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .subscribe_form_content .subscribe_form_block input {
    font-size: 16px;
    line-height: 1.5;
  }
}
.subscribe_form_content .subscribe_form_block input::-webkit-input-placeholder {
  opacity: 1;
  color: #ffffff;
}
.subscribe_form_content .subscribe_form_block input::-moz-placeholder {
  opacity: 1;
  color: #ffffff;
}
.subscribe_form_content .subscribe_form_block input:-ms-input-placeholder {
  opacity: 1;
  color: #ffffff;
}
.subscribe_form_content .subscribe_form_block input::-ms-input-placeholder {
  opacity: 1;
  color: #ffffff;
}
.subscribe_form_content .subscribe_form_block input::placeholder {
  opacity: 1;
  color: #ffffff;
}
.subscribe_form_content .subscribe_form_block .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
@media (min-width: 1200px) {
  .subscribe_form_content .subscribe_form_block .btn {
    min-width: 160px;
  }
}
.subscribe_form_content .subscribe_sminfo_row {
  margin-top: 15px;
  gap: 15px 25px;
}
.subscribe_form_content .subscribe_sminfo_row .sminfo_text {
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 576px) {
  .subscribe_form_content .subscribe_sminfo_row .sminfo_text {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .subscribe_form_content .subscribe_sminfo_row .sminfo_text {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .subscribe_form_content .subscribe_sminfo_row .sminfo_text {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .subscribe_form_content .subscribe_sminfo_row .sminfo_text {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .subscribe_form_content .subscribe_sminfo_row .sminfo_text {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .subscribe_form_content .subscribe_sminfo_row .sminfo_text {
    font-size: 16px;
    line-height: 1.5;
  }
}

:root {
  --nav-height: 80px;
}

::-moz-selection {
  background: #f15a29;
  color: #fff;
}

::selection {
  background: #f15a29;
  color: #fff;
}

* {
  outline: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
.customScrollBar {
  scrollbar-face-color: rgba(0, 0, 0, 0.3);
  scrollbar-shadow-color: rgba(0, 0, 0, 0.1);
  scrollbar-highlight-color: rgba(0, 0, 0, 0.1);
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
}
.customScrollBar::-webkit-scrollbar {
  width: 7px;
}
.customScrollBar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.customScrollBar::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.customScrollBar::-webkit-scrollbar-button {
  background-color: rgba(0, 0, 0, 0.1);
}
.customScrollBar.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.customScrollBar.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

.customScrollBar-light {
  scrollbar-face-color: rgba(255, 255, 255, 0.3);
  scrollbar-shadow-color: rgba(255, 255, 255, 0.1);
  scrollbar-highlight-color: rgba(255, 255, 255, 0.1);
  scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
}
.customScrollBar-light::-webkit-scrollbar {
  width: 7px;
}
.customScrollBar-light::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.customScrollBar-light::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.customScrollBar-light::-webkit-scrollbar-button {
  background-color: rgba(255, 255, 255, 0.1);
}
.customScrollBar-light.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.customScrollBar-light.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

.py_6, .pt_6, .testimonial_sec {
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  .py_6, .pt_6, .testimonial_sec {
    padding-top: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .py_6, .pt_6, .testimonial_sec {
    padding-top: 36px;
  }
}

.py_6, .pb_6, .testimonial_sec {
  padding-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .py_6, .pb_6, .testimonial_sec {
    padding-bottom: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .py_6, .pb_6, .testimonial_sec {
    padding-bottom: 36px;
  }
}

.client_logo_slider_row, .py_7, .pt_7 {
  padding-top: 70px;
}
@media only screen and (max-width: 991px) {
  .client_logo_slider_row, .py_7, .pt_7 {
    padding-top: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .client_logo_slider_row, .py_7, .pt_7 {
    padding-top: 42px;
  }
}

.platform_sec, .platform_sec .platform_top, .py_7, .pb_7 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .platform_sec, .platform_sec .platform_top, .py_7, .pb_7 {
    padding-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .platform_sec, .platform_sec .platform_top, .py_7, .pb_7 {
    padding-bottom: 42px;
  }
}

.py_8, .pt_8 {
  padding-top: 80px;
}
@media only screen and (max-width: 991px) {
  .py_8, .pt_8 {
    padding-top: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .py_8, .pt_8 {
    padding-top: 48px;
  }
}

.py_8, .pb_8 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .py_8, .pb_8 {
    padding-bottom: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .py_8, .pb_8 {
    padding-bottom: 48px;
  }
}

.py_9, .pt_9, .cta__sec {
  padding-top: 90px;
}
@media only screen and (max-width: 991px) {
  .py_9, .pt_9, .cta__sec {
    padding-top: 72px;
  }
}
@media only screen and (max-width: 767px) {
  .py_9, .pt_9, .cta__sec {
    padding-top: 54px;
  }
}

.py_9, .pb_9, .cta__sec {
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  .py_9, .pb_9, .cta__sec {
    padding-bottom: 72px;
  }
}
@media only screen and (max-width: 767px) {
  .py_9, .pb_9, .cta__sec {
    padding-bottom: 54px;
  }
}

.py_10, .pt_10 {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .py_10, .pt_10 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .py_10, .pt_10 {
    padding-top: 60px;
  }
}

.py_10, .pb_10 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .py_10, .pb_10 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .py_10, .pb_10 {
    padding-bottom: 60px;
  }
}

.py_11, .pt_11 {
  padding-top: 110px;
}
@media only screen and (max-width: 991px) {
  .py_11, .pt_11 {
    padding-top: 88px;
  }
}
@media only screen and (max-width: 767px) {
  .py_11, .pt_11 {
    padding-top: 66px;
  }
}

.py_11, .pb_11 {
  padding-bottom: 110px;
}
@media only screen and (max-width: 991px) {
  .py_11, .pb_11 {
    padding-bottom: 88px;
  }
}
@media only screen and (max-width: 767px) {
  .py_11, .pb_11 {
    padding-bottom: 66px;
  }
}

.py_12, .pt_12 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .py_12, .pt_12 {
    padding-top: 96px;
  }
}
@media only screen and (max-width: 767px) {
  .py_12, .pt_12 {
    padding-top: 72px;
  }
}

.py_12, .pb_12 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .py_12, .pb_12 {
    padding-bottom: 96px;
  }
}
@media only screen and (max-width: 767px) {
  .py_12, .pb_12 {
    padding-bottom: 72px;
  }
}

.py_13, .pt_13 {
  padding-top: 130px;
}
@media only screen and (max-width: 991px) {
  .py_13, .pt_13 {
    padding-top: 104px;
  }
}
@media only screen and (max-width: 767px) {
  .py_13, .pt_13 {
    padding-top: 78px;
  }
}

.py_13, .pb_13 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 991px) {
  .py_13, .pb_13 {
    padding-bottom: 104px;
  }
}
@media only screen and (max-width: 767px) {
  .py_13, .pb_13 {
    padding-bottom: 78px;
  }
}

.py_14, .pt_14 {
  padding-top: 140px;
}
@media only screen and (max-width: 991px) {
  .py_14, .pt_14 {
    padding-top: 112px;
  }
}
@media only screen and (max-width: 767px) {
  .py_14, .pt_14 {
    padding-top: 84px;
  }
}

.py_14, .pb_14 {
  padding-bottom: 140px;
}
@media only screen and (max-width: 991px) {
  .py_14, .pb_14 {
    padding-bottom: 112px;
  }
}
@media only screen and (max-width: 767px) {
  .py_14, .pb_14 {
    padding-bottom: 84px;
  }
}

.py_15, .pt_15 {
  padding-top: 150px;
}
@media only screen and (max-width: 991px) {
  .py_15, .pt_15 {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .py_15, .pt_15 {
    padding-top: 90px;
  }
}

.py_15, .pb_15 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  .py_15, .pb_15 {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .py_15, .pb_15 {
    padding-bottom: 90px;
  }
}

a {
  color: #f15a29;
}
a:hover {
  color: #bf2f00;
}

img {
  height: auto;
}

.flex01auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 0;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1364px;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1600px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 576px) {
  .container.one_side_full_container {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .container.one_side_full_container {
    max-width: calc(720px + (100vw - 720px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .container.one_side_full_container {
    max-width: calc(960px + (100vw - 960px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .container.one_side_full_container {
    max-width: calc(1160px + (100vw - 1160px) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .container.one_side_full_container {
    max-width: calc(1364px + (100vw - 1379px) / 2);
  }
}
@media screen and (min-width: 1800px) {
  .container.one_side_full_container {
    max-width: calc(1600px + (100vw - 1620px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .container.one_side_full_container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.osfc_left_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .osfc_left_col {
    width: 32%;
  }
}
@media (min-width: 992px) {
  .osfc_left_col {
    width: 23%;
  }
}
@media (min-width: 1200px) {
  .osfc_left_col {
    width: 23%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .osfc_left_col.break_on_md {
    width: 100%;
  }
}

.osfc_right_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .osfc_right_col {
    width: 68%;
  }
}
@media (min-width: 992px) {
  .osfc_right_col {
    width: 77%;
  }
}
@media (min-width: 1200px) {
  .osfc_right_col {
    width: 77%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .osfc_right_col.break_on_md {
    width: 100%;
  }
}

.nc_left_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .nc_left_col {
    width: 32%;
  }
}
@media (min-width: 992px) {
  .nc_left_col {
    width: 24.5%;
  }
}

.nc_right_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .nc_right_col {
    width: 68%;
  }
}
@media (min-width: 992px) {
  .nc_right_col {
    width: 75.5%;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.text-xs-size {
  font-size: 16px;
  line-height: 24px;
}

.text-sm-size {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 1800px) {
  .text-sm-size {
    font-size: 22px;
    line-height: 1.5;
  }
}

.fs-16px {
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 1800px) {
  .fs-16px {
    font-size: 20px;
  }
}

.color-white {
  color: #ffffff !important;
}

.color-black {
  color: #000000 !important;
}

.color-primary {
  color: #f15a29 !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg_light_fa {
  background-color: #fafafa !important;
}

.bg_light2 {
  background-color: #F7F7F7 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

a {
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
a:hover, a:focus {
  text-decoration: none;
}

.btn:hover {
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}

.btn.focus,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}

body {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Red Hat Text", sans-serif;
  color: #383e45;
  font-weight: 400;
  font-optical-sizing: auto;
}
@media screen and (min-width: 576px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  body {
    font-size: 18px;
    line-height: 1.5;
  }
}
body.lockScroll {
  overflow: hidden;
}

.page-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  -webkit-transition: opacity 250ms linear;
  transition: opacity 250ms linear;
  opacity: 0;
  visibility: hidden;
}
.page-overlay.show {
  z-index: 90;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  visibility: visible;
}
.page-overlay.nav-search-overlay {
  top: 70px;
}

.sec_heading_wrap .heading_dsc_text > *:last-child {
  margin-bottom: 0;
}
.sec_heading_wrap .heading_dsc_text.text-black p {
  color: #000000;
}
.sec_heading_wrap .heading_dsc_text p {
  margin: 0 0 15px;
  color: #383e45;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .sec_heading_wrap .heading_dsc_text p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .sec_heading_wrap .heading_dsc_text p {
    font-size: 22px;
    line-height: 1.5;
  }
}
.sec_heading_wrap .heading_dsc_text p a {
  color: #f15a29;
}
.sec_heading_wrap .heading_dsc_text p a:hover {
  color: #bf2f00;
}

.banner_heading_text {
  font-size: 26px;
  line-height: 1.5217391304;
  color: #000000;
  font-weight: 600;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .banner_heading_text {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .banner_heading_text {
    font-size: 28px;
  }
}
@media screen and (min-width: 992px) {
  .banner_heading_text {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .banner_heading_text {
    font-size: 36px;
  }
}
@media screen and (min-width: 1400px) {
  .banner_heading_text {
    font-size: 46px;
  }
}
@media screen and (min-width: 1800px) {
  .banner_heading_text {
    font-size: 52px;
  }
}
.banner_heading_text span {
  color: #f15a29 !important;
}

.h2_heading_text {
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .h2_heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .h2_heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .h2_heading_text {
    font-size: 30px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1200px) {
  .h2_heading_text {
    font-size: 34px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1400px) {
  .h2_heading_text {
    font-size: 36px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1800px) {
  .h2_heading_text {
    font-size: 44px;
    line-height: 1.22;
  }
}

.h3_heading_text {
  font-size: 19px;
  line-height: 1.4;
  color: #000000;
  font-weight: 400;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .h3_heading_text {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .h3_heading_text {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .h3_heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .h3_heading_text {
    font-size: 30px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1400px) {
  .h3_heading_text {
    font-size: 32px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1800px) {
  .h3_heading_text {
    font-size: 40px;
    line-height: 1.22;
  }
}

.h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 30px;
    line-height: 1.3;
  }
}

.heading_text_2 {
  font-size: 22px;
  line-height: 1.4;
  color: #000000;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .heading_text_2 {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .heading_text_2 {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .heading_text_2 {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .heading_text_2 {
    font-size: 28px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1400px) {
  .heading_text_2 {
    font-size: 28px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1800px) {
  .heading_text_2 {
    font-size: 36px;
    line-height: 1.22;
  }
}

.fs-18px {
  font-size: 18px;
}

.custom-radio label {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
}

.custom-radio label .circle-box {
  display: inline-block;
  width: 22px;
  height: 22px;
  left: 0;
  border: none;
  border-radius: 100%;
  border: solid 1px #414244;
  position: relative;
}

.custom-radio input[type=radio] {
  opacity: 0;
  position: absolute;
}

.custom-radio input[type=radio]:checked + label .circle-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #f15a29;
}

.custom-radio input[type=radio]:checked + label .circle-box {
  border: 1px solid #f15a29;
}

.custom-radio .labelText {
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.custom-radio input[type=radio]:checked + label .labelText {
  color: #000000;
}

.custom-checkbox label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.custom-checkbox label .square-box {
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  border: none;
  border-radius: 5px;
  border: 1px solid #000000;
  position: relative;
}

.custom-checkbox label .labelText {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: #000000;
  margin-left: 8px;
}

.custom-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.custom-checkbox input[type=checkbox]:checked + label .square-box::after {
  content: "";
  color: #ffffff;
  position: absolute;
  left: 3px;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 10px;
  height: 12px;
  border-radius: 100%;
  font-size: 8px;
}

.custom-checkbox input[type=checkbox]:checked + label .square-box {
  border: 1px solid #f15a29;
  background-color: #f15a29;
}

.comn-modal .modal-dialog .modal-content {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
}
.comn-modal .modal-dialog .modal-content .modal-header {
  padding: 40px 40px 0;
  position: relative;
  border-bottom: none;
}
.comn-modal .modal-dialog .modal-content .modal-header .modal-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: #000000;
}
.comn-modal .modal-dialog .modal-content .comn-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  border: none;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  background-color: transparent;
  padding: 5px;
  font-size: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  --bs-btn-close-color: #fff;
  --bs-btn-close-bg: url(../images/close.svg);
  opacity: 1;
}
.comn-modal .modal-dialog .modal-content .comn-modal-close:hover {
  color: #f15a29;
}
@media screen and (max-width: 991px) {
  .comn-modal .modal-dialog .modal-content .comn-modal-close {
    top: 10px;
    right: 10px;
  }
}
.comn-modal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
@media screen and (max-width: 991px) {
  .comn-modal .modal-dialog .modal-content .modal-body {
    padding: 30px 25px;
  }
}
.comn-modal .modal-dialog .modal-content .modal-body .comn-modal-form-content .comn-form-heading {
  margin-bottom: 20px;
}
.comn-modal .modal-dialog .modal-content .modal-body .comn-modal-form-content .comn-form-heading .headingText {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #000000;
}

@media screen and (max-width: 575px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.default-general-content > *:last-child {
  margin-bottom: 0 !important;
}
.default-general-content h2:first-child,
.default-general-content h3:first-child,
.default-general-content h4:first-child,
.default-general-content h5:first-child,
.default-general-content h6:first-child {
  margin-top: 0;
}
.default-general-content h2,
.default-general-content h3,
.default-general-content h4,
.default-general-content h5,
.default-general-content h6 {
  margin-bottom: 10px;
  margin-top: 25px;
  color: #000000;
}
@media (min-width: 768px) {
  .default-general-content h2,
  .default-general-content h3,
  .default-general-content h4,
  .default-general-content h5,
  .default-general-content h6 {
    margin-bottom: 15px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content h2,
  .default-general-content h3,
  .default-general-content h4,
  .default-general-content h5,
  .default-general-content h6 {
    margin-bottom: 15px;
    margin-top: 35px;
  }
}
.default-general-content h2 span,
.default-general-content h3 span,
.default-general-content h4 span,
.default-general-content h5 span,
.default-general-content h6 span {
  color: #f15a29;
}
.default-general-content ol {
  margin-bottom: 25px;
  padding-left: 22px;
}
@media (min-width: 768px) {
  .default-general-content ol {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content ol {
    margin-bottom: 35px;
  }
}
.default-general-content ol:last-child {
  margin-bottom: 0;
}
.default-general-content ol li {
  margin-bottom: 8px;
  padding: 0;
  position: relative;
  z-index: 0;
  font-size: 16px;
  line-height: 1.78;
  color: #000000;
}
@media (min-width: 992px) {
  .default-general-content ol li {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .default-general-content ol li {
    font-size: 22px;
  }
}
.default-general-content ol li:last-child {
  margin-bottom: 0;
}
.default-general-content ul {
  margin-bottom: 25px;
  list-style: none;
}
@media (min-width: 768px) {
  .default-general-content ul {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content ul {
    margin-bottom: 35px;
  }
}
.default-general-content ul:last-child {
  margin-bottom: 0;
}
.default-general-content ul li {
  margin-bottom: 8px;
  position: relative;
  z-index: 0;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.78;
  color: #000000;
}
@media (min-width: 992px) {
  .default-general-content ul li {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .default-general-content ul li {
    font-size: 22px;
  }
}
.default-general-content ul li:last-child {
  margin-bottom: 0;
}
.default-general-content ul li::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #000000;
  top: 10px;
}
.default-general-content ul li ul {
  padding-left: 20px;
}
.default-general-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.78;
  color: #000000;
}
@media (min-width: 992px) {
  .default-general-content p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .default-general-content p {
    font-size: 22px;
  }
}
.default-general-content p strong {
  font-weight: 600;
}
.default-general-content p a {
  color: #f15a29;
  text-decoration: none;
}
.default-general-content p a:hover {
  color: #000000;
  text-decoration: none;
}
.default-general-content h2 {
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .default-general-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .default-general-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .default-general-content h2 {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .default-general-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .default-general-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .default-general-content h2 {
    font-size: 30px;
    line-height: 1.3;
  }
}
.default-general-content h2 span {
  color: #f15a29;
}
.default-general-content h3 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .default-general-content h3 {
    margin-bottom: 10px;
    margin-top: 35px;
  }
}
.default-general-content h5 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .default-general-content h5 {
    margin-bottom: 5px;
    margin-top: 18px;
  }
}
.default-general-content blockquote {
  padding: 20px 25px;
  margin-bottom: 25px;
  margin-top: 25px;
  background: #eff1f3;
}
@media (min-width: 768px) {
  .default-general-content blockquote {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content blockquote {
    margin-bottom: 35px;
    margin-top: 35px;
  }
}
.default-general-content blockquote p {
  margin: 0;
  font-weight: 400;
  font-style: Italic;
  font-size: 18px;
  line-height: 1.64;
  color: #000000;
}
@media (min-width: 992px) {
  .default-general-content blockquote p {
    font-size: 20px;
  }
}
@media (min-width: 1800px) {
  .default-general-content blockquote p {
    font-size: 24px;
  }
}
.default-general-content blockquote p + p {
  margin-top: 15px;
}
.default-general-content figure {
  margin-bottom: 25px;
  padding: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .default-general-content figure {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content figure {
    margin-bottom: 35px;
  }
}
.default-general-content figure img {
  max-width: 100%;
  background-color: #ffffff;
}
.default-general-content figure.alignwide {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.default-general-content .alignleft {
  margin-right: 22px;
  float: left;
  max-width: 400px;
  margin-bottom: 0;
  max-width: 400px;
}
.default-general-content .alignleft:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .default-general-content .alignleft {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content .alignleft {
    max-width: inherit;
    float: none !important;
    margin-left: 0;
  }
}
.default-general-content .alignright {
  margin-left: 22px;
  float: left;
  max-width: 400px;
  margin-bottom: 0;
  max-width: 400px;
}
.default-general-content .alignright:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .default-general-content .alignright {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content .alignright {
    max-width: inherit;
    float: none !important;
    margin-left: 0;
  }
}

.page404 {
  padding: 30px 0 80px;
}
@media (max-width: 991.5px) {
  .page404 {
    padding-bottom: 70px;
  }
}
.page404 .content404 {
  padding: 35px 40px 42px;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid #f15a29;
  border-radius: 12px;
  background-color: #383e45;
}
@media (max-width: 575px) {
  .page404 .content404 {
    padding: 21px 25px 27px;
  }
}
.page404 .content404 .dsc-content-wrap .headingText {
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 576px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 30px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1200px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 34px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1400px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 36px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1800px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 44px;
    line-height: 1.22;
  }
}
.page404 .content404 .dsc-content-wrap .dscText p {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}
.page404 .content404 .btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .page404 .content404 .btn {
    margin-top: 0;
  }
}

.nodata-content-wrap .nodata-content .nodata-img-holder {
  width: 220px;
  height: 220px;
  background-color: rgba(27, 31, 73, 0.3);
  border-radius: 100%;
  padding: 50px;
}
.nodata-content-wrap .nodata-content .nodata-img-holder img {
  width: 100%;
}
.nodata-content-wrap .nodata-content .nodata-content-holder {
  padding-left: 50px;
}
.nodata-content-wrap .nodata-content .nodata-content-holder .headingText {
  color: #ffffff;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 400;
}
.nodata-content-wrap .nodata-content .nodata-content-holder .text1 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}
.nodata-content-wrap .nodata-content .nodata-content-holder p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  margin: 0;
}

.link_text {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.5px;
  text-decoration: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
@media (min-width: 1800px) {
  .link_text {
    font-size: 18px;
    line-height: 22px;
  }
}
.link_text:hover {
  text-decoration: underline;
}

.more_link_text {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0px;
  text-decoration: none;
  color: #f15a29;
  padding-right: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1800px) {
  .more_link_text {
    font-size: 17px;
  }
}
.more_link_text > .arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid #f15a29;
  border-bottom: 2px solid #f15a29;
  position: relative;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  will-change: transform;
  -webkit-transform-origin: 2px center;
          transform-origin: 2px center;
  position: absolute;
  right: -10px;
  top: 8px;
}
@media (min-width: 1800px) {
  .more_link_text > .arrow {
    top: 10px;
  }
}
.more_link_text > .arrow:before {
  display: block;
  background-color: #f15a29;
  width: 5px;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  height: 1.5px;
  position: absolute;
  opacity: 0;
  bottom: -1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  right: 0;
  will-change: transform;
}
.more_link_text:hover {
  color: #f15a29;
  padding-right: 17px;
}
.more_link_text:hover > .arrow {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-color: #f15a29;
  right: 2px;
}
.more_link_text:hover > .arrow:before {
  opacity: 1;
  width: 10px;
}

@-webkit-keyframes moveArrow {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(5px) scale(0.9);
            transform: translateX(5px) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-5px) scale(0.9);
            transform: translateX(-5px) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1);
  }
}

@keyframes moveArrow {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(5px) scale(0.9);
            transform: translateX(5px) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-5px) scale(0.9);
            transform: translateX(-5px) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1);
  }
}
.read_more_link {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0px;
  text-decoration: none;
  color: #f15a29;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1800px) {
  .read_more_link {
    font-size: 17px;
  }
}
.read_more_link .read_more_link_text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: #f15a29;
}
.read_more_link .read_more_link_arrow {
  width: 24px;
  height: 12px;
  background-image: url("../images/icons/slider-next-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 15px;
  position: relative;
  top: 1px;
}
.read_more_link:hover .read_more_link_arrow {
  -webkit-animation-name: moveArrow;
          animation-name: moveArrow;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.comn_dsc_text_white > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_text_white ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.comn_dsc_text_white ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .comn_dsc_text_white ul li {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .comn_dsc_text_white ul li {
    margin-top: 40px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text_white ul li {
    padding-left: 40px;
  }
}
.comn_dsc_text_white ul li:first-child {
  margin-top: 0;
}
.comn_dsc_text_white ul li:before {
  content: "";
  background-image: url("../images/icons/check-orange.svg");
  background-size: 16px 12px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 4px;
}
@media (min-width: 1800px) {
  .comn_dsc_text_white ul li:before {
    background-size: 20px 16px;
    width: 20px;
    height: 16px;
  }
}
.comn_dsc_text_white ul li p {
  margin: 0 0 3px;
  color: #d9d9d9;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 768px) {
  .comn_dsc_text_white ul li p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text_white ul li p {
    font-size: 22px;
    margin: 0 0 6px;
  }
}
.comn_dsc_text_white ul li > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_text_white > p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.comn_dsc_text_white > p strong {
  font-weight: 700;
  color: #f15a29;
}
@media (min-width: 768px) {
  .comn_dsc_text_white > p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text_white > p {
    font-size: 22px;
  }
}

.comn_dsc_text > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_text ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.comn_dsc_text ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 8px;
}
.comn_dsc_text ul li:first-child {
  margin-top: 0;
}
.comn_dsc_text ul li:before {
  content: "";
  background-image: url("../images/icons/check-orange.svg");
  background-size: 16px 12px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 4px;
}
.comn_dsc_text ul li p {
  margin: 0 0 3px;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 768px) {
  .comn_dsc_text ul li p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text ul li p {
    font-size: 22px;
  }
}
.comn_dsc_text ul li > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_text > p {
  color: #383e45;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 768px) {
  .comn_dsc_text > p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text > p {
    font-size: 22px;
  }
}
.comn_dsc_text > p strong {
  font-weight: 700;
  color: #f15a29;
}

.comn_dsc_content > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_content.text_color_white ul li:before {
  content: "";
  background-image: url("../images/icons/circle-check-orange.svg");
}
.comn_dsc_content.text_color_white ul li p {
  color: #ffffff;
}
.comn_dsc_content.text_color_white > p {
  color: #ffffff;
}
.comn_dsc_content ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.comn_dsc_content ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .comn_dsc_content ul li {
    margin-top: 28px;
  }
}
.comn_dsc_content ul li:first-child {
  margin-top: 0;
}
.comn_dsc_content ul li:before {
  content: "";
  background-image: url("../images/icons/circle-check-black.svg");
  background-size: 18px 18px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}
.comn_dsc_content ul li p {
  margin: 0 0 3px;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .comn_dsc_content ul li p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_content ul li p {
    font-size: 22px;
  }
}
.comn_dsc_content ul li > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_content > p {
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .comn_dsc_content > p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_content > p {
    font-size: 22px;
  }
}
.comn_dsc_content > p strong {
  font-weight: 700;
  color: #f15a29;
}

.tag-mb-20px {
  margin-bottom: 20px;
}

.tag_lightBlue {
  background-color: #97d6df;
  border-radius: 3px;
  padding: 2px 12px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
@media (min-width: 1800px) {
  .tag_lightBlue {
    font-size: 18px;
    padding: 4px 14px;
  }
}

.tag_black {
  background-color: #000000;
  border-radius: 3px;
  padding: 2px 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
@media (min-width: 1800px) {
  .tag_black {
    font-size: 18px;
    padding: 4px 14px;
  }
}

.flex_card_group_total {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  padding-bottom: 7px;
}
.flex_card_group_total > .flex_card_fixed {
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  width: 19.5%;
  height: 469px;
  padding-top: 20px;
}
@media (min-width: 1800px) {
  .flex_card_group_total > .flex_card_fixed {
    height: 555px;
  }
}
.flex_card_group_total > .flex_card_fixed .flex_card_fixed_body {
  background-color: #ffffff;
}
.flex_card_group_total > .flex_card_fixed .card_top_content {
  padding: 28px 25px 18px 28px;
}
.flex_card_group_total > .flex_card_fixed .card_top_content .icon-holder {
  width: 53px;
  height: 53px;
}
.flex_card_group_total > .flex_card_fixed .card_top_content .icon-holder img {
  width: 100%;
  height: 100%;
}
.flex_card_group_total > .flex_card_fixed .card_top_content .heading_text {
  font-size: 22px;
  margin-top: 17px;
  color: #000000;
}
@media (min-width: 1800px) {
  .flex_card_group_total > .flex_card_fixed .card_top_content .heading_text {
    font-size: 26px;
  }
}
.flex_card_group_total > .flex_card_fixed .card_top_content .comn_dsc_text {
  margin-top: 15px;
}
.flex_card_group_total > .flex_card_fixed .card_graphic_img_holder {
  width: 100%;
  padding: 0 25px 0 0;
}
.flex_card_group_total > .flex_card_fixed .card_graphic_img_holder.applications_graphic_img_holder {
  padding: 0 20px 0;
}
.flex_card_group_total > .flex_card_fixed .card_graphic_img_holder.applications_graphic_img_holder .card_graphic_img {
  height: 180px;
}
@media (min-width: 1800px) {
  .flex_card_group_total > .flex_card_fixed .card_graphic_img_holder.applications_graphic_img_holder .card_graphic_img {
    height: 230px;
  }
}
.flex_card_group_total > .flex_card_fixed .card_graphic_img_holder .card_graphic_img {
  width: auto;
  height: 199px;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1800px) {
  .flex_card_group_total > .flex_card_fixed .card_graphic_img_holder .card_graphic_img {
    height: 250px;
  }
}
.flex_card_group_total > .flex_card_group {
  width: 100%;
}

/*
.flex_card_group {
  padding: 0;
  margin: 0;
  position: relative;
  height: 469px;
  padding-top: 20px;
  // height: 449px;
  display: flex;
  overflow: hidden;
  column-gap: 11px;
  width: 100%;
  @media (min-width: 1800px) {
    height: 555px;
  }
  > .flex_card {
    background-color: $color__white;
    flex: 1 1 0;
    overflow: hidden;
    position: relative;
    transition: all 0.3s linear;

    .card_top_content {
      padding: 30px 28px 25px;
      opacity: 1;
      transform: translateY(0px);
      transition: transform 0.4s 0.2s linear, opacity 0.4s 0s linear;
      position: absolute;
      top: 0;
      left: 0;

      @media (min-width: 1400px) {
        padding: 30px 35px 25px;
      }

      .icon-holder {
        width: 53px;
        height: 53px;
        img {
          width: 100%;
          height: 1005;
        }
      }
      .heading_text {
        font-size: 22px;
        margin-top: 17px;
        color: $color__black;
        @media (min-width: 1800px) {
          font-size: 26px;
        }
      }
    }
    .card_top_content_onhover {
      padding: 25px 20px 20px 26px;

      position: absolute;
      z-index: 3;
      top: 0;
      bottom: auto;
      right: 0;
      width: 400px;
      opacity: 0;
      transform: translateX(-20px);
      visibility: hidden;

      // transition: transform 0.1s 0.3s linear, opacity 0.1s 0.3s linear,
      //   visibility 0.1s 0.3s linear, width 0.1s 0.3s linear;

      .inner-box {
        column-gap: 20px;
      }

      .icon-holder {
        width: 53px;
        height: 53px;
        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
      .heading_text {
        font-size: 22px;
        color: $color__black;
        margin-bottom: 10px;
        @media (min-width: 1800px) {
          font-size: 26px;
        }
        span {
          color: $color__primary;
        }
      }
      .link_text {
        font-size: 16px;
        @media (min-width: 1800px) {
          font-size: 20px;
        }
      }
    }
    .card_side_img_holder {
      width: calc(100% - 28px);
      height: 204px;
      margin-left: auto;
      transition: width 0.5s 0.1s linear;
      position: relative;

      @media (min-width: 1400px) {
        height: 255px;
        width: calc(100% - 35px);
      }
      @media (min-width: 1800px) {
        height: 300px;
      }
      .card_side_img {
        background-position: top left;
        background-repeat: no-repeat;
        background-size: auto 100%;
        width: 100%;
        height: 100%;

        transition: background-position 0.3s 0.2s linear;
      }
    }

    &.flex_card_is_hoverable {
      // background: linear-gradient(180deg, #ffffff 0%, #8e8e8e 100%);
      background: linear-gradient(186.98deg, #FFFFFF 22.04%, #8E8E8E 98.17%);
      &.bg-white {
        background: $color__white;
      }
      &:hover,
      &.is_hovered {
        transition: all 0.5s linear;
        @media screen and (min-width: 768px) {
          flex-grow: 4;
        }

        @media screen and (min-width: 992px) {
          flex-grow: 2.1;
        }

        .card_side_img_holder {
          width: calc(100% - 100px);
          transition: width 0.3s 0.1s linear;
          .card_side_img {
            background-position: top right;
            // background-repeat: no-repeat;
            background-size: auto 100%;
            transition: background-position 0.5s 0s linear;
          }
        }
        .card_top_content {
          transform: translateX(-50px);
          opacity: 0;
          z-index: 0;
        }
        .card_top_content_onhover {
          width: 100%;
          z-index: 1;
          opacity: 1;
          transform: translateY(0);
          visibility: visible;
          transition: transform 0.3s linear 0.4s, opacity 0.3s linear 0.4s,
            visibility 0.3s linear 0.3s, width 0.3s linear 0s;
        }
      }
    }
  }
}*/
.accordion.card-accordion {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
.accordion.card-accordion .accordion-item {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  margin-top: 12px;
  overflow: hidden;
  -webkit-box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
          box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
}
.accordion.card-accordion .accordion-item:first-child {
  margin-top: 0;
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 15px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: linear-gradient(178.7deg, #ffffff 1.11%, #8e8e8e 137.21%);
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button::after {
  margin-left: auto;
  background-image: url(../images/icons/arrow_down_black.svg);
  background-size: 12px 8px;
  background-position: center;
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button .icon-holder {
  width: 42px;
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button .heading_text {
  color: #000000;
  font-size: 18px;
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-image: none;
  background-color: #ffffff;
}
.accordion.card-accordion .accordion-item .accordion-collapse {
  background: #fff;
}
.accordion.card-accordion .accordion-item .accordion-body {
  padding: 0;
  color: #333;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .dscText_content {
  padding: 0 15px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .link_text {
  font-size: 16px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap {
  width: calc(100% - 37px);
  margin-left: auto;
  margin-top: 40px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap.connect_graphic_img {
  width: 100%;
  max-width: 330px;
  margin-right: auto;
  margin-left: 0;
  margin-top: 20px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap.connect_graphic_img .ratio img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap.applications_graphic_img {
  width: 100%;
  max-width: 330px;
  margin-right: auto;
  margin-left: 0;
  margin-top: 20px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap.applications_graphic_img .ratio img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap .ratio::before {
  padding-top: 75.1445086705%;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap .ratio img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}

/*
.comn_flex_card_group {
  padding: 0;
  margin: 0;
  position: relative;
  height: 469px;
  padding-top: 20px;
  // height: 449px;
  display: flex;
  overflow: hidden;
  column-gap: 11px;
  width: 100%;
  @media (min-width: 1800px) {
    height: 555px;
  }
  > .comn_flex_card {
    background-color: $color__white;
    flex: 1 1 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    border: 1px solid rgba(0, 0, 0, 0.19);
    box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);

    .card_content {
      background-repeat: no-repeat;
      background-size: cover;

      position: relative;

      &:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
      }

      .bottom_content {
        padding: 20px;
        width: 100%;
        position: relative;
        position: 1;
        visibility: visible;
        transition: opacity 0.6s linear 0.3s, visibility 0.6s linear 0.3s;

        .heading_text {
          @include font-size($h24-sizes);
        }
      }
    }

    .card_content_onhover {
      background-color: $color__black;
      position: absolute;
      z-index: 3;
      top: 0;
      bottom: 0;
      right: 0;
      width: 100;
      height: 100%;
      opacity: 0;
      visibility: hidden;

      transition: opacity 0.3s linear, visibility 0.1s linear,
        width 0.3s 0.3s linear;

      .dsc_content {
        padding: 35px;
        width: 100%;
        opacity: 0;
        visibility: hidden;

        transition: opacity 0.3s linear, visibility 0.1s linear;

        .heading_text {
          @include font-size($h24-sizes);
          &.mxw_262 {
            max-width: 262px;
          }
        }
        .dsc_text_white {
          width: 100%;
          margin-top: 45px;

          > *:last-child {
            margin-bottom: 0;
          }
          h3,
          h4,
          h5,
          h6 {
            font-size: 18px;
            line-height: 1.4;
            color: $color__white;
            font-weight: 400;
            margin-bottom: 20px;
            @media (min-width: 576px) {
              font-size: 20px;
              margin-bottom: 30px;
            }
            @media (min-width: 1800px) {
              font-size: 24px;
              margin-bottom: 30px;
            }
          }
          ul {
            list-style: none;
            margin: 0 0 20px;
            padding: 0;
            li {
              position: relative;
              padding-left: 30px;
              margin-top: 8px;

              @media (min-width: 1800px) {
                padding-left: 40px;
              }
              &:first-child {
                margin-top: 0;
              }
              &:before {
                content: "";
                background-image: url("../images/icons/check-white.svg");
                background-size: 16px 12px;
                background-position: left top;
                background-repeat: no-repeat;
                width: 16px;
                height: 12px;
                position: absolute;
                left: 0;
                top: 4px;
                @media (min-width: 1800px) {
                  background-size: 20px 16px;
                  width: 20px;
                  height: 16px;
                }
              }
              p {
                margin: 0 0 3px;
                color: $color__white;
                font-size: 16px;
                line-height: 1.4;
                font-weight: 400;

                @media (min-width: 1800px) {
                  font-size: 20px;
                  margin: 0 0 6px;
                }
              }
              > *:last-child {
                margin-bottom: 0;
              }
            }
          }
        }
        .link_holder {
          width: 100%;
          margin-top: 55px;
          .link_text {
            font-size: 18px;
            @media (min-width: 1800px) {
              font-size: 22px;
            }
          }
        }
      }
    }

    &.comn_flex_card_is_hoverable {
      &:hover,
      &.is_hovered {
        transition: all 0.5s linear;
        box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);

        @media screen and (min-width: 768px) {
          flex-grow: 4;
        }

        @media screen and (min-width: 992px) {
          flex-grow: 2.1;
        }

        .card_content {
          .bottom_content {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0s linear 0s, visibility 0s linear 0s;
          }
        }

        .card_content_onhover {
          width: 100%;
          opacity: 1;
          visibility: visible;

          .dsc_content {
            z-index: 1;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s 0.3s linear, visibility 0.3s 0.1s linear;
          }
        }
      }
    }
  }
}
*/
/*
.accordion {
  &.comn_flex_card_accordion {
    background-color: transparent;
    padding: 0;
    border-radius: 0;

    .accordion-item {
      background-color: $color__black;
      border: none;
      border-radius: 0;
      margin-top: 12px;
      overflow: hidden;
      box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);

      &:first-child {
        margin-top: 0;
      }

      .accordion-header {
        .accordion-button {
          display: flex;
          align-items: center;
          column-gap: 20px;

          border: none;
          border-radius: 0;
          box-shadow: none;
          padding: 15px;
          transition: all 0.3s linear;
          background: linear-gradient(178.7deg, #ffffff 1.11%, #8e8e8e 137.21%);

          &::after {
            margin-left: auto;
            background-image: url(../images/icons/arrow_down_black.svg);
            background-size: 12px 8px;
            background-position: center;
          }

          .icon-holder {
            width: 42px;
          }

          .heading_text {
            color: $color__black;
            font-size: 20px;
            @media (min-width: 768px) {
              font-size: 22px;
            }
          }

          &:not(.collapsed) {
            background-image: none;
            background-color: $color__black;
            &::after {
              background-image: url(../images/icons/arrow_down_white.svg);
            }
            .heading_text {
              color: $color__white;
            }
          }
        }
      }

      .accordion-collapse {
        background: #fff;
      }

      .accordion-body {
        padding: 0;
        color: #333;

        .accordion-body-content {
          .dsc_content {
            padding: 0 15px 30px;
            width: 100%;
            background-color: $color__black;

            .dsc_text_white {
              width: 100%;

              > *:last-child {
                margin-bottom: 0;
              }
              h3,
              h4,
              h5,
              h6 {
                font-size: 18px;
                line-height: 1.4;
                color: $color__white;
                font-weight: 400;
                margin-bottom: 20px;
                @media (min-width: 768px) {
                  font-size: 20px;
                  margin-bottom: 30px;
                }
                @media (min-width: 1800px) {
                  font-size: 24px;
                  margin-bottom: 30px;
                }
              }
              ul {
                list-style: none;
                margin: 0 0 20px;
                padding: 0;
                li {
                  position: relative;
                  padding-left: 30px;
                  margin-top: 8px;

                  @media (min-width: 1800px) {
                    padding-left: 40px;
                  }
                  &:first-child {
                    margin-top: 0;
                  }
                  &:before {
                    content: "";
                    background-image: url("../images/icons/check-white.svg");
                    background-size: 16px 12px;
                    background-position: left top;
                    background-repeat: no-repeat;
                    width: 16px;
                    height: 12px;
                    position: absolute;
                    left: 0;
                    top: 4px;
                    @media (min-width: 1800px) {
                      background-size: 20px 16px;
                      width: 20px;
                      height: 16px;
                    }
                  }
                  p {
                    margin: 0 0 3px;
                    color: $color__white;
                    font-size: 16px;
                    line-height: 1.4;
                    font-weight: 400;

                    @media (min-width: 1800px) {
                      font-size: 20px;
                      margin: 0 0 6px;
                    }
                  }
                  > *:last-child {
                    margin-bottom: 0;
                  }
                }
              }
            }
            .link_holder {
              width: 100%;
              margin-top: 25px;
              .link_text {
                font-size: 18px;
                @media (min-width: 1800px) {
                  font-size: 22px;
                }
              }
            }
          }
        }
      }
    }
  }
}
*/
.total_link {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.comn_splide__arrows.splide__arrows {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: 108px;
  height: 34px;
  background-color: transparent;
  z-index: 1;
  left: 0;
}
@media (min-width: 992px) {
  .comn_splide__arrows.splide__arrows {
    bottom: -1px;
  }
}
.comn_splide__arrows.splide__arrows .splide__arrow {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  top: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  width: 54px;
  height: 34px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
@media (min-width: 1200px) {
  .comn_splide__arrows.splide__arrows .splide__arrow {
    opacity: 0.5;
  }
}
.comn_splide__arrows.splide__arrows .splide__arrow:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}
.comn_splide__arrows.splide__arrows .splide__arrow:hover {
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .comn_splide__arrows.splide__arrows .splide__arrow:hover {
    opacity: 1;
  }
}
.comn_splide__arrows.splide__arrows .splide__arrow:hover .splide__arrow--prev::before {
  background: url("../images/icons/slider-prev-arrow.svg") no-repeat center center;
}
.comn_splide__arrows.splide__arrows .splide__arrow:hover .splide__arrow--next::before {
  background: url("../images/icons/slider-next-arrow.svg") no-repeat center center;
}
.comn_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 0;
}
.comn_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
  right: 0;
}
.comn_splide__arrows.splide__arrows .splide__arrow svg {
  display: none;
}
.comn_splide__arrows.splide__arrows .splide__arrow--prev::before {
  content: "";
  background: url("../images/icons/slider-prev-arrow.svg") no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 24px;
  display: inline-block;
}
.comn_splide__arrows.splide__arrows .splide__arrow--next::before {
  content: "";
  background: url("../images/icons/slider-next-arrow.svg") no-repeat center center;
  background-size: contain;
  width: 37px;
  height: 24px;
  display: inline-block;
}

.bottom_arrow_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.comn_boxstyle_splide__arrows.splide__arrows {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: 86px;
  height: 42px;
  background-color: transparent;
  z-index: 1;
  left: 0;
}
@media (min-width: 992px) {
  .comn_boxstyle_splide__arrows.splide__arrows {
    bottom: -1px;
  }
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows {
    width: 138px;
    height: 68px;
  }
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  top: 0;
  margin: 0;
  background-color: #f15a29;
  border: none;
  width: 42px;
  height: 42px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows .splide__arrow {
    width: 68px;
    height: 68px;
  }
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow:hover {
  background-color: #bf2f00;
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows .splide__arrow:hover {
    opacity: 1;
  }
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 0;
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
  right: 0;
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow svg {
  display: none;
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow--prev::before {
  content: "";
  background: url("../images/icons/slider-prev-arrow-white.svg") no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 15px;
  display: inline-block;
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows .splide__arrow--prev::before {
    width: 30px;
    height: 24px;
  }
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow--next::before {
  content: "";
  background: url("../images/icons/slider-next-arrow-white.svg") no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 15px;
  display: inline-block;
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows .splide__arrow--next::before {
    width: 30px;
    height: 24px;
  }
}

.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow {
  background-color: #f15a29;
  border: none;
  width: 40px;
  height: 40px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow:disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow:hover {
  background-color: #bf2f00;
}
@media (min-width: 1200px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow:hover {
    opacity: 1;
  }
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 15px;
}
@media (min-width: 768px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
    left: 30px;
  }
}
@media (min-width: 992px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
    left: 50px;
  }
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
  right: 15px;
}
@media (min-width: 768px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
    right: 30px;
  }
}
@media (min-width: 992px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
    right: 50px;
  }
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow svg {
  display: none;
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow--prev::before {
  content: "";
  background: url("../images/icons/slider-prev-arrow-white.svg") no-repeat center center;
  background-size: contain;
  width: 14px;
  height: 8px;
  display: inline-block;
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow--next::before {
  content: "";
  background: url("../images/icons/slider-next-arrow-white.svg") no-repeat center center;
  background-size: contain;
  width: 14px;
  height: 8px;
  display: inline-block;
}

.header_after_sec {
  padding-top: 53px;
}
@media (min-width: 1200px) {
  .header_after_sec {
    padding-top: 68px;
  }
}
@media (min-width: 1800px) {
  .header_after_sec {
    padding-top: 72px;
  }
}

.counter-content-item .counter-content .counter-number {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 400;
  color: #f15a29;
}
@media (min-width: 1800px) {
  .counter-content-item .counter-content .counter-number {
    font-size: 40px;
  }
}
.counter-content-item .counter-content .counter-infoText {
  max-width: 170px;
}
@media (min-width: 992px) {
  .counter-content-item .counter-content .counter-infoText {
    max-width: none;
  }
}

.comn_quote_content_box {
  width: 100%;
  border-width: 2px 2px 2px 11px;
  border-style: solid;
  border-color: #000000;
  padding: 20px 20px 20px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .comn_quote_content_box {
    padding: 25px 30px 25px;
  }
}
@media (min-width: 1200px) {
  .comn_quote_content_box {
    padding: 27px 30px 33px;
  }
}
.comn_quote_content_box .comn_quote_content {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (min-width: 576px) {
  .comn_quote_content_box .comn_quote_content {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media (min-width: 768px) {
  .comn_quote_content_box .comn_quote_content {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (min-width: 1400px) {
  .comn_quote_content_box .comn_quote_content {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}
.comn_quote_content_box .comn_quote_content .quote_icon_holder {
  width: 30px;
}
@media (min-width: 768px) {
  .comn_quote_content_box .comn_quote_content .quote_icon_holder {
    width: 50px;
  }
}
@media (min-width: 1200px) {
  .comn_quote_content_box .comn_quote_content .quote_icon_holder {
    width: 67px;
  }
}
@media (min-width: 1400px) {
  .comn_quote_content_box .comn_quote_content .quote_icon_holder {
    width: 77px;
  }
}
.comn_quote_content_box .comn_quote_content .quote_icon_holder img {
  width: 100%;
}
.comn_quote_content_box .comn_quote_content .dsc_text > *:last-child {
  margin-bottom: 0;
}
.comn_quote_content_box .comn_quote_content .dsc_text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .comn_quote_content_box .comn_quote_content .dsc_text p {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .comn_quote_content_box .comn_quote_content .dsc_text p {
    font-size: 24px;
  }
}
@media (min-width: 1800px) {
  .comn_quote_content_box .comn_quote_content .dsc_text p {
    font-size: 28px;
  }
}
.comn_quote_content_box .comn_quote_content .dsc_text .author_name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #f15a29;
  margin-top: 16px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .comn_quote_content_box .comn_quote_content .dsc_text .author_name {
    font-size: 20px;
    margin-top: 25px;
  }
}
@media (min-width: 1200px) {
  .comn_quote_content_box .comn_quote_content .dsc_text .author_name {
    font-size: 24px;
    margin-top: 32px;
  }
}
@media (min-width: 1800px) {
  .comn_quote_content_box .comn_quote_content .dsc_text .author_name {
    font-size: 28px;
  }
}
.comn_quote_content_box .comn_quote_content .dsc_text .author_name .d_text {
  color: #000000;
  font-weight: 500;
  display: inline-block;
}

.reveal {
  visibility: visible;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reveal_li li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.text_18_box {
  color: #383e45;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .text_18_box {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .text_18_box {
    font-size: 22px;
  }
}
.text_18_box p {
  font-size: 16px;
  color: #383e45;
}
@media (min-width: 1200px) {
  .text_18_box p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .text_18_box p {
    font-size: 22px;
  }
}
.text_18_box > *:last-child {
  margin-bottom: 0;
}
.text_18_box.color_white {
  color: #ffffff;
}
.text_18_box.color_white p {
  color: #ffffff;
}
.text_18_box.color_black {
  color: #000000;
}
.text_18_box.color_black p {
  color: #000000;
}

.comn_sec_pt, .comn_sec_py {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .comn_sec_pt, .comn_sec_py {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  .comn_sec_pt, .comn_sec_py {
    padding-top: 75px;
  }
}

.comn_sec_pb, .comn_sec_py {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .comn_sec_pb, .comn_sec_py {
    padding-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .comn_sec_pb, .comn_sec_py {
    padding-bottom: 75px;
  }
}

.nc_left_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .nc_left_col {
    width: 32%;
  }
}
@media (min-width: 992px) {
  .nc_left_col {
    width: 24.5%;
  }
}

.nc_right_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .nc_right_col {
    width: 68%;
  }
}
@media (min-width: 992px) {
  .nc_right_col {
    width: 75.5%;
  }
}

.splide__custom__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.splide__custom__pagination .splide__pagination__page {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  opacity: 1;
  margin: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.splide__custom__pagination .splide__pagination__page::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #97D6DF;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.splide__custom__pagination .splide__pagination__page.is-active {
  border-color: #97D6DF;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 4px;
}
@media screen and (min-width: 576px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .wpcf7-not-valid-tip {
    font-size: 16px;
    line-height: 1.5;
  }
}
.wpcf7-not-valid-tip:not(:first-of-type) {
  display: none !important;
}

.wpcf7-spinner {
  position: absolute;
  margin: 0;
  z-index: 1;
  left: 50%;
  top: 50% !important;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.wpcf7-response-output {
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 576px) {
  .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .wpcf7-response-output {
    font-size: 16px;
    line-height: 1.5;
  }
}
.wpcf7-response-output:empty {
  display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 2px solid #46b450 !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: 2px solid #f15a29 !important;
}

.wpcf7 form .wpcf7-response-output {
  border: none !important;
}

:root {
  --nav-height: 80px;
}

::-moz-selection {
  background: #f15a29;
  color: #fff;
}

::selection {
  background: #f15a29;
  color: #fff;
}

* {
  outline: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
.customScrollBar {
  scrollbar-face-color: rgba(0, 0, 0, 0.3);
  scrollbar-shadow-color: rgba(0, 0, 0, 0.1);
  scrollbar-highlight-color: rgba(0, 0, 0, 0.1);
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
}
.customScrollBar::-webkit-scrollbar {
  width: 7px;
}
.customScrollBar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.customScrollBar::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.customScrollBar::-webkit-scrollbar-button {
  background-color: rgba(0, 0, 0, 0.1);
}
.customScrollBar.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.customScrollBar.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

.customScrollBar-light {
  scrollbar-face-color: rgba(255, 255, 255, 0.3);
  scrollbar-shadow-color: rgba(255, 255, 255, 0.1);
  scrollbar-highlight-color: rgba(255, 255, 255, 0.1);
  scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
}
.customScrollBar-light::-webkit-scrollbar {
  width: 7px;
}
.customScrollBar-light::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.customScrollBar-light::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.customScrollBar-light::-webkit-scrollbar-button {
  background-color: rgba(255, 255, 255, 0.1);
}
.customScrollBar-light.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.customScrollBar-light.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

a {
  color: #f15a29;
}
a:hover {
  color: #bf2f00;
}

img {
  height: auto;
}

.flex01auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 0;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1304px;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1600px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 576px) {
  .container.one_side_full_container {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .container.one_side_full_container {
    max-width: calc(720px + (100vw - 720px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .container.one_side_full_container {
    max-width: calc(960px + (100vw - 960px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .container.one_side_full_container {
    max-width: calc(1160px + (100vw - 1160px) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .container.one_side_full_container {
    max-width: calc(1364px + (100vw - 1379px) / 2);
  }
}
@media screen and (min-width: 1800px) {
  .container.one_side_full_container {
    max-width: calc(1600px + (100vw - 1620px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .container.one_side_full_container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.osfc_left_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .osfc_left_col {
    width: 32%;
  }
}
@media (min-width: 992px) {
  .osfc_left_col {
    width: 23%;
  }
}
@media (min-width: 1200px) {
  .osfc_left_col {
    width: 23%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .osfc_left_col.break_on_md {
    width: 100%;
  }
}

.osfc_right_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .osfc_right_col {
    width: 68%;
  }
}
@media (min-width: 992px) {
  .osfc_right_col {
    width: 77%;
  }
}
@media (min-width: 1200px) {
  .osfc_right_col {
    width: 77%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .osfc_right_col.break_on_md {
    width: 100%;
  }
}

.nc_left_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .nc_left_col {
    width: 32%;
  }
}
@media (min-width: 992px) {
  .nc_left_col {
    width: 24.5%;
  }
}

.nc_right_col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .nc_right_col {
    width: 68%;
  }
}
@media (min-width: 992px) {
  .nc_right_col {
    width: 75.5%;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.text-xs-size {
  font-size: 16px;
  line-height: 24px;
}

.text-sm-size {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 1800px) {
  .text-sm-size {
    font-size: 22px;
    line-height: 1.5;
  }
}

.fs-16px {
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 1800px) {
  .fs-16px {
    font-size: 20px;
  }
}

.color-white {
  color: #ffffff !important;
}

.color-black {
  color: #000000 !important;
}

.color-primary {
  color: #f15a29 !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg_light_fa {
  background-color: #fafafa !important;
}

.bg_light2 {
  background-color: #F7F7F7 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

a {
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
a:hover, a:focus {
  text-decoration: none;
}

.btn:hover {
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}

.btn.focus,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}

body {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Red Hat Text", sans-serif;
  color: #383e45;
  font-weight: 400;
  font-optical-sizing: auto;
}
@media screen and (min-width: 576px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  body {
    font-size: 18px;
    line-height: 1.5;
  }
}
body.lockScroll {
  overflow: hidden;
}

.page-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  -webkit-transition: opacity 250ms linear;
  transition: opacity 250ms linear;
  opacity: 0;
  visibility: hidden;
}
.page-overlay.show {
  z-index: 90;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  visibility: visible;
}
.page-overlay.nav-search-overlay {
  top: 70px;
}

.sec_heading_wrap .heading_dsc_text > *:last-child {
  margin-bottom: 0;
}
.sec_heading_wrap .heading_dsc_text.text-black p {
  color: #000000;
}
.sec_heading_wrap .heading_dsc_text p {
  margin: 0 0 15px;
  color: #383e45;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .sec_heading_wrap .heading_dsc_text p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .sec_heading_wrap .heading_dsc_text p {
    font-size: 22px;
    line-height: 1.5;
  }
}
.sec_heading_wrap .heading_dsc_text p a {
  color: #f15a29;
}
.sec_heading_wrap .heading_dsc_text p a:hover {
  color: #bf2f00;
}

.banner_heading_text {
  font-size: 26px;
  line-height: 1.5217391304;
  color: #000000;
  font-weight: 600;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .banner_heading_text {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .banner_heading_text {
    font-size: 28px;
  }
}
@media screen and (min-width: 992px) {
  .banner_heading_text {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .banner_heading_text {
    font-size: 36px;
  }
}
@media screen and (min-width: 1400px) {
  .banner_heading_text {
    font-size: 46px;
  }
}
@media screen and (min-width: 1800px) {
  .banner_heading_text {
    font-size: 52px;
  }
}
.banner_heading_text span {
  color: #f15a29 !important;
}

.h2_heading_text {
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .h2_heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .h2_heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .h2_heading_text {
    font-size: 30px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1200px) {
  .h2_heading_text {
    font-size: 34px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1400px) {
  .h2_heading_text {
    font-size: 36px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1800px) {
  .h2_heading_text {
    font-size: 44px;
    line-height: 1.22;
  }
}

.h3_heading_text {
  font-size: 19px;
  line-height: 1.4;
  color: #000000;
  font-weight: 400;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .h3_heading_text {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .h3_heading_text {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .h3_heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .h3_heading_text {
    font-size: 30px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1400px) {
  .h3_heading_text {
    font-size: 32px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1800px) {
  .h3_heading_text {
    font-size: 40px;
    line-height: 1.22;
  }
}

.h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .h4_heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
    font-size: 30px;
    line-height: 1.3;
  }
}

.heading_text_2 {
  font-size: 22px;
  line-height: 1.4;
  color: #000000;
  font-weight: 500;
  font-family: "Red Hat Text", sans-serif;
}
@media screen and (min-width: 576px) {
  .heading_text_2 {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .heading_text_2 {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .heading_text_2 {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .heading_text_2 {
    font-size: 28px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1400px) {
  .heading_text_2 {
    font-size: 28px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1800px) {
  .heading_text_2 {
    font-size: 36px;
    line-height: 1.22;
  }
}

.fs-18px {
  font-size: 18px;
}

.custom-radio label {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
}

.custom-radio label .circle-box {
  display: inline-block;
  width: 22px;
  height: 22px;
  left: 0;
  border: none;
  border-radius: 100%;
  border: solid 1px #414244;
  position: relative;
}

.custom-radio input[type=radio] {
  opacity: 0;
  position: absolute;
}

.custom-radio input[type=radio]:checked + label .circle-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #f15a29;
}

.custom-radio input[type=radio]:checked + label .circle-box {
  border: 1px solid #f15a29;
}

.custom-radio .labelText {
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.custom-radio input[type=radio]:checked + label .labelText {
  color: #000000;
}

.custom-checkbox label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.custom-checkbox label .square-box {
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  border: none;
  border-radius: 5px;
  border: 1px solid #000000;
  position: relative;
}

.custom-checkbox label .labelText {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: #000000;
  margin-left: 8px;
}

.custom-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.custom-checkbox input[type=checkbox]:checked + label .square-box::after {
  content: "";
  color: #ffffff;
  position: absolute;
  left: 3px;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 10px;
  height: 12px;
  border-radius: 100%;
  font-size: 8px;
}

.custom-checkbox input[type=checkbox]:checked + label .square-box {
  border: 1px solid #f15a29;
  background-color: #f15a29;
}

.comn-modal .modal-dialog .modal-content {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
}
.comn-modal .modal-dialog .modal-content .modal-header {
  padding: 40px 40px 0;
  position: relative;
  border-bottom: none;
}
.comn-modal .modal-dialog .modal-content .modal-header .modal-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: #000000;
}
.comn-modal .modal-dialog .modal-content .comn-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  border: none;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  background-color: transparent;
  padding: 5px;
  font-size: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  --bs-btn-close-color: #fff;
  --bs-btn-close-bg: url(../images/close.svg);
  opacity: 1;
}
.comn-modal .modal-dialog .modal-content .comn-modal-close:hover {
  color: #f15a29;
}
@media screen and (max-width: 991px) {
  .comn-modal .modal-dialog .modal-content .comn-modal-close {
    top: 10px;
    right: 10px;
  }
}
.comn-modal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
@media screen and (max-width: 991px) {
  .comn-modal .modal-dialog .modal-content .modal-body {
    padding: 30px 25px;
  }
}
.comn-modal .modal-dialog .modal-content .modal-body .comn-modal-form-content .comn-form-heading {
  margin-bottom: 20px;
}
.comn-modal .modal-dialog .modal-content .modal-body .comn-modal-form-content .comn-form-heading .headingText {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #000000;
}

@media screen and (max-width: 575px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.default-general-content > *:last-child {
  margin-bottom: 0 !important;
}
.default-general-content h2:first-child,
.default-general-content h3:first-child,
.default-general-content h4:first-child,
.default-general-content h5:first-child,
.default-general-content h6:first-child {
  margin-top: 0;
}
.default-general-content h2,
.default-general-content h3,
.default-general-content h4,
.default-general-content h5,
.default-general-content h6 {
  margin-bottom: 10px;
  margin-top: 25px;
  color: #000000;
}
@media (min-width: 768px) {
  .default-general-content h2,
  .default-general-content h3,
  .default-general-content h4,
  .default-general-content h5,
  .default-general-content h6 {
    margin-bottom: 15px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content h2,
  .default-general-content h3,
  .default-general-content h4,
  .default-general-content h5,
  .default-general-content h6 {
    margin-bottom: 15px;
    margin-top: 35px;
  }
}
.default-general-content h2 span,
.default-general-content h3 span,
.default-general-content h4 span,
.default-general-content h5 span,
.default-general-content h6 span {
  color: #f15a29;
}
.default-general-content ol {
  margin-bottom: 25px;
  padding-left: 22px;
}
@media (min-width: 768px) {
  .default-general-content ol {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content ol {
    margin-bottom: 35px;
  }
}
.default-general-content ol:last-child {
  margin-bottom: 0;
}
.default-general-content ol li {
  margin-bottom: 8px;
  padding: 0;
  position: relative;
  z-index: 0;
  font-size: 16px;
  line-height: 1.78;
  color: #000000;
}
@media (min-width: 992px) {
  .default-general-content ol li {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .default-general-content ol li {
    font-size: 22px;
  }
}
.default-general-content ol li:last-child {
  margin-bottom: 0;
}
.default-general-content ul {
  margin-bottom: 25px;
  list-style: none;
}
@media (min-width: 768px) {
  .default-general-content ul {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content ul {
    margin-bottom: 35px;
  }
}
.default-general-content ul:last-child {
  margin-bottom: 0;
}
.default-general-content ul li {
  margin-bottom: 8px;
  position: relative;
  z-index: 0;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.78;
  color: #000000;
}
@media (min-width: 992px) {
  .default-general-content ul li {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .default-general-content ul li {
    font-size: 22px;
  }
}
.default-general-content ul li:last-child {
  margin-bottom: 0;
}
.default-general-content ul li::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #000000;
  top: 10px;
}
.default-general-content ul li ul {
  padding-left: 20px;
}
.default-general-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.78;
  color: #000000;
}
@media (min-width: 992px) {
  .default-general-content p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .default-general-content p {
    font-size: 22px;
  }
}
.default-general-content p strong {
  font-weight: 600;
}
.default-general-content p a {
  color: #f15a29;
  text-decoration: none;
}
.default-general-content p a:hover {
  color: #000000;
  text-decoration: none;
}
.default-general-content h2 {
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .default-general-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .default-general-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .default-general-content h2 {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .default-general-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .default-general-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .default-general-content h2 {
    font-size: 30px;
    line-height: 1.3;
  }
}
.default-general-content h2 span {
  color: #f15a29;
}
.default-general-content h3 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .default-general-content h3 {
    margin-bottom: 10px;
    margin-top: 35px;
  }
}
.default-general-content h5 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .default-general-content h5 {
    margin-bottom: 5px;
    margin-top: 18px;
  }
}
.default-general-content blockquote {
  padding: 20px 25px;
  margin-bottom: 25px;
  margin-top: 25px;
  background: #eff1f3;
}
@media (min-width: 768px) {
  .default-general-content blockquote {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content blockquote {
    margin-bottom: 35px;
    margin-top: 35px;
  }
}
.default-general-content blockquote p {
  margin: 0;
  font-weight: 400;
  font-style: Italic;
  font-size: 18px;
  line-height: 1.64;
  color: #000000;
}
@media (min-width: 992px) {
  .default-general-content blockquote p {
    font-size: 20px;
  }
}
@media (min-width: 1800px) {
  .default-general-content blockquote p {
    font-size: 24px;
  }
}
.default-general-content blockquote p + p {
  margin-top: 15px;
}
.default-general-content figure {
  margin-bottom: 25px;
  padding: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .default-general-content figure {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .default-general-content figure {
    margin-bottom: 35px;
  }
}
.default-general-content figure img {
  max-width: 100%;
  background-color: #ffffff;
}
.default-general-content figure.alignwide {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.default-general-content .alignleft {
  margin-right: 22px;
  float: left;
  max-width: 400px;
  margin-bottom: 0;
  max-width: 400px;
}
.default-general-content .alignleft:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .default-general-content .alignleft {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content .alignleft {
    max-width: inherit;
    float: none !important;
    margin-left: 0;
  }
}
.default-general-content .alignright {
  margin-left: 22px;
  float: left;
  max-width: 400px;
  margin-bottom: 0;
  max-width: 400px;
}
.default-general-content .alignright:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .default-general-content .alignright {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content .alignright {
    max-width: inherit;
    float: none !important;
    margin-left: 0;
  }
}

.page404 {
  padding: 30px 0 80px;
}
@media (max-width: 991.5px) {
  .page404 {
    padding-bottom: 70px;
  }
}
.page404 .content404 {
  padding: 35px 40px 42px;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid #f15a29;
  border-radius: 12px;
  background-color: #383e45;
}
@media (max-width: 575px) {
  .page404 .content404 {
    padding: 21px 25px 27px;
  }
}
.page404 .content404 .dsc-content-wrap .headingText {
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 576px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 30px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1200px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 34px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1400px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 36px;
    line-height: 1.22;
  }
}
@media screen and (min-width: 1800px) {
  .page404 .content404 .dsc-content-wrap .headingText {
    font-size: 44px;
    line-height: 1.22;
  }
}
.page404 .content404 .dsc-content-wrap .dscText p {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}
.page404 .content404 .btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .page404 .content404 .btn {
    margin-top: 0;
  }
}

.nodata-content-wrap .nodata-content .nodata-img-holder {
  width: 220px;
  height: 220px;
  background-color: rgba(27, 31, 73, 0.3);
  border-radius: 100%;
  padding: 50px;
}
.nodata-content-wrap .nodata-content .nodata-img-holder img {
  width: 100%;
}
.nodata-content-wrap .nodata-content .nodata-content-holder {
  padding-left: 50px;
}
.nodata-content-wrap .nodata-content .nodata-content-holder .headingText {
  color: #ffffff;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 400;
}
.nodata-content-wrap .nodata-content .nodata-content-holder .text1 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}
.nodata-content-wrap .nodata-content .nodata-content-holder p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  margin: 0;
}

.link_text {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.5px;
  text-decoration: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-underline-offset: 4px;
}
@media (min-width: 1800px) {
  .link_text {
    font-size: 18px;
    line-height: 22px;
  }
}
.link_text:hover {
  text-decoration: underline;
}

.more_link_text {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0px;
  text-decoration: none;
  color: #f15a29;
  padding-right: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1800px) {
  .more_link_text {
    font-size: 17px;
  }
}
.more_link_text > .arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid #f15a29;
  border-bottom: 2px solid #f15a29;
  position: relative;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  will-change: transform;
  -webkit-transform-origin: 2px center;
          transform-origin: 2px center;
  position: absolute;
  right: -10px;
  top: 8px;
}
@media (min-width: 1800px) {
  .more_link_text > .arrow {
    top: 10px;
  }
}
.more_link_text > .arrow:before {
  display: block;
  background-color: #f15a29;
  width: 5px;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  height: 1.5px;
  position: absolute;
  opacity: 0;
  bottom: -1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  right: 0;
  will-change: transform;
}
.more_link_text:hover {
  color: #f15a29;
  padding-right: 17px;
}
.more_link_text:hover > .arrow {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-color: #f15a29;
  right: 2px;
}
.more_link_text:hover > .arrow:before {
  opacity: 1;
  width: 10px;
}

@keyframes moveArrow {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(5px) scale(0.9);
            transform: translateX(5px) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-5px) scale(0.9);
            transform: translateX(-5px) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1);
  }
}
.read_more_link {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0px;
  text-decoration: none;
  color: #f15a29;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1800px) {
  .read_more_link {
    font-size: 17px;
  }
}
.read_more_link .read_more_link_text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: #f15a29;
}
.read_more_link .read_more_link_arrow {
  width: 24px;
  height: 12px;
  background-image: url("../images/icons/slider-next-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 15px;
  position: relative;
  top: 1px;
}
.read_more_link:hover .read_more_link_arrow {
  -webkit-animation-name: moveArrow;
          animation-name: moveArrow;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.comn_dsc_text_white > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_text_white ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.comn_dsc_text_white ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .comn_dsc_text_white ul li {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .comn_dsc_text_white ul li {
    margin-top: 40px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text_white ul li {
    padding-left: 40px;
  }
}
.comn_dsc_text_white ul li:first-child {
  margin-top: 0;
}
.comn_dsc_text_white ul li:before {
  content: "";
  background-image: url("../images/icons/check-orange.svg");
  background-size: 16px 12px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 4px;
}
@media (min-width: 1800px) {
  .comn_dsc_text_white ul li:before {
    background-size: 20px 16px;
    width: 20px;
    height: 16px;
  }
}
.comn_dsc_text_white ul li p {
  margin: 0 0 3px;
  color: #d9d9d9;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 768px) {
  .comn_dsc_text_white ul li p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text_white ul li p {
    font-size: 22px;
    margin: 0 0 6px;
  }
}
.comn_dsc_text_white ul li > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_text_white > p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.comn_dsc_text_white > p strong {
  font-weight: 700;
  color: #f15a29;
}
@media (min-width: 768px) {
  .comn_dsc_text_white > p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text_white > p {
    font-size: 22px;
  }
}

.comn_dsc_text > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_text ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.comn_dsc_text ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 8px;
}
.comn_dsc_text ul li:first-child {
  margin-top: 0;
}
.comn_dsc_text ul li:before {
  content: "";
  background-image: url("../images/icons/check-orange.svg");
  background-size: 16px 12px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 4px;
}
.comn_dsc_text ul li p {
  margin: 0 0 3px;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 768px) {
  .comn_dsc_text ul li p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text ul li p {
    font-size: 22px;
  }
}
.comn_dsc_text ul li > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_text > p {
  color: #383e45;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 768px) {
  .comn_dsc_text > p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_text > p {
    font-size: 22px;
  }
}
.comn_dsc_text > p strong {
  font-weight: 700;
  color: #f15a29;
}

.comn_dsc_content > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_content.text_color_white ul li:before {
  content: "";
  background-image: url("../images/icons/circle-check-orange.svg");
}
.comn_dsc_content.text_color_white ul li p {
  color: #ffffff;
}
.comn_dsc_content.text_color_white > p {
  color: #ffffff;
}
.comn_dsc_content ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.comn_dsc_content ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .comn_dsc_content ul li {
    margin-top: 28px;
  }
}
.comn_dsc_content ul li:first-child {
  margin-top: 0;
}
.comn_dsc_content ul li:before {
  content: "";
  background-image: url("../images/icons/circle-check-black.svg");
  background-size: 18px 18px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}
.comn_dsc_content ul li p {
  margin: 0 0 3px;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .comn_dsc_content ul li p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_content ul li p {
    font-size: 22px;
  }
}
.comn_dsc_content ul li > *:last-child {
  margin-bottom: 0;
}
.comn_dsc_content > p {
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .comn_dsc_content > p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .comn_dsc_content > p {
    font-size: 22px;
  }
}
.comn_dsc_content > p strong {
  font-weight: 700;
  color: #f15a29;
}

.tag-mb-20px {
  margin-bottom: 20px;
}

.tag_white {
  background-color: #ffffff;
  border-radius: 3px;
  padding: 2px 12px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
@media (min-width: 1800px) {
  .tag_white {
    font-size: 18px;
    padding: 4px 14px;
  }
}

.tag_lightGray {
  background-color: #F5F5F5;
  border-radius: 3px;
  padding: 2px 12px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
@media (min-width: 1800px) {
  .tag_lightGray {
    font-size: 18px;
    padding: 4px 14px;
  }
}

.flex_card_group_total {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  padding-bottom: 7px;
}
.flex_card_group_total > .flex_card_fixed {
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  width: 19.5%;
  height: 469px;
  padding-top: 20px;
}
@media (min-width: 1800px) {
  .flex_card_group_total > .flex_card_fixed {
    height: 555px;
  }
}
.flex_card_group_total > .flex_card_fixed .flex_card_fixed_body {
  background-color: #ffffff;
}
.flex_card_group_total > .flex_card_fixed .card_top_content {
  padding: 28px 25px 18px 28px;
}
.flex_card_group_total > .flex_card_fixed .card_top_content .icon-holder {
  width: 53px;
  height: 53px;
}
.flex_card_group_total > .flex_card_fixed .card_top_content .icon-holder img {
  width: 100%;
  height: 100%;
}
.flex_card_group_total > .flex_card_fixed .card_top_content .heading_text {
  font-size: 22px;
  margin-top: 17px;
  color: #000000;
}
@media (min-width: 1800px) {
  .flex_card_group_total > .flex_card_fixed .card_top_content .heading_text {
    font-size: 26px;
  }
}
.flex_card_group_total > .flex_card_fixed .card_top_content .comn_dsc_text {
  margin-top: 15px;
}
.flex_card_group_total > .flex_card_fixed .card_graphic_img_holder {
  width: 100%;
  padding: 0 25px 0 0;
}
.flex_card_group_total > .flex_card_fixed .card_graphic_img_holder.applications_graphic_img_holder {
  padding: 0 20px 0;
}
.flex_card_group_total > .flex_card_fixed .card_graphic_img_holder.applications_graphic_img_holder .card_graphic_img {
  height: 180px;
}
@media (min-width: 1800px) {
  .flex_card_group_total > .flex_card_fixed .card_graphic_img_holder.applications_graphic_img_holder .card_graphic_img {
    height: 230px;
  }
}
.flex_card_group_total > .flex_card_fixed .card_graphic_img_holder .card_graphic_img {
  width: auto;
  height: 199px;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1800px) {
  .flex_card_group_total > .flex_card_fixed .card_graphic_img_holder .card_graphic_img {
    height: 250px;
  }
}
.flex_card_group_total > .flex_card_group {
  width: 100%;
}

.flex_card_group {
  padding: 0;
  margin: 0;
  position: relative;
  height: 469px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  width: 100%;
}
@media (min-width: 1800px) {
  .flex_card_group {
    height: 555px;
  }
}
.flex_card_group > .flex_card {
  background-color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
          box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.flex_card_group > .flex_card .card_top_content {
  padding: 30px 28px 25px;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: opacity 0.4s 0s linear, -webkit-transform 0.4s 0.2s linear;
  transition: opacity 0.4s 0s linear, -webkit-transform 0.4s 0.2s linear;
  transition: transform 0.4s 0.2s linear, opacity 0.4s 0s linear;
  transition: transform 0.4s 0.2s linear, opacity 0.4s 0s linear, -webkit-transform 0.4s 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 1400px) {
  .flex_card_group > .flex_card .card_top_content {
    padding: 28px 25px 18px 28px;
  }
}
.flex_card_group > .flex_card .card_top_content .icon-holder {
  width: 53px;
  height: 53px;
}
.flex_card_group > .flex_card .card_top_content .icon-holder img {
  width: 100%;
  height: 1005;
}
.flex_card_group > .flex_card .card_top_content .heading_text {
  font-size: 22px;
  margin-top: 17px;
  color: #000000;
}
@media (min-width: 1800px) {
  .flex_card_group > .flex_card .card_top_content .heading_text {
    font-size: 26px;
  }
}
.flex_card_group > .flex_card .card_top_content_onhover {
  padding: 25px 20px 20px 26px;
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: auto;
  right: 0;
  width: 400px;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  visibility: hidden;
}
.flex_card_group > .flex_card .card_top_content_onhover .inner-box {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.flex_card_group > .flex_card .card_top_content_onhover .icon-holder {
  width: 53px;
  height: 53px;
}
.flex_card_group > .flex_card .card_top_content_onhover .icon-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.flex_card_group > .flex_card .card_top_content_onhover .heading_text {
  font-size: 22px;
  color: #000000;
  margin-bottom: 10px;
}
@media (min-width: 1800px) {
  .flex_card_group > .flex_card .card_top_content_onhover .heading_text {
    font-size: 26px;
  }
}
.flex_card_group > .flex_card .card_top_content_onhover .heading_text span {
  color: #f15a29;
}
.flex_card_group > .flex_card .card_top_content_onhover .link_text {
  font-size: 16px;
}
@media (min-width: 1800px) {
  .flex_card_group > .flex_card .card_top_content_onhover .link_text {
    font-size: 20px;
  }
}
.flex_card_group > .flex_card .card_side_img_holder {
  width: calc(100% - 28px);
  height: 204px;
  margin-left: auto;
  -webkit-transition: width 0.5s 0.1s linear;
  transition: width 0.5s 0.1s linear;
  position: relative;
}
@media (min-width: 1400px) {
  .flex_card_group > .flex_card .card_side_img_holder {
    height: 255px;
    width: calc(100% - 35px);
  }
}
@media (min-width: 1800px) {
  .flex_card_group > .flex_card .card_side_img_holder {
    height: 300px;
  }
}
.flex_card_group > .flex_card .card_side_img_holder .card_side_img {
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 100%;
  border-top-left-radius: 6px;
  overflow: hidden;
  -webkit-transition: background-position 0.3s 0.2s linear;
  transition: background-position 0.3s 0.2s linear;
}
.flex_card_group > .flex_card.flex_card_is_hoverable {
  background: linear-gradient(186.98deg, #FFFFFF 22.04%, #8E8E8E 98.17%);
}
.flex_card_group > .flex_card.flex_card_is_hoverable.bg-white {
  background: #ffffff;
}
.flex_card_group > .flex_card.flex_card_is_hoverable:hover, .flex_card_group > .flex_card.flex_card_is_hoverable.is_hovered {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .flex_card_group > .flex_card.flex_card_is_hoverable:hover, .flex_card_group > .flex_card.flex_card_is_hoverable.is_hovered {
    -webkit-box-flex: 4;
        -ms-flex-positive: 4;
            flex-grow: 4;
  }
}
@media screen and (min-width: 992px) {
  .flex_card_group > .flex_card.flex_card_is_hoverable:hover, .flex_card_group > .flex_card.flex_card_is_hoverable.is_hovered {
    -webkit-box-flex: 2.1;
        -ms-flex-positive: 2.1;
            flex-grow: 2.1;
  }
}
.flex_card_group > .flex_card.flex_card_is_hoverable:hover .card_side_img_holder, .flex_card_group > .flex_card.flex_card_is_hoverable.is_hovered .card_side_img_holder {
  width: calc(100% - 100px);
  -webkit-transition: width 0.3s 0.1s linear;
  transition: width 0.3s 0.1s linear;
}
.flex_card_group > .flex_card.flex_card_is_hoverable:hover .card_side_img_holder .card_side_img, .flex_card_group > .flex_card.flex_card_is_hoverable.is_hovered .card_side_img_holder .card_side_img {
  background-position: top right;
  background-size: auto 100%;
  -webkit-transition: background-position 0.5s 0s linear;
  transition: background-position 0.5s 0s linear;
}
.flex_card_group > .flex_card.flex_card_is_hoverable:hover .card_top_content, .flex_card_group > .flex_card.flex_card_is_hoverable.is_hovered .card_top_content {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  opacity: 0;
  z-index: 0;
}
.flex_card_group > .flex_card.flex_card_is_hoverable:hover .card_top_content_onhover, .flex_card_group > .flex_card.flex_card_is_hoverable.is_hovered .card_top_content_onhover {
  width: 100%;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  -webkit-transition: opacity 0.3s linear 0.4s, visibility 0.3s linear 0.3s, width 0.3s linear 0s, -webkit-transform 0.3s linear 0.4s;
  transition: opacity 0.3s linear 0.4s, visibility 0.3s linear 0.3s, width 0.3s linear 0s, -webkit-transform 0.3s linear 0.4s;
  transition: transform 0.3s linear 0.4s, opacity 0.3s linear 0.4s, visibility 0.3s linear 0.3s, width 0.3s linear 0s;
  transition: transform 0.3s linear 0.4s, opacity 0.3s linear 0.4s, visibility 0.3s linear 0.3s, width 0.3s linear 0s, -webkit-transform 0.3s linear 0.4s;
}

.accordion.card-accordion {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
.accordion.card-accordion .accordion-item {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  margin-top: 12px;
  overflow: hidden;
  -webkit-box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
          box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
}
.accordion.card-accordion .accordion-item:first-child {
  margin-top: 0;
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 15px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: linear-gradient(178.7deg, #ffffff 1.11%, #8e8e8e 137.21%);
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button::after {
  margin-left: auto;
  background-image: url(../images/icons/arrow_down_black.svg);
  background-size: 12px 8px;
  background-position: center;
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button .icon-holder {
  width: 42px;
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button .heading_text {
  color: #000000;
  font-size: 18px;
}
.accordion.card-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-image: none;
  background-color: #ffffff;
}
.accordion.card-accordion .accordion-item .accordion-collapse {
  background: #fff;
}
.accordion.card-accordion .accordion-item .accordion-body {
  padding: 0;
  color: #333;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .dscText_content {
  padding: 0 15px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .link_text {
  font-size: 16px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap {
  width: calc(100% - 15px);
  margin-left: auto;
  margin-top: 40px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap.connect_graphic_img {
  width: 100%;
  max-width: 330px;
  margin-right: auto;
  margin-left: 0;
  margin-top: 20px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap.connect_graphic_img .ratio img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap.applications_graphic_img {
  width: 100%;
  max-width: 330px;
  margin-right: auto;
  margin-left: 0;
  margin-top: 20px;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap.applications_graphic_img .ratio img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap .ratio::before {
  padding-top: 75.1445086705%;
}
.accordion.card-accordion .accordion-item .accordion-body .accordion-body-content .img_wrap .ratio img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}

.comn_flex_card_group {
  padding: 0;
  margin: 0;
  position: relative;
  height: 523px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  border-radius: 7px;
  width: 100%;
}
@media (min-width: 1800px) {
  .comn_flex_card_group {
    height: 555px;
  }
}
.comn_flex_card_group > .comn_flex_card {
  background-color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.comn_flex_card_group > .comn_flex_card .card_content {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.comn_flex_card_group > .comn_flex_card .card_content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(180.05deg, rgba(0, 0, 0, 0) 45.8%, rgba(0, 0, 0, 0.9) 99.96%);
}
.comn_flex_card_group > .comn_flex_card .card_content .bottom_content {
  padding: 20px 20px 30px;
  width: 100%;
  position: relative;
  position: 1;
  visibility: visible;
  -webkit-transition: opacity 0.6s linear 0.3s, visibility 0.6s linear 0.3s;
  transition: opacity 0.6s linear 0.3s, visibility 0.6s linear 0.3s;
}
.comn_flex_card_group > .comn_flex_card .card_content .bottom_content .heading_text {
  font-size: 18px;
  line-height: 1.44;
}
@media screen and (min-width: 576px) {
  .comn_flex_card_group > .comn_flex_card .card_content .bottom_content .heading_text {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 768px) {
  .comn_flex_card_group > .comn_flex_card .card_content .bottom_content .heading_text {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 992px) {
  .comn_flex_card_group > .comn_flex_card .card_content .bottom_content .heading_text {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1200px) {
  .comn_flex_card_group > .comn_flex_card .card_content .bottom_content .heading_text {
    font-size: 20px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1400px) {
  .comn_flex_card_group > .comn_flex_card .card_content .bottom_content .heading_text {
    font-size: 22px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1800px) {
  .comn_flex_card_group > .comn_flex_card .card_content .bottom_content .heading_text {
    font-size: 26px;
    line-height: 1.44;
  }
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover {
  background: linear-gradient(198.83deg, rgba(0, 0, 0, 0) 12.71%, #000000 90.11%), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: opacity 0.3s linear, visibility 0.1s linear, width 0.3s 0.3s linear;
  transition: opacity 0.3s linear, visibility 0.1s linear, width 0.3s 0.3s linear;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content {
  padding: 30px 33px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  margin-top: auto;
  -webkit-transition: opacity 0.3s linear, visibility 0.1s linear;
  transition: opacity 0.3s linear, visibility 0.1s linear;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text {
  line-height: 1.3846153846 !important;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text.mxw_262 {
  max-width: 262px;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text {
  width: 100%;
  margin-top: 10px;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text > *:last-child {
  margin-bottom: 0;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h3,
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h4,
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h5,
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h6 {
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h3,
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h4,
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h5,
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h6 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1800px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h3,
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h4,
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h5,
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text h6 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 8px;
}
@media (min-width: 1800px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li {
    padding-left: 40px;
  }
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li:first-child {
  margin-top: 0;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li:before {
  content: "";
  background-image: url("../images/icons/check-white.svg");
  background-size: 16px 12px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 4px;
}
@media (min-width: 1800px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li:before {
    background-size: 20px 16px;
    width: 20px;
    height: 16px;
  }
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 3px;
  color: #ffffff;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li p {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (min-width: 1800px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li p {
    margin: 0 0 6px;
  }
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text ul li > *:last-child {
  margin-bottom: 0;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 3px;
  color: #ffffff;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text p {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (min-width: 1800px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .dsc_text p {
    margin: 0 0 6px;
  }
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .link_holder {
  width: 100%;
  margin-top: 20px;
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .link_holder .stretched-link {
  width: 54px;
  height: 54px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 575px) {
  .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .link_holder .stretched-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}
.comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .link_holder .stretched-link img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable:hover, .comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable.is_hovered {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
          box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
}
@media screen and (min-width: 768px) {
  .comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable:hover, .comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable.is_hovered {
    -webkit-box-flex: 4;
        -ms-flex-positive: 4;
            flex-grow: 4;
  }
}
@media screen and (min-width: 992px) {
  .comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable:hover, .comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable.is_hovered {
    -webkit-box-flex: 2.1;
        -ms-flex-positive: 2.1;
            flex-grow: 2.1;
  }
}
.comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable:hover .card_content .bottom_content, .comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable.is_hovered .card_content .bottom_content {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0s linear 0s, visibility 0s linear 0s;
  transition: opacity 0s linear 0s, visibility 0s linear 0s;
}
.comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable:hover .card_content_onhover, .comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable.is_hovered .card_content_onhover {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable:hover .card_content_onhover .dsc_content, .comn_flex_card_group > .comn_flex_card.comn_flex_card_is_hoverable.is_hovered .card_content_onhover .dsc_content {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0.3s linear, visibility 0.3s 0.1s linear;
  transition: opacity 0.3s 0.3s linear, visibility 0.3s 0.1s linear;
}

.accordion.comn_flex_card_accordion {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
.accordion.comn_flex_card_accordion .accordion-item {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  margin-top: 12px;
  overflow: hidden;
  -webkit-box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
          box-shadow: -10px -6px 20px 0px rgba(0, 0, 0, 0.11);
}
.accordion.comn_flex_card_accordion .accordion-item:first-child {
  margin-top: 0;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-header .accordion-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 15px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: linear-gradient(178.7deg, #ffffff 1.11%, #8e8e8e 137.21%);
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-header .accordion-button::after {
  margin-left: auto;
  background-image: url(../images/icons/arrow_down_black.svg);
  background-size: 12px 8px;
  background-position: center;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-header .accordion-button .icon-holder {
  width: 42px;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-header .accordion-button .heading_text {
  color: #000000;
  font-size: 20px;
}
@media (min-width: 768px) {
  .accordion.comn_flex_card_accordion .accordion-item .accordion-header .accordion-button .heading_text {
    font-size: 22px;
  }
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(../images/icons/arrow_down_black.svg);
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-collapse {
  background: #fff;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body {
  padding: 0;
  color: #333;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content {
  position: relative;
  padding: 30px 15px 20px;
  width: 100%;
  background-color: #ffffff;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .img__holder {
  margin-bottom: 20px;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .img__holder .ratio {
  --bs-aspect-ratio: 91.9156414763%;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white {
  width: 100%;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white > *:last-child {
  margin-bottom: 0;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h3,
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h4,
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h5,
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h6 {
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h3,
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h4,
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h5,
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h6 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1800px) {
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h3,
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h4,
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h5,
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white h6 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 8px;
}
@media (min-width: 1800px) {
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul li {
    padding-left: 40px;
  }
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul li:first-child {
  margin-top: 0;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul li:before {
  content: "";
  background-image: url("../images/icons/check-white.svg");
  background-size: 16px 12px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 4px;
}
@media (min-width: 1800px) {
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul li:before {
    background-size: 20px 16px;
    width: 20px;
    height: 16px;
  }
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul li p {
  margin: 0 0 3px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 1800px) {
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul li p {
    font-size: 20px;
    margin: 0 0 6px;
  }
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .dsc_text_white ul li > *:last-child {
  margin-bottom: 0;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .link_holder {
  margin-top: 20px;
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .link_holder .stretched-link {
  width: 54px;
  height: 54px;
  border: 1px solid #000000;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 575px) {
  .accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .link_holder .stretched-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}
.accordion.comn_flex_card_accordion .accordion-item .accordion-body .accordion-body-content .dsc_content .link_holder .stretched-link img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}

.total_link {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.comn_splide__arrows.splide__arrows {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: 108px;
  height: 34px;
  background-color: transparent;
  z-index: 1;
  left: 0;
}
@media (min-width: 992px) {
  .comn_splide__arrows.splide__arrows {
    bottom: -1px;
  }
}
.comn_splide__arrows.splide__arrows .splide__arrow {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  top: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  width: 54px;
  height: 34px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
@media (min-width: 1200px) {
  .comn_splide__arrows.splide__arrows .splide__arrow {
    opacity: 0.5;
  }
}
.comn_splide__arrows.splide__arrows .splide__arrow:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}
.comn_splide__arrows.splide__arrows .splide__arrow:hover {
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .comn_splide__arrows.splide__arrows .splide__arrow:hover {
    opacity: 1;
  }
}
.comn_splide__arrows.splide__arrows .splide__arrow:hover .splide__arrow--prev::before {
  background: url("../images/icons/slider-prev-arrow.svg") no-repeat center center;
}
.comn_splide__arrows.splide__arrows .splide__arrow:hover .splide__arrow--next::before {
  background: url("../images/icons/slider-next-arrow.svg") no-repeat center center;
}
.comn_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 0;
}
.comn_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
  right: 0;
}
.comn_splide__arrows.splide__arrows .splide__arrow svg {
  display: none;
}
.comn_splide__arrows.splide__arrows .splide__arrow--prev::before {
  content: "";
  background: url("../images/icons/slider-prev-arrow.svg") no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 24px;
  display: inline-block;
}
.comn_splide__arrows.splide__arrows .splide__arrow--next::before {
  content: "";
  background: url("../images/icons/slider-next-arrow.svg") no-repeat center center;
  background-size: contain;
  width: 37px;
  height: 24px;
  display: inline-block;
}

.bottom_arrow_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.comn_boxstyle_splide__arrows.splide__arrows {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: 86px;
  height: 42px;
  background-color: transparent;
  z-index: 1;
  left: 0;
}
@media (min-width: 992px) {
  .comn_boxstyle_splide__arrows.splide__arrows {
    bottom: -1px;
  }
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows {
    width: 138px;
    height: 68px;
  }
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  top: 0;
  margin: 0;
  background-color: #f15a29;
  border: none;
  width: 42px;
  height: 42px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows .splide__arrow {
    width: 68px;
    height: 68px;
  }
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow:hover {
  background-color: #bf2f00;
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows .splide__arrow:hover {
    opacity: 1;
  }
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 0;
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
  right: 0;
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow svg {
  display: none;
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow--prev::before {
  content: "";
  background: url("../images/icons/slider-prev-arrow-white.svg") no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 15px;
  display: inline-block;
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows .splide__arrow--prev::before {
    width: 30px;
    height: 24px;
  }
}
.comn_boxstyle_splide__arrows.splide__arrows .splide__arrow--next::before {
  content: "";
  background: url("../images/icons/slider-next-arrow-white.svg") no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 15px;
  display: inline-block;
}
@media (min-width: 1200px) {
  .comn_boxstyle_splide__arrows.splide__arrows .splide__arrow--next::before {
    width: 30px;
    height: 24px;
  }
}

.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow {
  background-color: #f15a29;
  border: none;
  width: 40px;
  height: 40px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow:disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow:hover {
  background-color: #bf2f00;
}
@media (min-width: 1200px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow:hover {
    opacity: 1;
  }
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 15px;
}
@media (min-width: 768px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
    left: 30px;
  }
}
@media (min-width: 992px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--prev {
    left: 50px;
  }
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
  right: 15px;
}
@media (min-width: 768px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
    right: 30px;
  }
}
@media (min-width: 992px) {
  .comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow.splide__arrow--next {
    right: 50px;
  }
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow svg {
  display: none;
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow--prev::before {
  content: "";
  background: url("../images/icons/slider-prev-arrow-white.svg") no-repeat center center;
  background-size: contain;
  width: 14px;
  height: 8px;
  display: inline-block;
}
.comn_boxstyle_vcenter_splide__arrows.splide__arrows .splide__arrow--next::before {
  content: "";
  background: url("../images/icons/slider-next-arrow-white.svg") no-repeat center center;
  background-size: contain;
  width: 14px;
  height: 8px;
  display: inline-block;
}

.header_after_sec {
  padding-top: 53px;
}
@media (min-width: 1200px) {
  .header_after_sec {
    padding-top: 68px;
  }
}
@media (min-width: 1800px) {
  .header_after_sec {
    padding-top: 72px;
  }
}

.counter-content-item .counter-content .counter-number {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 400;
  color: #f15a29;
}
@media (min-width: 1800px) {
  .counter-content-item .counter-content .counter-number {
    font-size: 40px;
  }
}
.counter-content-item .counter-content .counter-infoText {
  max-width: 170px;
}
@media (min-width: 992px) {
  .counter-content-item .counter-content .counter-infoText {
    max-width: none;
  }
}

.comn_quote_content_box {
  width: 100%;
  border-width: 2px 2px 2px 11px;
  border-style: solid;
  border-color: #000000;
  padding: 20px 20px 20px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .comn_quote_content_box {
    padding: 25px 30px 25px;
  }
}
@media (min-width: 1200px) {
  .comn_quote_content_box {
    padding: 27px 30px 33px;
  }
}
.comn_quote_content_box .comn_quote_content {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (min-width: 576px) {
  .comn_quote_content_box .comn_quote_content {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media (min-width: 768px) {
  .comn_quote_content_box .comn_quote_content {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (min-width: 1400px) {
  .comn_quote_content_box .comn_quote_content {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}
.comn_quote_content_box .comn_quote_content .quote_icon_holder {
  width: 30px;
}
@media (min-width: 768px) {
  .comn_quote_content_box .comn_quote_content .quote_icon_holder {
    width: 50px;
  }
}
@media (min-width: 1200px) {
  .comn_quote_content_box .comn_quote_content .quote_icon_holder {
    width: 67px;
  }
}
@media (min-width: 1400px) {
  .comn_quote_content_box .comn_quote_content .quote_icon_holder {
    width: 77px;
  }
}
.comn_quote_content_box .comn_quote_content .quote_icon_holder img {
  width: 100%;
}
.comn_quote_content_box .comn_quote_content .dsc_text > *:last-child {
  margin-bottom: 0;
}
.comn_quote_content_box .comn_quote_content .dsc_text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .comn_quote_content_box .comn_quote_content .dsc_text p {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .comn_quote_content_box .comn_quote_content .dsc_text p {
    font-size: 24px;
  }
}
@media (min-width: 1800px) {
  .comn_quote_content_box .comn_quote_content .dsc_text p {
    font-size: 28px;
  }
}
.comn_quote_content_box .comn_quote_content .dsc_text .author_name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #f15a29;
  margin-top: 16px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .comn_quote_content_box .comn_quote_content .dsc_text .author_name {
    font-size: 20px;
    margin-top: 25px;
  }
}
@media (min-width: 1200px) {
  .comn_quote_content_box .comn_quote_content .dsc_text .author_name {
    font-size: 24px;
    margin-top: 32px;
  }
}
@media (min-width: 1800px) {
  .comn_quote_content_box .comn_quote_content .dsc_text .author_name {
    font-size: 28px;
  }
}
.comn_quote_content_box .comn_quote_content .dsc_text .author_name .d_text {
  color: #000000;
  font-weight: 500;
  display: inline-block;
}

.reveal {
  visibility: visible;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reveal_li li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.text_18_box {
  color: #383e45;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .text_18_box {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .text_18_box {
    font-size: 22px;
  }
}
.text_18_box p {
  font-size: 16px;
  color: #383e45;
}
@media (min-width: 1200px) {
  .text_18_box p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .text_18_box p {
    font-size: 22px;
  }
}
.text_18_box > *:last-child {
  margin-bottom: 0;
}
.text_18_box.color_white {
  color: #ffffff;
}
.text_18_box.color_white p {
  color: #ffffff;
}
.text_18_box.color_black {
  color: #000000;
}
.text_18_box.color_black p {
  color: #000000;
}

.comn_sec_pt, .comn_sec_py {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .comn_sec_pt, .comn_sec_py {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  .comn_sec_pt, .comn_sec_py {
    padding-top: 75px;
  }
}

.comn_sec_pb, .comn_sec_py {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .comn_sec_pb, .comn_sec_py {
    padding-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .comn_sec_pb, .comn_sec_py {
    padding-bottom: 75px;
  }
}

.banner {
  padding-top: 190px;
  padding-bottom: 44px;
  color: #ffffff;
  background-color: #000000;
}
.banner__sec {
  overflow: hidden;
  position: relative;
}
.banner .row {
  --bs-gutter-y: 40px;
}
.banner__title {
  font-size: 26px;
  line-height: 1.5217391304;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .banner__title {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .banner__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 992px) {
  .banner__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .banner__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1400px) {
  .banner__title {
    font-size: 46px;
  }
}
@media screen and (min-width: 1800px) {
  .banner__title {
    font-size: 52px;
  }
}
.banner__title span {
  color: #f15a29;
}
.banner p {
  font-size: 16px;
  line-height: 1.4;
  line-height: 1.75 !important;
}
@media screen and (min-width: 576px) {
  .banner p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .banner p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .banner p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .banner p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .banner p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .banner p {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1800px) {
  .banner p {
    font-size: 20px;
  }
}
.banner .btn__holder {
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .banner .btn__holder {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .btn__holder {
    margin-top: 20px;
  }
}
.banner .btn__holder .btn {
  font-size: 16px;
  line-height: 1.44;
  font-weight: 400;
  padding: 19px 20px;
}
@media screen and (min-width: 576px) {
  .banner .btn__holder .btn {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 768px) {
  .banner .btn__holder .btn {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 992px) {
  .banner .btn__holder .btn {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1200px) {
  .banner .btn__holder .btn {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1400px) {
  .banner .btn__holder .btn {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1800px) {
  .banner .btn__holder .btn {
    font-size: 22px;
    line-height: 1.44;
  }
}
.banner .comn__form__holder {
  width: 500px;
  max-width: 100%;
  border: 1px solid;
  border-image-source: linear-gradient(132.43deg, #F15A28 0%, rgba(51, 51, 51, 0) 30.32%, rgba(51, 51, 51, 0) 70%, #F15A28 100%);
}
@media only screen and (min-width: 992px) {
  .banner .comn__form__holder {
    margin-left: auto;
  }
}
.banner .banner__shape {
  position: absolute;
  pointer-events: none;
  width: 526px;
  height: 590px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-filter: blur(120px);
          filter: blur(120px);
}
@media only screen and (max-width: 1199px) {
  .banner .banner__shape {
    width: 400px;
    height: 430px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .banner__shape {
    width: 300px;
    height: 330px;
  }
}
.banner .banner__shape__01 {
  background: linear-gradient(30deg, #F76232 20.3%, #750F0F 71.35%);
  left: auto;
  top: 12%;
  right: -30%;
}
@media only screen and (min-width: 1800px) {
  .banner .banner__shape__01 {
    right: -20%;
    top: 10%;
  }
}
.banner .banner__shape__02 {
  bottom: -5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25%;
  background: linear-gradient(245deg, #F76232 20.3%, #750F0F 71.35%);
}
@media only screen and (max-width: 1199px) {
  .banner .banner__shape__02 {
    bottom: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .banner .banner__shape__02 {
    bottom: 15%;
  }
}
@media only screen and (max-width: 575px) {
  .banner .banner__shape__02 {
    bottom: 18%;
  }
}

.client_logo_slider_row {
  text-align: center;
}
.client_logo_slider_row .client_logo_slider_heading_text {
  font-size: 20px;
  line-height: 1.3;
  line-height: 1.3846153846 !important;
  margin-bottom: 42px;
}
@media screen and (min-width: 576px) {
  .client_logo_slider_row .client_logo_slider_heading_text {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .client_logo_slider_row .client_logo_slider_heading_text {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .client_logo_slider_row .client_logo_slider_heading_text {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .client_logo_slider_row .client_logo_slider_heading_text {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .client_logo_slider_row .client_logo_slider_heading_text {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .client_logo_slider_row .client_logo_slider_heading_text {
    font-size: 30px;
    line-height: 1.3;
  }
}
.client_logo_slider_row .logo_slider .splide__slide .imgHolder {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.solution__sec {
  padding-top: 47px;
  padding-bottom: 53px;
}
.solution__sec .row {
  --bs-gutter-y: 30px;
}
@media only screen and (min-width: 1200px) {
  .solution__sec .nc_left_col {
    width: 26%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .solution__sec .nc_left_col {
    width: 35%;
  }
}
@media only screen and (min-width: 1200px) {
  .solution__sec .nc_right_col {
    width: 74%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .solution__sec .nc_right_col {
    width: 65%;
  }
}
.solution__sec .sec_heading_wrap {
  padding-right: 20px;
}
@media only screen and (min-width: 1400px) {
  .solution__sec .sec_heading_wrap {
    padding-right: 50px;
  }
}
.solution__sec .sec_heading_wrap .h4_heading_text, .solution__sec .sec_heading_wrap .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .solution__sec .sec_heading_wrap .heading_text {
  font-size: 28px;
  line-height: 1.1785714286;
}
@media only screen and (min-width: 1800px) {
  .solution__sec .sec_heading_wrap .h4_heading_text, .solution__sec .sec_heading_wrap .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .heading_text, .comn_flex_card_group > .comn_flex_card .card_content_onhover .dsc_content .solution__sec .sec_heading_wrap .heading_text {
    font-size: 32px;
  }
}
.solution__sec .counter-content-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.solution__sec .counter-content-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 170px;
          flex: 0 1 170px;
}
@media only screen and (min-width: 1800px) {
  .solution__sec .counter-content-item {
    -ms-flex-preferred-size: 190px;
        flex-basis: 190px;
  }
}
@media only screen and (max-width: 1199px) {
  .solution__sec .counter-content-item {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.solution__sec .counter-content .counter-number {
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  color: #f15a29;
  margin-bottom: 4px;
}
@media (min-width: 1800px) {
  .solution__sec .counter-content .counter-number {
    font-size: 40px;
  }
}
.solution__sec .counter-content .counter-infoText {
  max-width: 170px;
}
@media (min-width: 992px) {
  .solution__sec .counter-content .counter-infoText {
    max-width: none;
  }
}

.operation__sec {
  background-color: #F7F7F7;
  padding-block: 44px;
}
.operation__sec .row {
  --bs-gutter-y: 30px;
}
.operation__sec .ratio {
  --bs-aspect-ratio: 71.8196457327%;
  border-radius: 20px;
  background-color: #272525;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .operation__sec .ratio__holder {
    padding-right: 6px;
  }
}
.operation__sec .ratio * {
  top: 50%;
  left: 50%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.operation__sec .sec_heading_wrap {
  margin-bottom: 30px;
}
.operation__sec .content {
  width: calc(100% - 55px);
}
@media only screen and (min-width: 1800px) {
  .operation__sec .content {
    width: calc(100% - 70px);
  }
}
@media only screen and (max-width: 1199px) {
  .operation__sec .content {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .operation__sec .content__holder {
    padding-left: 14px;
  }
}
.operation__sec .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.operation__sec .content ul li {
  font-size: 16px;
  line-height: 1.44;
  color: #333333;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
@media screen and (min-width: 576px) {
  .operation__sec .content ul li {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 768px) {
  .operation__sec .content ul li {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 992px) {
  .operation__sec .content ul li {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1200px) {
  .operation__sec .content ul li {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1400px) {
  .operation__sec .content ul li {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1800px) {
  .operation__sec .content ul li {
    font-size: 22px;
    line-height: 1.44;
  }
}
.operation__sec .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/icons/check-orange.svg") no-repeat center;
}
.operation__sec .content ul li:last-child {
  margin-bottom: 0;
}
.operation__sec .content ul li strong {
  display: block;
  font-weight: 500;
  color: #000000;
  margin-bottom: 5px;
}

.industrie__sec .industrie__shape {
  position: absolute;
  pointer-events: none;
  width: 549px;
  height: 525px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-filter: blur(100px);
          filter: blur(100px);
  background: -webkit-gradient(linear, right top, left top, color-stop(20.3%, #FD3E00), color-stop(71.35%, #750F0F));
  background: linear-gradient(270deg, #FD3E00 20.3%, #750F0F 71.35%);
  bottom: 100px;
  left: -700px;
  pointer-events: none;
}
@media only screen and (max-width: 1199px) {
  .industrie__sec .industrie__shape {
    width: 400px;
    height: 430px;
    left: -560px;
  }
}
@media only screen and (max-width: 767px) {
  .industrie__sec .industrie__shape {
    width: 300px;
    height: 330px;
    left: -480px;
  }
}
.industrie__sec .sec_heading_wrap {
  width: 600px;
  max-width: 100%;
  margin-bottom: 50px;
}
@media only screen and (min-width: 1800px) {
  .industrie__sec .sec_heading_wrap {
    width: 780px;
  }
}
.industrie__sec .row {
  --bs-gutter-y: 30px;
}
.industrie__sec .row__card {
  border-radius: 20px;
  overflow: hidden;
}
.industrie__sec .card {
  border-radius: 0;
  border: none;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .industrie__sec .card {
    border-radius: 20px;
  }
}
.industrie__sec .card__media {
  --bs-aspect-ratio: 82.5%;
}
@media only screen and (max-width: 767px) {
  .industrie__sec .card__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .industrie__sec .card__media .ratio {
    height: 100%;
  }
}
.industrie__sec .card__media .ratio img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.industrie__sec .card__overlay {
  color: #ffffff;
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45.74%, rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.74%, #000000 100%);
}
@media only screen and (max-width: 767px) {
  .industrie__sec .card__overlay {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(0, 0, 0, 0)), to(#000000));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, #000000 100%);
    position: relative;
    min-height: 400px;
  }
}
.industrie__sec .card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 70px;
  padding: 40px 40px 40px;
}
@media only screen and (max-width: 575px) {
  .industrie__sec .card__content {
    padding: 120px 20px 30px;
    gap: 30px;
  }
}
.industrie__sec .card__content p {
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (min-width: 576px) {
  .industrie__sec .card__content p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .industrie__sec .card__content p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .industrie__sec .card__content p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .industrie__sec .card__content p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .industrie__sec .card__content p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .industrie__sec .card__content p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.industrie__sec .card__content p:last-child {
  margin-bottom: 0;
}
.industrie__sec .card__content__left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.industrie__sec .card__content__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.industrie__sec .card__content__right .stretched-link {
  width: 54px;
  height: 54px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 575px) {
  .industrie__sec .card__content__right .stretched-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}
.industrie__sec .card__content__right .stretched-link img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.industrie__sec .card__content__right .stretched-link:hover {
  opacity: 1;
}
.industrie__sec .card__title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 576px) {
  .industrie__sec .card__title {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .industrie__sec .card__title {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .industrie__sec .card__title {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .industrie__sec .card__title {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .industrie__sec .card__title {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .industrie__sec .card__title {
    font-size: 30px;
    line-height: 1.3;
  }
}

.platform_sec .sec_heading_wrap {
  width: 440px;
  max-width: 100%;
  margin-inline: auto;
}
@media only screen and (min-width: 1800px) {
  .platform_sec .sec_heading_wrap {
    width: 500px;
  }
}
.platform_sec .platform__accordion__holder {
  width: min(600px, 100%);
  margin-inline: auto;
}

.testimonial_sec {
  background-color: #F7F7F7;
}
.testimonial_sec .sec_heading_wrap {
  margin-bottom: 45px;
}
.testimonial_sec .splide__item {
  color: #000000;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 28px 32px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.testimonial_sec .splide__item blockquote .quote-icon {
  display: inline-block;
  margin-bottom: 20px;
}
.testimonial_sec .splide__item blockquote .quote-icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.testimonial_sec .splide__item blockquote p {
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (min-width: 576px) {
  .testimonial_sec .splide__item blockquote p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .testimonial_sec .splide__item blockquote p {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .testimonial_sec .splide__item blockquote p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial_sec .splide__item blockquote p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .testimonial_sec .splide__item blockquote p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .testimonial_sec .splide__item blockquote p {
    font-size: 18px;
    line-height: 1.5;
  }
}
.testimonial_sec .splide__item .testimonial-author {
  gap: 12px;
}
.testimonial_sec .splide__item .testimonial-author-holder {
  margin-top: auto;
}
.testimonial_sec .splide__item .testimonial-author .author-img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial_sec .splide__item .testimonial-author .author__des {
  font-size: 16px;
  line-height: 1.44;
  font-weight: 500;
  margin-bottom: 4px;
}
@media screen and (min-width: 576px) {
  .testimonial_sec .splide__item .testimonial-author .author__des {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 768px) {
  .testimonial_sec .splide__item .testimonial-author .author__des {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 992px) {
  .testimonial_sec .splide__item .testimonial-author .author__des {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial_sec .splide__item .testimonial-author .author__des {
    font-size: 16px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1400px) {
  .testimonial_sec .splide__item .testimonial-author .author__des {
    font-size: 18px;
    line-height: 1.44;
  }
}
@media screen and (min-width: 1800px) {
  .testimonial_sec .splide__item .testimonial-author .author__des {
    font-size: 22px;
    line-height: 1.44;
  }
}
.testimonial_sec .splide__item .testimonial-author .author__text {
  color: #969696;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 576px) {
  .testimonial_sec .splide__item .testimonial-author .author__text {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .testimonial_sec .splide__item .testimonial-author .author__text {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .testimonial_sec .splide__item .testimonial-author .author__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial_sec .splide__item .testimonial-author .author__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .testimonial_sec .splide__item .testimonial-author .author__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .testimonial_sec .splide__item .testimonial-author .author__text {
    font-size: 18px;
    line-height: 1.5;
  }
}
.testimonial_sec .splide__custom__pagination {
  margin-top: 45px;
}

.cta__sec {
  color: #ffffff;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}
.cta__sec .row {
  --bs-gutter-y: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cta__sec .content__holder {
  width: min(560px, 100%);
}
@media only screen and (min-width: 1800px) {
  .cta__sec .content__holder {
    width: 630px;
  }
}
.cta__sec .content p {
  font-size: 18px;
  line-height: 1.3;
  line-height: 1.3333333333;
  width: 520px;
  max-width: 100%;
  margin: 58px 0 0;
}
@media screen and (min-width: 576px) {
  .cta__sec .content p {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .cta__sec .content p {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .cta__sec .content p {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .cta__sec .content p {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .cta__sec .content p {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .cta__sec .content p {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 1800px) {
  .cta__sec .content p {
    width: 560px;
  }
}
@media only screen and (max-width: 1399px) {
  .cta__sec .content p {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 1199px) {
  .cta__sec .content p {
    margin-top: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .cta__sec .content p {
    margin-top: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .cta__sec .content p {
    margin-top: 24px;
  }
}
@media only screen and (min-width: 1400px) {
  .cta__sec .comn__form__holder {
    width: 500px;
    max-width: 100%;
    margin-left: auto;
  }
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  --bs-aspect-ratio: 45.2777777778%;
  pointer-events: none;
}
.cta__bg .ratio {
  height: 100%;
}
.cta__bg .ratio::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  inset: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(#000000)), -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #000000 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.cta__bg .ratio * {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cta__title {
  font-size: 40px;
  line-height: 1.1333333333;
  font-weight: 500;
}
@media screen and (min-width: 576px) {
  .cta__title {
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) {
  .cta__title {
    font-size: 45px;
  }
}
@media screen and (min-width: 992px) {
  .cta__title {
    font-size: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .cta__title {
    font-size: 55px;
  }
}
@media screen and (min-width: 1400px) {
  .cta__title {
    font-size: 60px;
  }
}
@media screen and (min-width: 1800px) {
  .cta__title {
    font-size: 70px;
  }
}
.cta__title span {
  color: #f15a29;
}

.comn__form {
  padding: 20px 25px 30px;
}
.comn__form__header {
  margin-bottom: 20px;
}
.comn__form__body .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
.comn__form .form-floating label {
  color: #000000;
  font-size: 14px;
  line-height: 1.4;
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 2;
  max-width: 100%;
  height: auto;
  padding: 0px 2px 0px 20px;
  border-radius: 4PX;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media screen and (min-width: 576px) {
  .comn__form .form-floating label {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .comn__form .form-floating label {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .comn__form .form-floating label {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .comn__form .form-floating label {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .comn__form .form-floating label {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .comn__form .form-floating label {
    font-size: 16px;
    line-height: 1.5;
  }
}
.comn__form .form-floating .form-control {
  padding: 1rem 1.25rem;
  color: #000000;
  font-size: 14px;
  line-height: 1.4;
  background-color: #F5F5F5;
  border-color: #E9E9E9;
  border-radius: 4PX;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  min-height: 49px;
}
@media screen and (min-width: 576px) {
  .comn__form .form-floating .form-control {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .comn__form .form-floating .form-control {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .comn__form .form-floating .form-control {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .comn__form .form-floating .form-control {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .comn__form .form-floating .form-control {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .comn__form .form-floating .form-control {
    font-size: 16px;
    line-height: 1.5;
  }
}
.comn__form .form-floating .form-control::-webkit-input-placeholder {
  color: transparent;
}
.comn__form .form-floating .form-control::placeholder, .comn__form .form-floating .form-control::-webkit-input-placeholder, .comn__form .form-floating .form-control::-moz-placeholder {
  color: transparent;
}
.comn__form .form-floating textarea.form-control {
  height: 120px;
  padding-top: 1.25rem;
  resize: none;
}
.comn__form .form-floating:has(textarea) label {
  background-color: #F5F5F5;
}
.comn__form .form-floating.input_focused label {
  -webkit-transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
}
.comn__form .btn__header {
  margin-top: 10px;
  position: relative;
}
.comn__form .btn__header .btn {
  border-radius: 6px;
  padding-block: 16px;
}

.thankyou__sec {
  overflow: hidden;
}
.thankyou__sec .banner p a {
  display: inline-block;
  text-underline-offset: 4px;
  text-decoration-color: #f15a29;
}

/* ======================
END OF MAIN SCSS FILE FOR ASTRO WEBSITE
====================== *//*# sourceMappingURL=style.css.map */