:root {
  --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
  --global--color-base: #000;
  --global--color-yellow: #f6b333;
  --global--color-pink: #e55395;
  --global--color-light-pink: #f99898;
  --global--color-green: #00a59d;
  --global--color-light-green: #d0e0d7;
  --global--color-persian-green: #05A69E;
  --global--color-gray: #f8f8f8;
  --global--color-white: #ffffff;
  --primary: #e55395;
  --secondary: var(--global--color-green);
}

@font-face {
  font-family: "Gistesy";
  src: url("../../assets/fonts/Gistesy.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Grandview";
  src: url("../../assets/fonts/Grandview.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Market Deco";
  src: url("../../assets/fonts/Market_Deco.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Shopie";
  src: url("../../assets/fonts/Shopie.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  /*font-family: 'Open Sans', sans-serif;*/
  font-family: "Grandview", sans-serif;
  color: #1C2544;
  font-size: 20px;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: #FFF;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Market Deco", sans-serif;
  margin: 0 0 20px;
  line-height: 1.25em;
}

h1 {
  font-size: 47px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 40px !important;
  }
  h2 {
    font-size: 35px !important;
  }
  h3 {
    font-size: 30px !important;
  }
  h4 {
    font-size: 25px !important;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 35px !important;
  }
  h2 {
    font-size: 30px !important;
  }
  h3 {
    font-size: 28px !important;
  }
  h4 {
    font-size: 23px !important;
  }
}
@media (max-width: 991px) {
  h1 span {
    font-size: 56px !important;
  }
  h2 span {
    font-size: 51px !important;
  }
  h3 span {
    font-size: 46px !important;
  }
  h4 span {
    font-size: 41px !important;
  }
}
@media (max-width: 767px) {
  h1 span {
    font-size: 51px !important;
  }
  h2 span {
    font-size: 46px !important;
  }
  h3 span {
    font-size: 42px !important;
  }
  h4 span {
    font-size: 37px !important;
  }
}
.font-gistesy {
  font-family: "Gistesy", sans-serif;
}

.font-grandview {
  font-family: "Grandview", sans-serif;
}

.font-market-deco {
  font-family: "Market Deco", sans-serif;
}

p {
  margin: 0 0 20px;
}

a {
  color: inherit;
  transition: background-color 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

a[role=button] {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

select,
button,
textarea,
input {
  font-size: inherit;
  font-family: inherit;
}

.btn,
button,
input[type=submit],
a {
  cursor: pointer;
}

.wrapper {
  width: 1420px;
  max-width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.site-container {
  overflow-x: hidden;
}

/* Site Scrollbar */
::-webkit-scrollbar {
  width: 0.6rem;
}

::-webkit-scrollbar-track {
  border: none;
  background: #e5e5e5;
}

::-webkit-scrollbar-thumb {
  /* border: 2px solid #e5e5e5;
  border-radius: 10px; */
  background: var(--global--color-pink);
}

::-webkit-scrollbar:hover {
  width: 0.7rem;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--global--color-persian-green);
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-top {
  animation: fade-in-top 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-bottom {
  animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes fade-out-top {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}
.fade-out-top {
  animation: fade-out-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

/* Buttons */
.btn,
button,
input[type=button],
input[type=submit],
.gform_button,
.elementor-button {
  --c1: #F99898;
  --c2: #E35393;
  background: #E35393;
  border: 1px solid #E35393;
  color: #fff;
  font-weight: 400;
  padding: 16.5px 26px;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  border-radius: 50px;
  min-height: 50px;
  font-family: "Market Deco";
}

.btn:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover,
.elementor-button:hover {
  --x: 100%;
}

.gm-style button {
  border-radius: 0;
}

.btn, .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  min-height: 50px;
}

.secondary.btn,
.secondary .elementor-button {
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  color: #ffffff;
}

.secondary.btn:hover,
.secondary .elementor-button:hover {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: #FFFFFF;
}

.terrain.btn,
.terrain .elementor-button {
  background-color: #ffffff;
  border: 1px solid #1C2544;
  color: #1C2544;
}

.terrain.btn:hover,
.terrain .elementor-button:hover {
  background-color: #1C2544;
  border: 1px solid #1C2544;
  color: #ffffff;
}

.yellow.btn,
.yellow .elementor-button {
  background-color: var(--global--color-yellow);
  border: 2px solid var(--global--color-yellow);
  color: #ffffff;
}

.yellow.btn:hover,
.yellow .elementor-button:hover {
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  color: #FFFFFF;
}

.btn-sg.btn-gradient-1 {
  background: #63B2C8; /* Fallback color */
  background: linear-gradient(to right, #63B2C8, #C0E3E4);
}

/* Header */
.elementor-location-header {
  /*background: transparent;*/
}

/* .header-stick .site-header, */
.header-stick.header-type2 .elementor-location-header,
.header-stick .elementor-location-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  animation: fade-in-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.05);
}

/* .header-unstick .site-header, */
.header-unstick.header-type2 .elementor-location-header,
.header-unstick .elementor-location-header {
  animation: fade-out-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.header-type2 .site_header_con,
.header-type2 .elementor-location-header {
  position: absolute;
  width: 100%;
  z-index: 100;
}

.header-type2 .site-header {
  background: none;
  color: #fff;
}

.header-type2.header-stick .elementor-location-header {
  background: #fff;
  color: inherit;
}

.header-type2.header-stick .with-alt-logo .site-logo-main,
.header-type2 .with-alt-logo .site-logo-alt {
  display: none;
}

.header-type2.header-stick .with-alt-logo .site-logo-alt {
  display: inline-block;
}

/* Slide Menu */
.gc-slide-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  pointer-events: none;
  display: none;
}

.show_slide_menu .gc-slide-menu-mask {
  display: block;
  pointer-events: auto;
  animation: fadeIn 1s;
}

.gc-slide-menu {
  width: 400px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #05A69E;
  z-index: 110;
  transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: 0.1s;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  padding: 20px 20px 200px 20px;
  overflow: auto;
}

.show_slide_menu .gc-slide-menu {
  transform: translate3d(0, 0, 0);
}

/* .show_slide_menu .site-container {
    transform: translate3d(-100px, 0, 0);
} */
body.show_slide_menu {
  overflow: hidden;
}

.gc-slide-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  width: 100%;
}

.gc-slide-menu-close {
  color: #ffffff;
  cursor: pointer;
  font-size: 30px;
}

.gc-slide-menu-close:hover {
  opacity: 0.8;
}

.gc-slide-menu-trigger {
  background: none;
  border: none;
  padding: 2px;
  width: 38px;
  height: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
}

.gc-slide-menu-trigger span {
  height: 2px;
  width: 100%;
  background: #fff;
}

.gc-slide-menu-trigger:hover {
  background: none;
}

.gc-slide-menu-trigger .l1 {
  width: 70%;
  transition: width 0.5s ease;
  will-change: width;
  background: #fff;
}

.gc-slide-menu-trigger:hover .l1 {
  width: 100%;
}

.gc-slide-menu .menu-item {
  margin-bottom: 10px;
}

.gc-slide-menu .menu-item a {
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
  color: #FFF;
}

.gc-slide-menu .menu-item a:hover {
  opacity: 0.7;
}

.gc-slide-menu .sub-menu {
  /* overflow: hidden;
  transition: all .5s ease;
  height: 0;
  display: flex; */
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.2;
  padding: 10px 0px 10px 0px;
}

/* .gc-slide-menu .show-sub .sub-menu {
    height: initial;
    padding-bottom: 12px;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */
.gc-slide-menu .sub-menu a {
  font-weight: normal;
}

.gc-slide-menu .menu-item-has-children > a {
  position: relative;
  display: block;
}

.gc-slide-menu .menu-item-has-children > a:after {
  content: "\e90b";
  font-family: "icomoon";
  transition: transform 0.5s ease;
  display: inline-block;
  margin-left: 14px;
  position: absolute;
  font-size: 18px;
  top: 5px;
  right: 0;
  line-height: 1;
}

.gc-slide-menu .menu-item-has-children.show-sub > a:after {
  transform: rotate(180deg);
}

.gc-slide-menu .toggle_height_el_con {
  transition: height 500ms ease;
}

.gc-slide-menu-footer {
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 10px 10px;
}

.gc-slide-menu-footer a {
  text-decoration: none;
  font-weight: bold;
  display: block;
  color: #FFFFFF;
}

.gc-slide-menu-footer a span {
  margin-right: 10px;
}

.gc-slide-menu-footer .search-form {
  margin-top: 20px;
}

.gc-slide-menu .gc-slide-menu-footer input[type=search] {
  background-color: #fff;
  border: 1px solid #E9ECEF;
  height: 50px;
  padding: 10px;
  font-family: inherit;
  color: inherit;
  outline: none;
  border-radius: 4px;
  width: 100%;
}

.gc-slide-menu-footer input[type=search]::-webkit-input-placeholder {
  opacity: 1;
  color: #495056;
}

.gc-slide-menu-footer input[type=search]:-moz-placeholder {
  opacity: 1;
  color: #495056;
}

.gc-slide-menu-footer input[type=search]::-moz-placeholder {
  opacity: 1;
  color: #495056;
}

.gc-slide-menu-footer input[type=search]:-ms-input-placeholder {
  opacity: 1;
  color: #495056;
}

@media (max-width: 399px) {
  .gc-slide-menu {
    width: 300px;
  }
}
.gc-slide-menu .menu {
  list-style: none;
  padding-left: 10px;
  font-size: 18px;
}

/* Form Styles */
input[type=text], input[type=email], input[type=password], input[type=tel], input[type=number], input[type=date], input[type=search], input[type=url], input[type=url], input[type=time], input[type=week],
textarea,
select {
  border: 1px solid #21234F;
  height: 52px;
  padding: 10px;
  font-family: inherit;
  outline: none;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
}

input[type=text]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

input[type=text]:-moz-placeholder {
  opacity: 1;
  color: #000;
}

input[type=text]::-moz-placeholder {
  opacity: 1;
  color: #000;
}

input[type=text]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

input[type=email]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

input[type=email]:-moz-placeholder {
  opacity: 1;
  color: #000;
}

input[type=email]::-moz-placeholder {
  opacity: 1;
  color: #000;
}

input[type=email]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

input[type=password]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

input[type=password]:-moz-placeholder {
  opacity: 1;
  color: #000;
}

input[type=password]::-moz-placeholder {
  opacity: 1;
  color: #000;
}

input[type=password]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

input[type=tel]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

input[type=tel]:-moz-placeholder {
  opacity: 1;
  color: #000;
}

input[type=tel]::-moz-placeholder {
  opacity: 1;
  color: #000;
}

input[type=tel]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

textarea:-moz-placeholder {
  opacity: 1;
  color: #000;
}

textarea::-moz-placeholder {
  opacity: 1;
  color: #000;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

textarea {
  height: initial;
}

fieldset legend,
label {
  font-size: 16px;
  font-weight: 700;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  padding: 0;
  display: inline-block;
  cursor: pointer;
}

.gfield_radio,
.gfield_checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.gchoice {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  line-height: 1.6;
}

.gchoice input {
  margin-top: 3px;
}

.gchoice label {
  cursor: pointer;
}

.gfield_validation_message,
.gfield_error label {
  color: #FA7D5A;
}

.gfield_validation_message {
  font-size: 12px;
}

.gfield_error select,
.gfield_error textarea,
.gfield_error input {
  border-color: #FA7D5A;
}

.gform_wrapper input[type=button],
.gform_wrapper input[type=submit] {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  min-width: 150px;
  min-height: 50px;
  color: #1C2544;
  font-weight: 700;
  padding: 16.5px 26px;
  line-height: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.gform_wrapper input[type=button],
.gform_wrapper input[type=submit]:hover {
  border-color: #3DBAFD;
  background: #3DBAFD;
  color: #fff;
}

.gform_submission_error {
  font-size: 16px;
  color: #FA7D5A;
}

.gform_fields {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.gform_fields .gfield {
  grid-column: span 12/auto;
}

.gform_fields .gfield--width-half {
  grid-column: span 6/auto;
}

.gform_fields .gfield--width-third {
  grid-column: span 4/auto;
}

.gform_fields .gfield--width-two-thirds {
  grid-column: span 8/auto;
}

.gform_fields .gfield--width-quarter {
  grid-column: span 3/auto;
}

.gform_fields .gfield--width-three-quarter {
  grid-column: span 9/auto;
}

.gform_fields .gfield--width-five-twelfths {
  grid-column: span 5/auto;
}

.gform_fields .gfield--width-seven-twelfths {
  grid-column: span 7/auto;
}

@media (max-width: 767px) {
  .gform_fields div.gfield {
    grid-column: span 12/auto;
  }
}
.ginput_complex {
  display: flex;
  gap: 10px;
}

.honeypot, .gfield--type-honeypot {
  position: absolute !important;
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
}

.gform_required_legend {
  display: none;
}

.gform_ajax_spinner {
  position: absolute;
}

.ginput_container_date {
  position: relative;
}

.ginput_container_date .gform-datepicker {
  padding-right: 30px;
}

.ginput_container_date .ui-datepicker-trigger {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 14px;
}

.ui-datepicker {
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}

.ui-datepicker-calendar {
  width: 100%;
}

.ui-datepicker-calendar th {
  padding: 5px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
}

.ui-datepicker-calendar td {
  padding: 5px;
  text-align: center;
}

body .ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-default,
.ui-datepicker-calendar .ui-state-default {
  font-weight: 700;
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.ui-datepicker-calendar span.ui-state-default {
  opacity: 0.3;
}

.ui-datepicker-header select {
  min-height: initial;
  padding: 6px 8px;
  height: initial;
  font-size: 13px;
  font-weight: 700;
}

.ui-datepicker-header .ui-datepicker-next,
.ui-datepicker-header .ui-datepicker-prev {
  font-size: 12px;
  font-weight: 700;
  margin: 10px;
  display: inline-block;
}

.ui-datepicker-header {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  gap: 8px;
  justify-content: space-between;
}

.ui-datepicker-title {
  display: flex;
  gap: 10px;
  width: 100%;
}

.ui-datepicker-calendar a {
  text-decoration: none;
  display: inline-block;
  border-radius: 50%;
}

.ui-datepicker-calendar a:hover {
  background: #f5f5f5;
}

.ui-datepicker a.ui-state-active,
.ui-datepicker a.ui-state-active:hover,
.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-active,
.ui-datepicker:not(.gform-legacy-datepicker) a.ui-state-active:hover {
  background-color: #8d8d8d;
  color: #fff;
}

.hidden_label .gfield_label {
  display: none;
}

/* Elementor editor fixes */
.elementor-editor-active select {
  padding: 0 5px;
}

/* Check/Radio */
.ginput_container_consent input[type=checkbox],
.gfield-choice-input {
  opacity: 0;
  position: absolute;
}

.gchoice {
  margin: 7px 0;
}

.ginput_container_consent label,
.gchoice label {
  position: relative;
  padding-left: 32px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.ginput_container_consent label:before,
.gchoice label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #495056;
  pointer-events: none;
}

.ginput_container_consent.selected label:before,
.gchoice.selected label:before {
  border-color: #2CC6FA;
}

.ginput_container_consent label:after,
.gchoice label:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #2CC6FA;
  left: 3px;
  top: 3px;
  transform: scale(0);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.ginput_container_consent.selected label:after,
.gchoice.selected label:after {
  transform: scale(1);
}

.gfield_radio .gchoice label:before,
.gfield_radio .gchoice label:after {
  border-radius: 50%;
}

/*  Custom Upload Field */
.custom-upload {
  margin-top: -15px;
  margin-bottom: 30px;
}

.custom-upload .gform_fileupload_rules {
  display: none !important;
}

.custom-upload ::-webkit-file-upload-button {
  background: #44BFB8;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  padding: 12px 60px 12px 30px;
  cursor: pointer;
  margin-right: 20px;
  min-height: 50px;
  width: 150px;
}

.custom-upload .ginput_container {
  position: relative;
  /*border: 1px #21234F solid;*/
  border-radius: 10px;
}

.custom-upload input {
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
}

.custom-upload .gform-field-label {
  display: none;
  font-size: 16px;
}

/*.custom-upload .ginput_container:after{
    content: '';
    background: url(../images/svg/upload-icon.svg) no-repeat;
    width: 15px;
    height: 16px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 135px;
    margin: auto;
    transition: top .5s ease;
    pointer-events: none;
}*/
.custom-upload .ginput_container:hover:after {
  top: -10px;
}

.custom-upload input {
  padding: 0;
}

.form-alert {
  border: 1px solid #DAE0E6;
  background-color: #F8F9FB;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 4px;
}

.form-alert span {
  position: relative;
  padding-left: 39px;
}

.form-alert span:before {
  content: "";
  background: url(../images/svg/ico-warning.svg) no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: top 0.5s ease;
  pointer-events: none;
}

.gc-onboard h6 {
  background: #00739E;
  padding: 15px 40px;
  border-radius: 25px;
  Color: #fff;
  margin-top: 20px;
}

.gc-onboard input[type=submit] {
  background: linear-gradient(90deg, var(--c1, #3C506B), var(--c2, #1C2544) 48%) var(--x, 0%)/200%;
  color: #FFF;
  margin-top: 20px;
}

.gc-onboard input[type=submit]:hover {
  --x: 100%;
}

@media only screen and (max-width: 767px) {
  .custom-upload {
    display: block;
  }
  .custom-upload .ginput_container .large {
    /*padding: 14px;*/
    margin: 10px 0 0 0;
  }
  .custom-upload .gfield_label {
    text-align: center;
  }
  .custom-upload .gfield_label {
    /*display: inline-block*/
  }
  .custom-upload .ginput_container_fileupload {
    max-width: 100%;
  }
}
/* Custom Tabs 1 */
.custom-tab-1 .e-n-tab-title[aria-selected=true] {
  border-bottom: 4px #0AA689 solid;
}

.custom-tab-1 .e-n-tab-title {
  border-bottom: 4px #09403A solid;
}

.custom-tab-1 .e-n-tabs {
  gap: 30px;
}

.custom-tab-1 .e-n-tabs-heading {
  justify-content: center;
  gap: 0;
}

.custom-tab-1 .e-n-tab-title {
  color: inherit !important;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent !important;
  border-bottom: 4px #09403A solid;
  padding: 15px 35px;
  line-height: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  transition: color 0.3s ease, border-bottom 0.3s ease, opacity 0.3s ease;
}

.custom-tab-1 .e-n-tab-title:hover {
  color: inherit !important;
  background-color: transparent !important;
  border-bottom: 4px #0AA689 solid;
  opacity: 1;
}

.custom-tab-1 .e-n-tab-title[aria-selected=true] {
  background-color: transparent !important;
  border-bottom: 4px #0AA689 solid;
  opacity: 1;
}

@media (max-width: 1023px) {
  .custom-tab-1 .e-n-tabs {
    gap: 10px;
  }
  .custom-tab-1 .e-n-tab-title {
    padding: 10px 10px;
  }
}
@media (max-width: 767px) {
  .custom-tab-1 .e-n-tab-title-text {
    text-align: left;
  }
  .custom-tab-1 .e-n-tab-title {
    justify-content: start;
    line-height: 1.4;
  }
  .custom-tab-1 .e-n-tab-title:after {
    content: "\e90d";
    font-family: "icomoon";
    font-weight: normal;
    font-size: 22px;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 8px;
  }
  .custom-tab-1 .e-n-tab-title[aria-selected=true]:after {
    content: "\e90b";
  }
}
/* End Custom Tabs 1 */
.custom-tab-2 .e-n-tabs {
  align-items: flex-start;
  gap: 0 !important;
}
.custom-tab-2 .e-n-tabs-heading {
  overflow: hidden;
  gap: 0 !important;
  background: linear-gradient(180deg, #50CEF8 -29.18%, #28A0EF 100%);
  box-shadow: 0px 0px 13px rgba(2, 6, 19, 0.09);
  border-radius: 0px 0px 0px 8px;
}
.custom-tab-2 .e-n-tabs-content {
  background: #fff;
  box-shadow: 0px 0px 13px rgba(2, 6, 19, 0.09);
}
.custom-tab-2 .e-n-tab-title {
  background-color: transparent !important;
  font-weight: 700;
}
.custom-tab-2 .e-n-tab-title:hover,
.custom-tab-2 .e-n-tab-title[aria-selected=true],
.custom-tab-2 .e-n-tab-title[aria-selected=false]:hover {
  background-color: #fff !important;
  color: #1C1E25 !important;
}
.custom-tab-2 .e-n-tab-title[aria-selected=false],
.custom-tab-2 .e-n-tab-title[aria-selected=false] a {
  color: #FFF;
}
@media (max-width: 767px) {
  .custom-tab-2 .e-n-tabs {
    align-items: stretch;
    box-shadow: 0px 0px 13px rgba(2, 6, 19, 0.09);
  }
  .custom-tab-2 .e-n-tab-title {
    background-color: transparent !important;
    border-bottom: 4px #dedede solid;
    margin: 0px !important;
  }
  .custom-tab-2 .e-n-tab-title:hover,
  .custom-tab-2 .e-n-tab-title[aria-selected=true] {
    background-color: transparent !important;
    border-bottom: 4px #23262a solid;
    color: #23262a !important;
  }
}

body .gform_wrapper h2.gform_title {
  display: none !important;
}

@media (max-width: 1023px) {
  .tablet-ml-auto {
    margin-left: auto;
  }
  .tablet-mr-auto {
    margin-right: auto;
  }
  .tablet-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .tablet-text-center {
    text-align: center;
  }
  .tablet-cols-fullwidth.e-con > .e-con-inner {
    flex-wrap: wrap;
  }
  .tablet-cols-fullwidth.e-con > .e-con-inner > .e-con {
    width: 100%;
  }
}
/* Toggle Height */
.toggle_height_el_con {
  height: 0;
  overflow: hidden;
  transition: height 600ms ease;
}

@media (max-width: 767px) {
  .mobile-ml-auto {
    margin-left: auto;
  }
  .mobile-mr-auto {
    margin-right: auto;
  }
  .mobile-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .mobile-text-center {
    text-align: center;
  }
}
/*# sourceMappingURL=global.css.map */
