:root {
  --color01: #d32127;
  --color02: #4c98ee;
  --color03: #e415d5;
  --color04: #358836;
  --color05: #85c729;
  --color06: #f26d34;
  --color07: #fba93b;
  --secondaryColor: #212121;
  --thirdColor: #7c8098;
  --textColor: #212121;
  --lightColor: #f6f5f7;
  --shades01: #fff;
}

/* font-family: 'Tinos', serif;
font-family: 'Vazirmatn', sans-serif;
 */
/* ********|| INITIALIZATION STARTS ||******** */
html {
  width: 100%;
  min-height: 100%;
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
}

body {
  width: 100%;
  line-height: 18px;
  margin: 0 auto !important;
  padding: 0 !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 14px;
  color: var(--textMedColor);
  background: #fff;
  position: relative;
  z-index: 0;
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

*:focus {
  outline: none !important;
  outline-offset: none !important;
  outline-offset: 0 !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:focus {
  outline: none;
  text-decoration: none;
}

input:focus,
label:focus {
  outline: none !important;
  outline-offset: none !important;
  outline-offset: 0 !important;
}

/* ********|| INITIALIZATION ENDS ||******** */


/* ********|| PSEUDO ELEMENTS STARTS ||******** */
::selection {
  background-color: var(--color02);
  color: #fff
}

::-moz-selection {
  background-color: var(--color02);
  color: #fff
}

::-webkit-selection {
  background-color: var(--color02);
  color: #fff
}

:-webkit-focus {
  outline: none !important;
}

:-moz-focus {
  outline: none !important;
}

:focus {
  outline: none !important;
}

select:-webkit-focusring {
  color: var(--color02) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}

select:-moz-focusring {
  color: var(--color02) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}

select:focusring {
  color: var(--color02) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}

::input-placeholder {
  color: var(--textColor) !important;
}

::-moz-input-placeholder {
  color: var(--textColor) !important;
}

::-webkit-input-placeholder {
  color: var(--textColor) !important;
}

/*::-webkit-scrollbar-track{	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);box-shadow: inset 0 0 6px rgba(0,0,0,0.1);background-color: var(--textMedColor);}
::-webkit-scrollbar{width: 5px;height: 5px;background-color: var(--textMedColor);}
::-webkit-scrollbar-thumb{background-color: var(--secondaryColorAltLight);}*/
/* ********|| PSEUDO ELEMENTS ENDS ||******** */


/* ********|| ADJUSTMENT CLASSES STARTS ||******** */
*,
::after,
::before {
  box-sizing: border-box;
}

a {
  color: var(--color02);
  transition: all 0.3s ease;
}

a:hover,
a:focus {
  color: var(--secondaryColor);
}

p {
  margin: 0 0 10px;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid var(--c4dee4);
}

.required:after {
  content: "*";
  color: #f44336;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  margin: 0 0 0 3px;
}

.separator_dashed {
  border-bottom: var(--textMedColor) 1px dashed;
}

.separator_dotted {
  border-bottom: var(--textMedColor) 1px dotted;
}

.separator_solid {
  border-bottom: var(--textMedColor) 1px solid;
}

/* ********|| ADJUSTMENT CLASSES ENDS ||******** */

section {
  position: relative;
}

.form-content {
  position: relative;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
}

.form-group {
  position: relative;
  margin: 0 0 20px;
}

.control-label {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
  color: #212121;
  display: block;
}

.btn-submit {
  display: block;
  cursor: pointer;
  margin: 0;
  background-color: var(--color02);
  color: #fff;
  padding: 10px 15px;
  height: 44px;
  line-height: 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 0;
  overflow: hidden;
  text-align: center;
  border: 0;
}

.btn-submit:after {
  content: '';
  position: absolute;
  background-color: var(--secondaryColor);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scale(0, 1);
  transform-origin: center;
  transition: all 0.3s ease;
}

.btn-submit:hover:after {
  transform: scale(1, 1);
  opacity: 1;
}

.form-control {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #ddd;
  color: var(--textColor);
  background: #fff;
  min-width: 50px;
  min-height: 38px;
  width: 100%;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--color02);
  box-shadow: none;
}

.form-control::-webkit-input-placeholder {
  color: var(--textColor) !important;
}

.form-control:-moz-placeholder {
  color: var(--textColor) !important;
  opacity: 1 !important;
}

.form-control::-moz-placeholder {
  color: var(--textColor) !important;
  opacity: 1 !important;
}

.form-control:-ms-input-placeholder {
  color: var(--textColor) !important;
}

.form-control::-ms-input-placeholder {
  color: var(--textColor) !important;
}

textarea.form-control {
  resize: none;
  min-height: 100px;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #fff;
  opacity: 0.7;
  cursor: not-allowed;
}

.custom-checkbox {
  position: relative;
  padding-left: 24px;
  margin: 3px 0;
  display: inline-block;
}

.custom-checkbox .custom-checkbox-input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .custom-checkbox-label {
  position: relative;
  margin: 0;
  line-height: 16px;
  font-size: 14px;
}

.custom-checkbox .custom-checkbox-label:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ddd;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-radius: 2px;
}

.custom-checkbox .custom-checkbox-label:after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 10px;
  display: none;
  color: #fff;
  text-align: center;
}

.custom-checkbox .custom-checkbox-input:checked~.custom-checkbox-label:after {
  display: block;
}

.custom-checkbox .custom-checkbox-input:checked~.custom-checkbox-label:before {
  background: var(--color02);
  border: 1px solid var(--color02);
}

.custom-radio {
  position: relative;
  padding-left: 24px;
  margin: 3px 0;
  display: inline-block;
}

.custom-radio .custom-radio-input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.custom-radio .custom-radio-label {
  position: relative;
  margin: 0;
  line-height: 16px;
  font-size: 14px;
}

.custom-radio .custom-radio-label:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ddd;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-radius: 50%;
}

.custom-radio .custom-radio-label:after {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 8px;
  display: none;
  color: #fff;
  text-align: center;
}

.custom-radio .custom-radio-input:checked~.custom-radio-label:after {
  display: block;
}

.custom-radio .custom-radio-input:checked~.custom-radio-label:before {
  background: var(--color02);
  border: 1px solid var(--color02);
}


.custom-tab {}

.custom-tab .custom-tab-navigation {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 10px;
}

.custom-tab .custom-tab-navigation>li {
  width: auto;
  margin: 5px;
  position: relative;
}

.custom-tab .custom-tab-navigation>li>a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 20px;
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  border-radius: 4px;
  max-width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.custom-tab .custom-tab-navigation>li.active>a,
.custom-tab .custom-tab-navigation>li>a:hover {
  background-color: var(--color02);
}

.custom-tab .custom-tab-content {}

.custom-tab .custom-tab-content .custom-tab-wrap {
  display: none;
  background: transparent;
  padding: 20px 0;
}

.custom-tab .custom-tab-content .custom-tab-wrap.active {
  display: block;
}

.custom-tab .custom-tab-content .custom-tab-navigation>li>a {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
}

.custom-tab .custom-tab {
  margin-top: -20px;
}

.custom-tab .custom-tab .custom-tab-navigation {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .custom-tab .custom-tab-navigation {
    max-width: 620px
  }
}

@media (min-width: 768px) {
  .custom-tab .custom-tab-navigation {
    max-width: 740px
  }
}

@media (min-width: 992px) {
  .custom-tab .custom-tab-navigation {
    max-width: 1140px
  }
}

@media (min-width: 1200px) {
  .custom-tab .custom-tab-navigation {
    max-width: 1200px
  }
}


/* /////////////////////////////////////////////////////////////// */
/*             			   	 	BOOTSTRAP FIX            			   				 */
/* /////////////////////////////////////////////////////////////// */
@media (min-width: 576px) {
  .container {
    max-width: none;
  }

  .modal-dialog {
    max-width: 700px;
  }

  .modal-sm {
    max-width: 400px;
  }
}

/* @media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
} */

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1340px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

@media (min-width: 1900px) {
  .container {
    max-width: 1400px;
  }
}

input[type='number'] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.modal-open {
  overflow: auto;
}

.modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.request-demo-modal .modal-dialog {
  max-width: 640px;
}

.request-demo-modal .modal-content {
  border-radius: 10px;
  border: 0;
}

.request-demo-modal .modal-header {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.request-demo-modal .modal-title {
  color: var(--color01);
  font-size: 24px;
  line-height: 1.2;
}

.request-demo-modal .modal-body {
  padding: 20px;
}

.request-demo-modal .wpcf7 form {
  margin: 0;
}

.request-demo-modal .wpcf7 p {
  margin: 0 0 16px;
}

.request-demo-modal .wpcf7 p:last-child {
  margin-bottom: 0;
}

.request-demo-modal .wpcf7-form-control-wrap {
  display: block;
  width: 100% !important;
  max-width: none !important;
}

.request-demo-modal .iti,
.request-demo-modal .iti--allow-dropdown,
.request-demo-modal .iti--separate-dial-code {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.request-demo-modal .iti input,
.request-demo-modal .iti input.form-control {
  width: 100% !important;
}

.request-demo-modal .form-group,
.request-demo-modal .phone-wrapper,
.request-demo-modal .phone-wrapper > span,
.request-demo-modal .form-group > .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.request-demo-modal .form-control,
.request-demo-modal input[type="text"],
.request-demo-modal input[type="email"],
.request-demo-modal input[type="tel"],
.request-demo-modal input[type="number"],
.request-demo-modal select,
.request-demo-modal textarea {
  width: 100%;
}

.request-demo-modal .wpcf7-submit {
  width: 100%;
  height: 50px;
  border: 1px solid var(--fourthColor);
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .request-demo-modal .modal-dialog {
    margin: 12px;
    max-width: none;
  }

  .request-demo-modal .modal-header {
    padding: 12px 14px;
  }

  .request-demo-modal .modal-title {
    font-size: 20px;
  }

  .request-demo-modal .modal-body {
    padding: 14px;
  }
}

.overflow-hidden {
  overflow: hidden !important;
}

.dropdown .dropdown-toggle {
  padding-right: 16px !important;
  position: relative;
}

.dropdown .dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  font-weight: 500;
  display: block;
  position: absolute;
  margin: 0;
  vertical-align: unset;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 0;
  color: var(--color02);
  opacity: 1;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.dropdown.show .dropdown-toggle::after {
  transform: translateY(-50%) rotate(-180deg);
}

.dropdown .dropdown-menu {
  display: block;
  top: 100% !important;
  left: 50% !important;
  transform: translate(-50%, 50px) !important;
  visibility: hidden;
  opacity: 0;
  transition: .5s ease all;
}

.dropdown .dropdown-menu.show {
  display: block;
  transform: translate(-50%, 0) !important;
  visibility: visible;
  opacity: 1;
  transition: .5s ease all;
}

.dropdown-menu .dropdown-item {
  display: flex;
  padding: 5px 15px;
  color: var(--secondaryColor);
}

.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:active {
  background: var(--color02);
  color: #fff;
}

.mega-dropdown {
  position: static !important;
}

.mega-dropdown .mega-dropdown-menu {
  display: block;
  width: 100%;
  top: auto !important;
  left: 50% !important;
  transform: translate(-50%, 50px) !important;
  padding: 20px 40px;
  visibility: hidden;
  opacity: 0;
  transition: .5s ease all;
}

.mega-dropdown .mega-dropdown-menu.show {
  display: block;
  transform: translate(-50%, 0) !important;
  visibility: visible;
  opacity: 1;
  transition: .5s ease all;
}

/*////////////////////////////////////////////////////////////////*/
/*             		          	 HOME PAGE      	      				  	*/
/*////////////////////////////////////////////////////////////////*/

/*
font-family: 'Roboto', sans-serif;
font-family: 'Open Sans', sans-serif;
*/

/* ********|| HEADER STARTS ||******** */
.navigation {
  width: 100%;
  height: 90px;
  display: table;
  position: relative;
  font-family: inherit;
  padding: 10px 0;
}

.navigation * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent
}

.navigation-portrait {
  height: 60px
}

.navigation-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 19998
}

.navigation-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important
}

.align-to-right {
  float: right;
  margin-right: 8px !important;
}

.nav-header {
  float: left
}

.navigation-hidden .nav-header {
  display: none
}

.nav-brand {
  line-height: 70px;
  padding: 0;
  color: #343a40;
  font-size: 24px;
  text-decoration: none !important
}

.nav-brand:hover,
.nav-brand:focus {
  color: #343a40
}

.navigation-portrait .nav-brand {
  font-size: 18px;
  line-height: 48px
}

.nav-logo>img {
  height: 48px;
  margin: 11px auto;
  padding: 0 15px;
  float: left
}

.nav-logo:focus>img {
  outline: initial
}

.navigation-portrait .nav-logo>img {
  height: 36px;
  margin: 6px auto 6px 15px;
  padding: 0
}

.nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: 15px;
  display: none;
  cursor: pointer
}

.nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #343a40;
  border-radius: 10px;
  box-shadow: 0 .5em 0 0 #343a40, 0 1em 0 0 #343a40
}

.navigation-portrait .nav-toggle {
  display: block
}

.navigation-portrait .nav-menus-wrapper {
  width: 260px;
  min-height: 100dvh;
  top: 0;
  left: -400px;
  position: fixed;
  background-color: #fff;
  z-index: 20000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition-duration: .2s;
  transition-timing-function: ease
}

.navigation-portrait .nav-menus-wrapper {
  min-height: 100vh
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  left: auto;
  right: -400px
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  left: 0
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  left: auto;
  right: 0
}

.nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #343a40;
  font-size: 26px;
  cursor: pointer
}

.navigation-portrait .nav-menus-wrapper-close-button {
  display: block
}

.nav-menu {
  margin-top: 4px;
  padding: 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
  margin-bottom: 0;
}

.navigation-portrait .nav-menu {
  width: 100%
}

.navigation-landscape .nav-menu.nav-menu-centered {
  float: none;
  text-align: center
}

.navigation-landscape .nav-menu.nav-menu-centered>li {
  float: none
}

.nav-menu>li {
  display: inline-block;
  float: left;
  text-align: left
}

.nav-menu li+li {
  margin-left: 15px;
}

.navigation-portrait .nav-menu>li {
  width: 100%;
  position: relative;
  border-top: solid 1px #f0f0f0
}

.navigation-portrait .nav-menu>li:last-child {
  border-bottom: solid 1px #f0f0f0
}

.nav-menu+.nav-menu>li:first-child {
  border-top: none
}

.nav-menu>li>a {
  height: 70px;
  padding: 26px 15px;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  color: #343a40;
  transition: color 0.3s, background .3s;
  font-weight: 600;
}

.navigation-portrait .nav-menu>li>a {
  width: 100%;
  height: auto;
  padding: 12px 15px 12px 26px
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
  color: var(--color06)
}

.nav-menu>li>a>i,
.nav-menu>li>a>[class*="ion-"] {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4)
}

.nav-menu>li>a>[class*="ion-"] {
  width: 16px;
  display: inline-block;
  transform: scale(1.8)
}

.navigation-portrait .nav-menu.nav-menu-social {
  width: 100%;
  text-align: center
}

.nav-menu.nav-menu-social>li {
  text-align: center;
  float: none;
  border: none !important
}

.navigation-portrait .nav-menu.nav-menu-social>li {
  width: auto
}

.nav-menu.nav-menu-social>li>a>[class*="ion-"] {
  font-size: 12px
}

.nav-menu.nav-menu-social>li>a>.fa {
  font-size: 14px
}

.navigation-portrait .nav-menu.nav-menu-social>li>a {
  padding: 15px
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 0px;
  float: right;
  transition: all .2s
}

.navigation-portrait .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000
}

.submenu-indicator-chevron {
  transition: all ease 0.3s
}

.navigation-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
  transition: all .2s
}

.nav-menu>li:hover>a .submenu-indicator-chevron,
.nav-menu>.active>a .submenu-indicator-chevron,
.nav-menu>.focus>a .submenu-indicator-chevron {
  border-color: transparent #967adc #967adc transparent
}

.nav-menu>li>a:hover .submenu-indicator-chevron:before {
  transform: rotate(-180deg);
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg)
}

.nav-overlay-panel {
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999
}

.nav-overlay-panel {
  height: 100vh
}

.no-scroll {
  overflow: hidden
}

.nav-search {
  height: 70px;
  float: right;
  z-index: 19998;
  margin-top: 5px;
}

.navigation-portrait .nav-search {
  height: 48px;
  padding: 0 10px;
  margin-right: 52px
}

.navigation-hidden .nav-search {
  display: none
}

.nav-search-button {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation-portrait .nav-search-button {
  width: 50px;
  height: 48px;
  line-height: 46px;
  font-size: 22px
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  margin: 2px 8px 8px 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #343a40;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  transform: rotate(-45deg)
}

.nav-search-icon:after,
.nav-search-icon:before {
  content: "";
  pointer-events: none
}

.nav-search-icon:before {
  width: 2px;
  height: 11px;
  top: 11px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  box-shadow: inset 0 0 0 32px;
  transform: translateX(-50%)
}

.nav-search-button:hover .nav-search-icon {
  color: var(--color06)
}

.nav-search>form {
  width: 70%;
  height: 72%;
  padding: 0 auto;
  display: none;
  position: absolute;
  right: 0;
  top: 12px;
  background-color: #fff;
  z-index: 99;
  border: 1px solid var(--lightColor);
}

.nav-search-inner {
  width: 100%;
  margin: auto;
  display: table;
  padding: 0 10px;
}

.navigation-portrait .nav-search-inner {
  height: 48px
}

.nav-search-inner input[type="text"],
.nav-search-inner input[type="search"] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 18px;
  text-align: left;
  color: #343a40;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all .3s;
  padding-right: 125px;
}

.navigation-portrait .nav-search-inner input[type="text"],
.navigation-portrait .nav-search-inner input[type="search"] {
  height: 48px;
  font-size: 18px;
  line-height: 48px
}

.nav-search-close-button {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal;
  color: #343a40;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  background: var(--lightColor);
}

.navigation-portrait .nav-search-close-button {
  top: 10px;
  right: 14px
}

.nav-button {
  margin: 18px 15px 0;
  padding: 8px 14px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px
}

.nav-button:hover,
.nav-button:focus {
  color: #fff;
  text-decoration: none
}

.navigation-portrait .nav-button {
  width: calc(100% - 52px);
  margin: 17px 26px
}

.nav-text {
  margin: 25px 15px;
  display: inline-block;
  color: #343a40;
  font-size: 14px
}

.navigation-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0
}

.navigation-portrait .nav-text+ul {
  margin-top: 15px
}

.nav-dropdown {
  min-width: 180px;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  list-style: none;
  z-index: 98;
  white-space: nowrap
}

.navigation-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0
}

.nav-dropdown .nav-dropdown {
  left: 100%
}

.nav-menu>li>.nav-dropdown {
  border-top: solid 1px #f0f0f0
}

.nav-dropdown>li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: left
}

.nav-dropdown>li>a {
  width: 100%;
  padding: 16px 20px;
  display: inline-block;
  text-decoration: none;
  float: left;
  font-size: 13px;
  color: #343a40;
  background-color: #fdfdfd
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
  color: var(--color06)
}

.nav-dropdown.nav-dropdown-left {
  right: 0
}

.nav-dropdown>li>.nav-dropdown-left {
  left: auto;
  right: 100%
}

.navigation-landscape .nav-dropdown.nav-dropdown-left>li>a {
  text-align: right
}

.navigation-portrait .nav-dropdown>li>a {
  padding: 12px 20px 12px 30px
}

.navigation-portrait .nav-dropdown>li>ul>li>a {
  padding-left: 50px
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>a {
  padding-left: 70px
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>a {
  padding-left: 90px
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>ul>li>a {
  padding-left: 110px
}

.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 10px;
  position: absolute
}

.navigation-portrait .nav-dropdown .submenu-indicator {
  right: 0;
  top: 0
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(-45deg)
}

.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(45deg)
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
  border-color: transparent var(--color06) var(--color06) transparent
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
  left: 10px
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(135deg)
}

.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #fdfdfd;
  border-top: solid 1px #f0f0f0
}

.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0
}

.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none
}

.nav-dropdown-horizontal>li {
  width: auto;
  clear: none;
  position: static
}

.navigation-portrait .nav-dropdown-horizontal>li {
  width: 100%
}

.nav-dropdown-horizontal>li>a {
  position: relative
}

.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  transform: rotate(90deg)
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg)
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg)
}

.megamenu-panel {
  width: 100%;
  padding: 15px;
  display: none;
  position: absolute;
  font-size: 14px;
  z-index: 98;
  text-align: left;
  color: inherit;
  border-bottom: solid 4px var(--color02);
  background-color: #fdfdfd;
}

.navigation-portrait .megamenu-panel {
  padding: 25px;
  position: static;
  display: block
}

.megamenu-panel [class*="container"] {
  width: 100%
}

.megamenu-panel [class*="container"] [class*="col-"] {
  padding: 0
}

.megamenu-panel-half {
  width: 50%
}

.megamenu-panel-quarter {
  width: 25%
}

.navigation-portrait .megamenu-panel-half,
.navigation-portrait .megamenu-panel-quarter {
  width: 100%
}

.megamenu-panel-row {
  width: 100%
}

.megamenu-panel-row:before,
.megamenu-panel-row:after {
  content: "";
  display: table;
  line-height: 0
}

.megamenu-panel-row:after {
  clear: both
}

.megamenu-panel-row [class*="col-"] {
  display: block;
  min-height: 20px;
  float: left;
  margin-left: 3%
}

.megamenu-panel-row [class*="col-"]:first-child {
  margin-left: 0
}

.navigation-portrait .megamenu-panel-row [class*="col-"] {
  float: none;
  display: block;
  width: 100% !important;
  margin-left: 0;
  margin-top: 15px
}

.navigation-portrait .megamenu-panel-row:first-child [class*="col-"]:first-child {
  margin-top: 0
}

.megamenu-panel-row .col-1 {
  width: 5.583333333333%
}

.megamenu-panel-row .col-2 {
  width: 14.166666666666%
}

.megamenu-panel-row .col-3 {
  width: 22.75%
}

.megamenu-panel-row .col-4 {
  width: 31.333333333333%
}

.megamenu-panel-row .col-5 {
  width: 39.916666666667%
}

.megamenu-panel-row .col-6 {
  width: 48.5%
}

.megamenu-panel-row .col-7 {
  width: 57.083333333333%
}

.megamenu-panel-row .col-8 {
  width: 65.666666666667%
}

.megamenu-panel-row .col-9 {
  width: 74.25%
}

.megamenu-panel-row .col-10 {
  width: 82.833333333334%
}

.megamenu-panel-row .col-11 {
  width: 91.416666666667%
}

.megamenu-panel-row .col-12 {
  width: 100%
}

.megamenu-tabs {
  width: 100%;
  float: left;
  display: block
}

.megamenu-tabs-nav {
  width: 20%;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none
}

.navigation-portrait .megamenu-tabs-nav {
  width: 100%
}

.megamenu-tabs-nav>li>a {
  width: 100%;
  padding: 10px 16px;
  float: left;
  font-size: 13px;
  text-decoration: none;
  color: #343a40;
  border: solid 1px #eff0f2;
  outline: 0;
  background-color: #fff
}

.megamenu-tabs-nav>li.active a,
.megamenu-tabs-nav>li:hover a {
  background-color: #f5f5f5
}

.megamenu-tabs-pane {
  width: 80%;
  min-height: 30px;
  padding: 20px;
  float: right;
  display: none;
  font-size: 13px;
  color: #343a40;
  border: solid 1px #eff0f2;
  background-color: #fff
}

.megamenu-tabs-pane.active {
  display: block
}

.navigation-portrait .megamenu-tabs-pane {
  width: 100%
}

.megamenu-lists {
  width: 100%;
  display: table
}

.megamenu-list {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  display: inline-block;
  float: left;
  list-style: none
}

.megamenu-list:last-child {
  margin: 0;
  border: none
}

.navigation-landscape .megamenu-list {
  margin: -15px 0;
  padding: 20px 0;
  border-right: solid 1px #f0f0f0
}

.navigation-landscape .megamenu-list:last-child {
  border: none
}

.megamenu-list>li>a {
  width: 100%;
  padding: 10px 15px;
  display: inline-block;
  color: #343a40;
  text-decoration: none;
  font-size: 13px
}

.megamenu-list>li>a:hover {
  background-color: var(--color06);
  color: #fff
}

.megamenu-list>li.megamenu-list-title>a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #343a40
}

.megamenu-list>li.megamenu-list-title>a:hover {
  background-color: transparent
}

.navigation-landscape .list-col-2 {
  width: 50%
}

.navigation-landscape .list-col-3 {
  width: 33%
}

.navigation-landscape .list-col-4 {
  width: 25%
}

.navigation-landscape .list-col-5 {
  width: 20%
}

.nav-menu>li>a {
  color: #343a40;
  text-transform: uppercase
}

.nav-dropdown>li>a {
  color: #343a40;
  padding: 10px 20px;
  border-bottom: 1px solid #f6f6f6
}

.nav-dropdown>li>a:hover,
.nav-dropdown>li>a:focus {
  color: var(--color06)
}

.main_header_area.sticky {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1)
}

.transparent-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99
}

.navigation-portrait .nav-menu>li>a {
  width: 100%;
  height: auto;
  padding: 10px 10px 10px 30px
}

/* Header layout customization */
.header-container {
  padding-left: 20px;
  padding-right: 20px
}

.main_header_area .navigation {
  display: flex;
  align-items: center;
  position: relative
}

.main_header_area .navigation.navigation-landscape .nav-header {
  position: relative;
  z-index: 2
}

.main_header_area .navigation.navigation-landscape .nav-menus-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.main_header_area .navigation.navigation-landscape .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center
}

.main_header_area .navigation.navigation-landscape .align-to-right {
  float: none;
  margin-right: 0 !important
}

.main_header_area .header-demo-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 2;
}

.main_header_area .navigation.navigation-portrait .nav-header {
  width: 100%;
  position: relative;
}

.main_header_area .navigation.navigation-portrait .header-demo-btn {
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1;
  z-index: 3;
}

.main_header_area .navigation.navigation-portrait .nav-toggle {
  right: 10px;
  top: 50%;
  margin-top: -14px;
  z-index: 4;
}

/* .main_header_area .header-demo-btn:hover,
.main_header_area .header-demo-btn:focus {
  color: #fff;
  background: var(--color06)
} */

@media only screen and (min-width: 320px) and (max-width: 767px) {

  .nav-dropdown>li>a,
  .megamenu-list>li>a {
    width: 100%
  }
}

/* ********|| HEADER ENDS ||******** */
.header_area {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  transition: background-color ease 0.3s;
}

.header_area:hover {
  background: var(--shades01);
}

.nav-brand {
  width: 180px;
  height: auto;
  overflow: hidden;
  display: flex;
}

.nav-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ********|| BANNER SLIDER START ||******** */
.banner-section {
  overflow: hidden;
  height: 850px;
}

.banner-section .img-wrap {
  position: relative;
  height: 850px;
}

.banner-section .img-wrap:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000bd 30%, transparent);
  bottom: 0;
}

.banner-section .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-section .banner-content {
  bottom: 0;
  position: absolute;
  padding: 40px;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner-section .title {
  color: var(--shades01);
  font-size: 50px;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
}

.banner-section .des {
  text-align: center;
  color: var(--shades01);
  font-weight: 400;
  font-size: 20px;
  margin-top: 10px;
  line-height: 1.4;
}

.banner-section .banner-btn {
  border: none;
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  color: var(--shades01);
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 15px 50px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.banner-section .banner-btn:hover {
  color: var(--shades01);
  text-decoration: none;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  left: 0;
  padding: 8px;
  width: 100%;
  background: var(--shades01);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--color06);
}

.swiper-pagination-bullet {
  background-color: var(--color06);
}

/* ********|| BANNER SLIDER ENDS ||******** */
.about-part-section {
  padding: 100px 0 20px;
}

.about-part-section .section-des {
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
  margin: 14px 0 10px;
}

.about-part-section .section-title {
  text-align: left;
}

.about-part-section ul {
  list-style: none;
  text-align: center;
}

.about-part-section ul li {
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  margin: 14px 0 2px;
}

.about-part-section ul li+li {
  margin-top: 0px;
}

/* ********|| ABOUT STARTS ||******** */
.about-us-section {
  padding: 60px 0;
}

.about-us-section .about-img-part {
  display: flex;
  align-items: center;
}

.about-us-section .about-img-part .img-row {
  width: 50%;
}

.about-us-section .about-img-part .img-row.single {
  position: relative;
}

.about-us-section .about-img-part .img-row.single .img-wrap {
  position: relative;
}

.about-us-section .about-img-part .img-row.single:before {
  content: '';
  position: absolute;
  background-image: url(../images/blue-dots.svg);
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  bottom: -60px;
  right: -40px;
  z-index: -1;
}

.about-us-section .about-img-part .img-row .img-wrap+.img-wrap {
  margin-top: 15px;
}

.about-us-section .img-wrap {
  height: 380px;
  margin: 10px;
  overflow: hidden;
}

.about-us-section .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-section .about-content {}

.about-us-section .about-content .sub-title {
  font-size: 16px;
  color: var(--color02);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.about-us-section .about-content .title {
  color: var(--titleColor);
  font-weight: 600;
  font-size: 35px;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.about-us-section .about-content .des {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.about-us-section .about-content .btn-action {
  border: none;
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  color: var(--shades01);
  width: 40%;
  display: inline-block;
  margin-top: 20px;
  padding: 15px 20px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

/* ********|| ABOUT ENDS ||******** */

/* ********|| CONTENT START ||******** */
/* ********|| Feature Start ||******** */
.feature-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--textColor);
  background-image: url(../images/banner-2.jpg);
  background-attachment: scroll;
}

.feature-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000bd;
  left: 0;
  bottom: 0;
}

.feature-section .sub-title {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}

.feature-section .title {
  text-align: center;
  font-size: 40px;
  color: var(--shades01);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 50px;
}

.feature-section .feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}

.feature-section .feature-list .feature-item {
  position: relative;
  margin: 10px;
  display: flex;
  width: 25%;
  max-width: calc(25% - 20px);
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  display: flex;
  justify-content: center;
  transition: all .3s ease;
  padding: 25px;
  cursor: pointer;
  z-index: 1;
}

.feature-section .feature-list .feature-item::before {
  content: '';
  position: absolute;
  width: 98%;
  height: 97%;
  background: #fff;
  z-index: 0;
  left: 4px;
  top: 3px;
}

.feature-section .feature-list .feature-item .feature-img {
  margin-bottom: 10px;
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 25px;
  color: var(--shades01);
  margin: 0 auto;
  margin-bottom: 20px;
}

.feature-section .feature-list .feature-item .feature-img .img-wrap {
  position: relative;
}

.feature-section .feature-list .feature-item .feature-img .img-wrap img {
  height: 25px;
  position: relative;
  width: 25px;
}

.feature-section .feature-list .feature-item .feature-text {
  text-align: center;
  text-transform: capitalize;
  font-size: 25px;
}

.feature-section .feature-list .feature-item .feature-text .text {
  text-align: center;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.feature-section .feature-list .feature-item .feature-text .des {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

/* ********|| Feature End ||******** */
/* ********|| CONTENT ENDS ||******** */
.contact-section {
  padding: 90px 0;
}

.contact-section .bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.contact-section .bg-image>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section .content-contact {
  color: white;
  position: relative;
  z-index: 2;
  padding: 25px;
}

.contact-section .content-contact .title {
  font-size: 35px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-section .content-contact .sub-des {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.5;
}

.contact-section .bg-theme {
  background: var(--light);
  position: relative;
  border: 1px solid var(--lightColor);
}

.contact-section .bg-image:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(28 30 84 / 42%);
  left: 0;
  z-index: 1;
}

.contact-section .form-content-part {
  color: var(--textColor);
}

.contact-section .form-content-part .title {
  font-size: 35px;
  line-height: 1.5;
  font-weight: 600;
  padding: 20px 20px 0 20px;
  margin-bottom: 5px;
}

.contact-section .form-content-part .sub-des {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  padding: 20px 20px 0 20px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.contact-section .form-content-part .form-content {
  background: transparent;
}

.contact-section .form-content-part .form-content .submit-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-section .form-content-part .form-content .submit-btn .submit {
  height: 54px;
  font-size: 18px;
  border: 1px solid var(--fourthColor);
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  font-weight: 500;
  color: var(--shades01);
  width: 50%;
  justify-content: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.contact-section .form-content-part .form-content .submit-btn .btn-other {
  height: 44px;
  font-size: 16px;
  background: var(--shades01);
  font-weight: 500;
  color: var(--textColor);
  width: 50%;
  margin-top: 10px;
  justify-content: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.contact-section .form-content-part .form-content .submit-btn .btn-other:hover i {
  margin-left: 15px;
}

.contact-section .form-content-part .form-content .submit-btn .btn-other i {
  margin-left: 10px;
  transition: all 0.3s ease;
}

.contact-section .form-content-part .form-content .form-group {}

.contact-section .form-content-part .form-content .form-group .form-control {
  border-radius: 0;
  min-height: 47px;
  background: var(--shades01);
  border: 1px solid rgba(0, 0, 0, 0.11);
  color: var(--textColor);
}

.phone-wrapper {
  position: relative;
}

.iti {
  width: 100%;
}

.iti input,
.iti input.form-control {
  width: 100%;
  padding-left: 90px !important;
}

.contact-section .form-content-part .form-content .wpcf7 form {
  margin: 0;
}

.contact-section .form-content-part .form-content .wpcf7 p {
  margin: 0 !important;
}

.contact-section .form-content-part .form-content .wpcf7 p:last-child {
  margin-bottom: 0;
}

.contact-section .form-content-part .form-content .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.contact-section .form-content-part .form-content .wpcf7 .d-flex {
  display: flex;
  gap: 10px;
}

.contact-section .form-content-part .form-content .wpcf7 .d-flex>* {
  flex: 1 1 0;
  min-width: 0;
}

.contact-section .form-content-part .form-content .wpcf7 .iti {
  display: block;
  width: 100%;
}

.contact-section .form-content-part .form-content .wpcf7 .iti input,
.contact-section .form-content-part .form-content .wpcf7 .iti input.form-control {
  width: 100%;
}

.contact-section .form-content-part .form-content .wpcf7 .submit-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-section .form-content-part .form-content .wpcf7 .submit-btn .wpcf7-submit,
.contact-section .form-content-part .form-content .wpcf7 .wpcf7-submit,
.contact-section .form-content-part .form-content .wpcf7 .wpcf7-submit.submit {
  height: 54px;
  font-size: 18px;
  border: 1px solid var(--fourthColor);
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  font-weight: 500;
  color: var(--shades01);
  width: 100% !important;
  justify-content: center;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  padding: 0 50px;
  cursor: pointer;
}

.contact-section .form-content-part .form-content .submit-btn .submit,
.contact-section .form-content-part .form-content .submit-btn .wpcf7-submit {
  width: 100% !important;
}

.contact-section .form-content textarea {
  height: 120px !important;
  min-height: 120px;
}

.contact-section .form-content-part .form-content .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 5px;
}

.contact-section .form-content-part .form-content .wpcf7 form.invalid .wpcf7-response-output,
.contact-section .form-content-part .form-content .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-section .form-content-part .form-content .wpcf7 form.sent .wpcf7-response-output,
.contact-section .form-content-part .form-content .wpcf7 form.failed .wpcf7-response-output,
.contact-section .form-content-part .form-content .wpcf7 form.aborted .wpcf7-response-output {
  margin: 10px 0 0;
}

@media screen and (max-width: 767px) {
  .contact-section .form-content-part .form-content .wpcf7 .d-flex {
    flex-direction: column;
    gap: 20px;
  }

  .contact-section .form-content-part .form-content .wpcf7 .submit-btn .wpcf7-submit,
  .contact-section .form-content-part .form-content .wpcf7 .wpcf7-submit,
  .contact-section .form-content-part .form-content .wpcf7 .wpcf7-submit.submit {
    width: 100%;
  }
}

.no-vacancy-section {
  padding: 80px 0;
}

.no-vacancy-section .img-wrap {
  width: 150px;
  height: 120px;
  opacity: 0.5;
  margin: 0 auto;
  overflow: hidden;
}

.no-vacancy-section .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.no-vacancy-section .text-part {
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
  margin-top: 15px;
}

.no-vacancy-section .title {
  font-size: 48px;
  color: var(--color01);
}

.no-vacancy-section p {}

.no-vacancy-section p span {}

/* ********|| Footer section Start ||******** */
.common-banner {
  overflow: hidden;
  height: 350px;
  position: relative;
  background-position: 50% 42%;
  background-size: cover;
  background-repeat: no-repeat;
}

.common-banner .img-wrap {
  position: relative;
}

.common-banner:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000bd 30%, transparent);
  bottom: 0;
}

.common-banner .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-banner .banner-content {
  position: relative;
  padding: 40px;
  width: 100%;
  margin: 0 auto;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}

.common-banner .title {
  color: var(--shades01);
  font-size: 50px;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
}

.common-banner .des {
  text-align: center;
  color: var(--shades01);
  font-weight: 400;
  font-size: 20px;
  margin-top: 10px;
}

/* ********|| BANNER SLIDER ENDS ||******** */
.career-section {
  padding: 40px 0;
}

.career-section .section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--textColor);
  line-height: 1.4;
  text-transform: capitalize;
}

.career-section .des {
  font-size: 18px;
  width: 50%;
  margin: 0 auto;
  line-height: 1.4;
  padding-bottom: 25px;
  text-align: center;
}

.vacancy-content {
  margin-bottom: 30px;
  padding: 39px;
  border: 2px dashed #d9d9d9;
  border-radius: 0px;
  position: relative;
  z-index: 1;
}

.vacancy-content span {
  color: linear-gradient(45deg, #5c88eb, #ca2ad9);
  margin-bottom: 25px;
  display: block;
}

.vacancy-content p {
  margin-bottom: 20px;
}

.vacancy-content-wrap [class*=col-]:first-child .vacancy-content,
.vacancy-content-wrap [class*=col-]:nth-child(4n+4) .vacancy-content,
.vacancy-content-wrap [class*=col-]:nth-child(4n+5) .vacancy-content {
  box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0.25);
  border: none;
}

.vacancy-content-wrap [class*=col-]:first-child .vacancy-content .button-round-primary,
.vacancy-content-wrap [class*=col-]:nth-child(4n+4) .vacancy-content .button-round-primary,
.vacancy-content-wrap [class*=col-]:nth-child(4n+5) .vacancy-content .button-round-primary {
  background-color: linear-gradient(45deg, #5c88eb, #ca2ad9);
}

.vacancy-content .no-vacancy {
  display: flex;
  font-size: 15px;
}

.vacancy-content .no-vacancy span {
  font-weight: 600;
  margin-left: 8px;
}

.vacancy-content .button-apply {
  height: 34px;
  font-size: 14px;
  border: 1px solid var(--fourthColor);
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  font-weight: 500;
  color: var(--shades01);
  width: 28%;
  justify-content: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

/* ********|| BANNER HIGHLIGHTS START ||******** */
.service-section .swiper-wrapper {
  height: unset !important;
}

/* ********|| FEATURE STARTS ||******** */
footer {
  background: var(--textColor);
  padding-top: 20px;
  padding-bottom: 20px;
}

footer .footer-info {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #5c5c5c;
  border-bottom: 1px solid #5c5c5c;
  padding-bottom: 20px;
  padding-top: 20px;
}

footer .about-text {
  color: var(--shades01);
  padding: 5px 0;
  width: 250px;
  overflow: hidden;
  height: 100px;
}

footer .about-text img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .about-text .footer-text {}

footer .about-text .des {}

footer .footer-info .logo {
  width: 80px;
  overflow: hidden
}

footer .footer-info .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .footer-navs {}

footer .footer-navs .footer-nav-links {}

footer .footer-navs .footer-nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
}

footer .footer-navs .footer-nav-links ul li {
  color: var(--shades01);
}

footer .footer-navs .footer-nav-links ul li a {
  color: var(--shades01);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

footer .footer-navs .footer-nav-links ul li+li {
  margin-left: 30px;
}

footer .footer-about {
  color: var(--shades01);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 35px;
}

footer .footer-social-icons {
  justify-content: center;
  display: flex;
}

footer .footer-social-icons ul {
  list-style: none;
  padding-left: 0;
  display: flex;
}

footer .footer-social-icons ul li {
  display: flex;
}

footer .footer-social-icons ul a {
  color: var(--shades01);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 18px;
  border: 1px solid #5c5c5c;
}

footer .footer-social-icons ul a+a {
  margin-left: 20px;
}

footer .copyright-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

footer .copyright-part .terms-part {}

footer .copyright-part .terms-part {}

footer .copyright-part .terms-part a {
  text-decoration: underline;
  color: #b5b5b5;
}

footer .copyright-part .terms-part a+a {
  margin-left: 15px;
}

footer .copyright-part .copyright-part-text {
  color: #dadada;
}

/* ********|| FEATURE ENDS ||******** */
.submenu-indicator-chevron:before {
  /* height: 8px; */
  /* width: 8px; */
  display: block;
  /* border-style: solid; */
  /* border-width: 0 1px 1px 0; */
  /* border-color: transparent #70798b #70798b transparent; */
  /* transform: rotate(45deg); */
  /* transition: all ease 0.3s; */
  content: '';
  transition: all ease 0.3s;
  font-family: 'Font Awesome 5 Pro';
  overflow: hidden;
  content: "\f078";
  color: #000;
  position: absolute;
}

/* ********|| OTHER PAGES STARTS ||******** */
.section-title {
  text-transform: capitalize;
}

.testimonial-section {
  padding: 80px 0;
  background: rgb(255 246 237 / 40%);
}

.testimonial-section .testimonial-grid>[class*=col-] {
  display: flex;
}

.testimonial-section .swiper .swiper-button-prev,
.testimonial-section .swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  color: var(--color02);
  border: 2px solid var(--color02);
  transform: rotate(45deg)
}

.testimonial-section .swiper .swiper-button-prev {
  border-width: 0 0 1px 1px;
  left: 40px
}

.testimonial-section .swiper .swiper-button-next {
  border-width: 1px 1px 0 0;
  right: 40px
}

.testimonial-section .swiper .swiper-button-prev:after,
.testimonial-section .swiper .swiper-button-next:after {
  display: none
}

.testimonial-section .swiper .swiper-slide {
  min-height: 360px;
  display: flex;
  align-items: center
}

.testimonial-section .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 4px;
  background-color: var(--color02);
  opacity: .4;
  transition: all .3s ease
}

.testimonial-section .swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: .8;
  transform: scale(1.8)
}

.testimonial-section .testimonial-item {
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  width: 100%
}

.testimonial-section .testimonial-item .testimonial-content {
  background: var(--shades01);
  padding: 15px;
  border-radius: 0;
  box-shadow: 0 10px 20px 0 rgba(41, 41, 42, 0.07);
  margin-bottom: 35px;
  position: relative;
  width: 100%
}

/* .testimonial-section .testimonial-item .testimonial-content:before{content:'';position:absolute;width:24px;height:24px;background:var(--shades01);bottom:-10px;left:50%;transform:translate(-50%) rotate(45deg)} */
.testimonial-section .testimonial-item .testimonial-content .title {
  font-size: 22px;
  margin: 15px 0 5px
}

.testimonial-section .testimonial-item .testimonial-content .des {
  font-size: 14px;
  line-height: 1.4;
  color: var(--secondaryColor);
  padding-bottom: 15px
}

.testimonial-section .testimonial-item .author .img-wrap {
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 0 auto
}

.testimonial-section .testimonial-item .author .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.testimonial-section .testimonial-item .author .name {
  font-size: 14px;
  margin: 10px 0 5px
}

.testimonial-section .testimonial-item .author .designation {
  font-size: 12px;
  line-height: 1.2;
  color: var(--secondaryColor)
}

.testimonial-section .rating {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}

.testimonial-section .rating .icons {
  color: var(--color07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 18px;
  line-height: 1;
}

.testimonial-section .rating .icons i {
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
}

.testimonial-section .rating .number {
  margin-left: 5px;
  text-transform: capitalize;
  font-weight: 500;
}

/* ********|| OTHER PAGES ENDS ||******** */

.service-section {
  position: relative;
  padding: 90px 0px;
  background-repeat: no-repeat;
  background: #4c97ee0f;
}

.service-section .services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  margin-left: -10px;
  margin-right: -10px;
}

.service-section .section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: var(--textColor);
  line-height: 1.4;
  text-transform: capitalize;
}

.service-section .des {
  text-align: center;
}

.service-section .service-item {
  position: relative;
  width: 100%;
  max-width: calc(33.33% - 20px);
  margin: 10px;
  box-sizing: border-box;
}

.service-section .service-swiper-slide {
  display: flex;
  height: auto;
}

.service-section .service-item {
  height: 100%;
  width: 100%;
}

.service-section .service-item {
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  /* position: relative; */
  height: 100%;
  background-color: #fff;
  transition: all 0.5s ease;
  animation-delay: 2s;
}

.service-section .service-item:hover {
  background-color: var(--color02);
}

.service-section .service-item .service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-section .service-item:hover .service-img img {
  transform: scale(1.2) rotate(2deg);
}

/* .service-section  .serivce-item:hover .service-img{
 transform: scale(1.2) rotate(2deg);
} */

.phone-fixed {
  position: fixed;
  z-index: 9;
  display: flex;
  flex-direction: column;
  right: 0;
  bottom: 220px;
  background: linear-gradient(45deg, #5c88eb, #ca2ad9);
  padding: 10px 20px;
  min-width: 224px;
  min-height: 68px;
  box-sizing: border-box;
}

.phone-fixed a {
  color: var(--shades01);
  font-size: 18px;
  line-height: 20px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.phone-fixed i {
  margin-right: 8px;
  width: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phone-fixed a+a {
  margin-top: 10px;
}

.service-section .service-item:hover .title,
.service-section .service-item:hover .view-btn {
  color: #fff
}

.service-section .service-item:hover .des {
  color: #fff !important;
}

.service-section .service-item .content-part {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 160px;
}

.service-section .service-item .content-part .des {
  font-size: 14px;
  font-weight: 400;
  color: var(--LightColor);
  text-align: left;
}

.service-section .service-item .content-part ul {
  padding-left: 18px;
}

.service-section .service-item .title {
  font-size: 30px;
  font-weight: 400;
  color: var(--textColor);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-section .service-item .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-section .swiper-horizontal>.swiper-pagination-bullets,
.service-section .swiper-pagination-bullets.swiper-pagination-horizontal,
.service-section .swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
}

.service-section .service-swiper {
  margin-bottom: 20px !important;
}

#service-pagination {
  bottom: -10px !important;
  position: relative;
  z-index: 2;
}

/* #services {padding: 0px 0px 12px 0px;} */
.service-btn {
  margin: auto 0 0;
}

.service-btn .view-btn {
  text-decoration: none;
  font-size: 16px;
  color: var(--DarkColor);
  font-weight: 400;
  transition: all 0.3s ease;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-btn .view-btn:hover {
  color: var(--color02);
}

/* ********|| MODAL STARTS ||******** */
/* ********|| MODAL ENDS ||******** */


/* ********|| RESPONSIVE STARTS ||******** */

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 990px) {}

@media screen and (max-width: 990px) and (orientation: landscape) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 767px) and (orientation: landscape) {}

@media screen and (max-width: 600px) {}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {}

/* ********|| RESPONSIVE ENDS ||******** */

.logo-custom-size {
  width: 50% !important;
  /* Use !important if necessary to override other styles */
}

.default-page-content {
  margin-top: 80px;
  margin-bottom: 50px;
}

.default-page-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.default-page-header {
  margin-bottom: 24px;
}

.default-page-title {
  margin: 0;
}

.default-page-entry > *:last-child {
  margin-bottom: 0;
}
