:root {
  --primaryColor: #0070D5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #272727;
  font-size: var(--bodyFontSize);
  line-height: 1.5;
  text-rendering: optimizeLegibility !important;
  -webkit-fontsmoothing: antialiased !important;
}

body.menu-open {
  overflow-y: hidden;
}

.container {
  max-width: 1270px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

/**
 * Basic styles for input fields
 */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

section {
  scroll-margin-top: 75px;
}

.site-overlay {
  height: 100vh;
  width: 100vw;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.55);
  display: block !important;
  z-index: 10;
  opacity: 0;
  bottom: 0;
  pointer-events: none;
  user-select: none;
  -webkit-transition: opacity 400ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  -moz-transition: opacity 400ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  -ms-transition: opacity 400ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  -o-transform: opacity 400ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  transition: opacity 400ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
}
.site-overlay.show {
  opacity: 0.63;
  user-select: all;
  pointer-events: all;
}

.d-none {
  display: none !important;
}

.section-title {
  margin-bottom: 34px;
}

.sub-head {
  font-size: var(--fontSubHeader);
}

.upper-title {
  font-size: var(--fontUpperText);
  font-weight: 600;
  margin-bottom: 23px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.text-center {
  text-align: center;
}

.align-items-center {
  align-items: center;
}

.bg-grey {
  background: #ECF0F3;
}

section {
  margin: 195px 0px;
}

.page-wrap {
  overflow: hidden;
}

.page-wrap section:first-child {
  margin: 0;
}

.w-100 {
  width: 100%;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.sec-info {
  margin-bottom: 38px;
}

.read-btn {
  font-weight: 600;
  font-size: var(--fontReadMore);
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid #272727;
  padding-bottom: 4px;
  display: table;
  color: #272727;
}
.read-btn:hover {
  color: var(--primaryColor);
  border-color: var(--primaryColor);
}

@media (max-width: 1280px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 1040px) {
  .container {
    max-width: 670px;
  }
  section {
    margin: 110px 0px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .upper-title {
    margin-bottom: 16px;
  }
  .sec-info {
    margin-bottom: 34px;
  }
}
@media (max-width: 640px) {
  .container {
    max-width: 360px;
  }
  section {
    margin: 90px 0px;
  }
  .sec-info {
    margin-bottom: 30px;
  }
}
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}

@media (min-width: 1920px) {
  .dxxl-col-1 {
    grid-column: span 1 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-1 {
    grid-column: span 1 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-1 {
    grid-column: span 1 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-1 {
    grid-column: span 1 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-1 {
    grid-column: span 1 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-1 {
    grid-column: span 1 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-1 {
    grid-column: span 1 !important;
  }
}

.col-1 {
  grid-column: span 1;
}

@media (min-width: 1920px) {
  .dxxl-col-2 {
    grid-column: span 2 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-2 {
    grid-column: span 2 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-2 {
    grid-column: span 2 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-2 {
    grid-column: span 2 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-2 {
    grid-column: span 2 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-2 {
    grid-column: span 2 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-2 {
    grid-column: span 2 !important;
  }
}

.col-2 {
  grid-column: span 2;
}

@media (min-width: 1920px) {
  .dxxl-col-3 {
    grid-column: span 3 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-3 {
    grid-column: span 3 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-3 {
    grid-column: span 3 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-3 {
    grid-column: span 3 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-3 {
    grid-column: span 3 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-3 {
    grid-column: span 3 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-3 {
    grid-column: span 3 !important;
  }
}

.col-3 {
  grid-column: span 3;
}

@media (min-width: 1920px) {
  .dxxl-col-4 {
    grid-column: span 4 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-4 {
    grid-column: span 4 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-4 {
    grid-column: span 4 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-4 {
    grid-column: span 4 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-4 {
    grid-column: span 4 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-4 {
    grid-column: span 4 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-4 {
    grid-column: span 4 !important;
  }
}

.col-4 {
  grid-column: span 4;
}

@media (min-width: 1920px) {
  .dxxl-col-5 {
    grid-column: span 5 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-5 {
    grid-column: span 5 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-5 {
    grid-column: span 5 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-5 {
    grid-column: span 5 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-5 {
    grid-column: span 5 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-5 {
    grid-column: span 5 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-5 {
    grid-column: span 5 !important;
  }
}

.col-5 {
  grid-column: span 5;
}

@media (min-width: 1920px) {
  .dxxl-col-6 {
    grid-column: span 6 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-6 {
    grid-column: span 6 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-6 {
    grid-column: span 6 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-6 {
    grid-column: span 6 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-6 {
    grid-column: span 6 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-6 {
    grid-column: span 6 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-6 {
    grid-column: span 6 !important;
  }
}

.col-6 {
  grid-column: span 6;
}

@media (min-width: 1920px) {
  .dxxl-col-7 {
    grid-column: span 7 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-7 {
    grid-column: span 7 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-7 {
    grid-column: span 7 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-7 {
    grid-column: span 7 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-7 {
    grid-column: span 7 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-7 {
    grid-column: span 7 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-7 {
    grid-column: span 7 !important;
  }
}

.col-7 {
  grid-column: span 7;
}

@media (min-width: 1920px) {
  .dxxl-col-8 {
    grid-column: span 8 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-8 {
    grid-column: span 8 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-8 {
    grid-column: span 8 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-8 {
    grid-column: span 8 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-8 {
    grid-column: span 8 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-8 {
    grid-column: span 8 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-8 {
    grid-column: span 8 !important;
  }
}

.col-8 {
  grid-column: span 8;
}

@media (min-width: 1920px) {
  .dxxl-col-9 {
    grid-column: span 9 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-9 {
    grid-column: span 9 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-9 {
    grid-column: span 9 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-9 {
    grid-column: span 9 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-9 {
    grid-column: span 9 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-9 {
    grid-column: span 9 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-9 {
    grid-column: span 9 !important;
  }
}

.col-9 {
  grid-column: span 9;
}

@media (min-width: 1920px) {
  .dxxl-col-10 {
    grid-column: span 10 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-10 {
    grid-column: span 10 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-10 {
    grid-column: span 10 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-10 {
    grid-column: span 10 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-10 {
    grid-column: span 10 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-10 {
    grid-column: span 10 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-10 {
    grid-column: span 10 !important;
  }
}

.col-10 {
  grid-column: span 10;
}

@media (min-width: 1920px) {
  .dxxl-col-11 {
    grid-column: span 11 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-11 {
    grid-column: span 11 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-11 {
    grid-column: span 11 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-11 {
    grid-column: span 11 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-11 {
    grid-column: span 11 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-11 {
    grid-column: span 11 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-11 {
    grid-column: span 11 !important;
  }
}

.col-11 {
  grid-column: span 11;
}

@media (min-width: 1920px) {
  .dxxl-col-12 {
    grid-column: span 12 !important;
  }
}

@media (min-width: 1536px) {
  .dxl-col-12 {
    grid-column: span 12 !important;
  }
}

@media (min-width: 1366px) {
  .dlg-col-12 {
    grid-column: span 12 !important;
  }
}

@media (min-width: 1280px) {
  .dsm-col-12 {
    grid-column: span 12 !important;
  }
}

@media (min-width: 1040px) {
  .txl-col-12 {
    grid-column: span 12 !important;
  }
}

@media (min-width: 991px) {
  .tlg-col-12 {
    grid-column: span 12 !important;
  }
}

@media (min-width: 640px) {
  .mxl-col-12 {
    grid-column: span 12 !important;
  }
}

.col-12 {
  grid-column: span 12;
}

/**
 * Basic typography style for copy text
*/
:root {
  --bodyFontSize: 17px;
  --fontSizeH1:44px;
  --fontSizeH2:34px;
  --fontSizeH3:23px;
  --fontSizeH4:19px;
  --fontSizeH5:15px;
  --fontSizeH6:14px;
  --fontSubHeader: 19px;
  --fontUpperText: 15px;
  --fontSubtext: 15px;
  --fontReadMore: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

h1 {
  font-size: var(--fontSizeH1);
  line-height: 1.2;
}

h2 {
  font-size: var(--fontSizeH2);
  line-height: 1.25;
  margin-bottom: 27px;
}

h3 {
  font-size: var(--fontSizeH3);
  line-height: 1.25;
}

h4 {
  font-size: var(--fontSizeH4);
}

h5 {
  font-size: var(--fontSizeH5);
}

h1, h2, h3, h4, h5, h6, p, a, button, li {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

li, p {
  font-family: "Open Sans", sans-serif;
  font-size: var(--bodyFontSize);
  line-height: 1.5;
}
li + p, p + p {
  margin-top: 1.5em;
}

a {
  text-decoration: none;
  color: var(--primaryColor);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

p a:hover {
  text-decoration: underline;
}

a:hover, a:focus, a:active,
button:hover,
button:focus,
button:active,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit]:active {
  outline: none !important;
}

@media (max-width: 1280px) {
  :root {
    --bodyFontSize: 16px;
    --fontSizeH1: 40px;
    --fontSizeH3:20px;
    --fontSizeH4:17px;
    --fontSubHeader: 17px;
    --fontSubtext:13px;
  }
}
@media (max-width: 1040px) {
  :root {
    --bodyFontSize: 15px;
    --fontSizeH1: 36px;
    --fontSizeH2:26px;
    --fontSizeH3:18px;
    --fontSizeH4:16px;
    --fontSizeH5:14px;
    --fontSizeH6:14px;
    --fontSubHeader: 16px;
    --fontUpperText: 13px;
    --fontSubtext:13px;
    --fontReadMore: 13px;
  }
  h2 {
    margin-bottom: 22px;
  }
}
@media (max-width: 640px) {
  :root {
    --bodyFontSize: 14px;
    --fontSizeH1: 34px;
    --fontSizeH2:24px;
    --fontSizeH3:16px;
    --fontSizeH4:14px;
    --fontSizeH5:13px;
    --fontSubHeader: 15px;
    --fontUpperText: 12px;
    --fontReadMore: 12px;
  }
  h2 {
    margin-bottom: 20px;
  }
}
.sm-b {
  margin: 220px 0px;
}

.sm-s {
  margin: 140px 0px;
}

.mt-0 {
  margin-top: 0;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: sticky;
  background-color: #fff;
  -webkit-transition: all ease-in-out 200ms;
  -moz-transition: all ease-in-out 200ms;
  -ms-transition: all ease-in-out 200ms;
  -o-transform: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
}

.navbar {
  display: flex;
  list-style: none;
  align-items: center;
  padding: 25px 0px;
  min-height: 75px;
}
.navbar .nav-brand {
  max-width: 70px;
}

@media (max-width: 1280px) {
  .navbar {
    padding: 20px 0px;
  }
  .navbar .nav-brand {
    max-width: 60px;
  }
}
@media (max-width: 1040px) {
  header .container {
    padding: 0 50px;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  header .container {
    padding: 0 30px;
  }
  .navbar {
    padding: 23px 0px;
  }
  .navbar .nav-brand {
    max-width: 45px;
  }
}
a, button {
  cursor: pointer;
}

.btn {
  border: none;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 25px;
  padding: 10px 25px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Open sans", sans-serif;
  transition: all ease-in-out 0.3s;
}
.btn:hover {
  text-decoration: none;
}
.btn.bp {
  color: #fff;
  background-color: #0070D5;
}
.btn.bp:hover {
  background-color: #1e66ae;
}
.btn.bbw {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
.btn.bbw i {
  filter: invert(1);
}
.btn.bbw:hover {
  background-color: #fff;
  color: #0070D5;
}
.btn.bbw:hover i {
  filter: invert(0);
}
.btn.bbb {
  border: 1px solid #272727;
  color: #272727;
  background-color: transparent;
}
.btn.bbb:hover {
  background-color: #272727;
  color: #fff;
}
.btn.b-white {
  background-color: #fff;
  color: #272727;
}
.btn.b-white:hover {
  background-color: #0070D5;
  color: #fff;
}
.btn.b-white:hover i {
  filter: invert(1);
}
.btn.btn-text {
  padding: 0;
  color: #272727;
  background: transparent;
  height: auto;
}
.btn.btn-text:hover {
  color: #0070D5;
  text-decoration: underline;
}
.btn.btn-text i {
  margin-left: 10px;
}
.btn i {
  background-image: url("./../images/btn-arrow.svg");
  width: 5px;
  height: 9px;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}

.hidden-button {
  display: none;
}

@media (max-width: 1040px) {
  .btn {
    font-size: 13px;
    height: 34px;
    padding: 10px 16px;
  }
  .btn.btn-text i {
    margin-left: 7px;
  }
}
@media (max-width: 640px) {
  .btn {
    font-size: 12px;
    height: 34px;
  }
}
.g_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  z-index: 100001;
  padding: 15px 25px;
}
.g_modal.show {
  display: flex !important;
  opacity: 1;
}
.g_modal .p_overlay {
  width: 100%;
  position: fixed;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5647058824);
  left: 0;
  top: 0;
}
.g_modal_content {
  background: #fff;
  width: 100%;
  max-width: 600px;
  position: relative;
  padding: 60px;
  text-align: center;
  max-height: calc(100% - 30px);
  position: relative;
}
.g_modal .closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  width: 22px;
  height: 22px;
  transition: all ease-in-out 0.3s;
}
.g_modal_body {
  max-height: calc(100vh - 150px);
  overflow: auto;
  line-height: 0;
}
.g_modal_body .p_title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 30px;
  padding-top: 3px;
}
@media (max-width: 1280px) {
  .g_modal_body .p_title {
    font-size: 30px;
  }
}
@media (max-width: 1040px) {
  .g_modal_body .p_title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .g_modal_body .p_title {
    font-size: 24px;
  }
}
.g_modal_body .p_desc {
  font-size: 18px;
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 1040px) {
  .g_modal_body .p_desc {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .g_modal_body .p_desc {
    font-size: 14px;
  }
}
.g_modal_body .p_desc a {
  text-decoration: underline;
  font-weight: 600;
  color: inherit;
}
.g_modal_body .p_desc a:hover {
  color: #0070D5;
}
.g_modal_body #popup-calendly-embed {
  max-width: 463px;
  margin: 0 auto;
  height: 481px;
  max-height: 481px;
}
.g_modal_body .wpcf7 {
  max-width: 362px;
  margin: 45px auto 0;
}
.g_modal_body .wpcf7 form {
  overflow: hidden;
}

@media (max-width: 1040px) {
  .g_modal_content {
    padding: 55px 60px;
  }
}
@media (max-width: 640px) {
  .g_modal_content {
    max-width: 320px !important;
    padding: 50px 30px;
  }
  .g_modal_content:has(#popup-calendly-embed) {
    padding: 50px 10px 10px;
  }
  .g_modal_content:has(#popup-calendly-embed) .p_desc {
    padding: 0 20px;
  }
}
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-focus-ring-color: none;
  outline: none;
  font-family: "Open Sans", sans-serif;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  font-family: "Open Sans", sans-serif;
}

fieldset {
  border: none;
}

.f-wrap {
  position: relative;
}
.f-wrap .f-body.hide {
  visibility: hidden;
  opacity: 0;
}
.f-wrap .thank-msg {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.3s;
  text-align: center;
}
.f-wrap .thank-msg.show {
  visibility: visible;
  opacity: 1;
}
.f-wrap .thank-msg h3 {
  margin: 25px 0px;
}
.f-wrap .thank-msg img {
  margin: 0 auto;
  max-width: 80px;
}

.fake-field.fake-select {
  position: relative;
}
.fake-field.fake-select.error-field .fake-field-input input.form-field {
  border-color: #FF0000;
}
.fake-field.fake-select.active .fake-field-input span.arrow {
  -webkit-transform: translateY(-50%) scaleY(-1);
  -moz-transform: translateY(-50%) scaleY(-1);
  -ms-transform: translateY(-50%) scaleY(-1);
  -o-transform: translateY(-50%) scaleY(-1);
  transform: translateY(-50%) scaleY(-1);
}
.fake-field.fake-select .fake-field-input {
  position: relative;
  cursor: pointer;
}
.fake-field.fake-select .fake-field-input .form-field {
  padding-right: 50px;
}
.fake-field.fake-select .fake-field-input span.arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) scaleY(1);
  -moz-transform: translateY(-50%) scaleY(1);
  -ms-transform: translateY(-50%) scaleY(1);
  -o-transform: translateY(-50%) scaleY(1);
  transform: translateY(-50%) scaleY(1);
  -webkit-transition: transform 300ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  -moz-transition: transform 300ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  -ms-transition: transform 300ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  -o-transform: transform 300ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  transition: transform 300ms cubic-bezier(0.31, 0.01, 0.57, 0.97);
  background-image: url(/wp-content/themes/custom-theme/app/images/select-arrow.svg);
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center center;
}
.fake-field.fake-select .fake-select-container {
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #F6F6F6;
  z-index: 1;
}
.fake-field.fake-select .fake-select-container .fake-select-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fake-field.fake-select .fake-select-container .fake-select-list li {
  box-sizing: border-box;
  padding: 14px 30px;
  color: #1a1a1a;
  background-color: #F6F6F6;
  font-weight: 400;
  text-align: left;
  border-top: 0.5px solid rgba(0, 0, 0, 0.4);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.fake-field.fake-select .fake-select-container .fake-select-list li:hover {
  background-color: #EDEDED;
}
@media (max-width: 640px) {
  .fake-field.fake-select .fake-select-container .fake-select-list li {
    padding: 8px 30px;
    font-size: 15px;
  }
}

form {
  position: relative;
}
form::after, form::before {
  content: "";
  position: absolute;
  visibility: hidden;
}
form::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: #fff;
  z-index: 5;
}
form::before {
  border: 8px solid #dfdfdf;
  border-top: 8px solid var(--primaryColor);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 6;
}
form.submitting::before, form.submitting::after {
  visibility: visible;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
form .field-row {
  display: grid;
  gap: 28px;
}
form .field {
  position: relative;
  width: 100%;
}
form .field > span {
  display: block;
  line-height: 1;
}
form .field input, form .field textarea {
  background-color: #fff;
  padding: 8.5px 28px;
  border: none;
  border-radius: 20px;
  width: 100%;
  font-size: 15px;
  border: 1px solid #fff;
}
form .field input:focus, form .field textarea:focus {
  border-color: var(--primaryColor);
}
form .field input.error-field, form .field textarea.error-field {
  border-color: #FF0000;
}
form .field textarea {
  border-radius: 17px;
  resize: none;
  height: 138px;
  overflow: auto;
}
form .field input {
  min-height: 39px;
}
form .field.border input, form .field.border textarea {
  border: 1px solid rgba(39, 39, 39, 0.5019607843);
}
form .field.border input.error-field, form .field.border textarea.error-field {
  border-color: #FF0000;
}
form .error {
  position: absolute;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #ff0000;
  left: 25px;
  top: calc(100% + 4px);
}
form .fake-field + .error {
  left: 18px;
}

.wpcf7-response-output,
.screen-reader-response,
span.wpcf7-not-valid-tip {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 1040px) {
  form .field input, form .field textarea {
    font-size: 13px;
    min-height: 34px;
    padding: 7px 25px;
  }
  form .field-row {
    gap: 26px;
  }
  .f-wrap .thank-msg img {
    max-width: 60px;
  }
}
@media (max-width: 640px) {
  form .field input, form .field textarea {
    font-size: 12px;
  }
  form .error {
    font-size: 11px;
  }
}
.subscription-trial {
  padding: 0px 0px 35px;
}
.subscription-trial .row {
  display: grid;
  grid-template-columns: 605px 1fr;
  align-items: center;
}
.subscription-trial .left-wrap h1 {
  font-size: var(--fontSizeH2);
  margin-bottom: 47px;
}
.subscription-trial .left-wrap .field-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px 0px;
}
.subscription-trial .left-wrap .field-row .f50 {
  width: calc(50% - 14px);
}
.subscription-trial .left-wrap .btn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
  text-align: center;
}
.subscription-trial .left-wrap .f-body.hide {
  opacity: 1;
  visibility: visible;
}
.subscription-trial .img-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.subscription-trial .img-wrap img {
  max-width: 480px;
}
.subscription-trial .img-wrap .img-caption {
  position: absolute;
  right: 0px;
  bottom: 12px;
  border-radius: 17px;
  background-color: #FFFFFF;
  padding: 28px 19px;
  width: 264px;
  -webkit-box-shadow: 0px 1px 6.8px 0px rgba(156, 156, 156, 0.3019607843);
  -moz-box-shadow: 0px 1px 6.8px 0px rgba(156, 156, 156, 0.3019607843);
  -ms-box-shadow: 0px 1px 6.8px 0px rgba(156, 156, 156, 0.3019607843);
  -o-box-shadow: 0px 1px 6.8px 0px rgba(156, 156, 156, 0.3019607843);
  box-shadow: 0px 1px 6.8px 0px rgba(156, 156, 156, 0.3019607843);
}
.subscription-trial .img-wrap .img-caption::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50px;
  bottom: -14.5px;
  right: 20px;
  width: 23px;
  height: 23px;
  background-color: #13255C;
}
.subscription-trial .img-wrap .img-caption h3 {
  font-size: 22px;
  margin: 0 0 19px;
}
.subscription-trial .img-wrap .img-caption p {
  font-size: 15px;
  line-height: 22px;
  margin: 0;
}
.subscription-trial .img-wrap .img-caption p a {
  color: #3B3B3B;
}

@media (max-width: 1280px) {
  .subscription-trial .row {
    grid-template-columns: 505px 1fr;
  }
  .subscription-trial .img-wrap img {
    max-width: 350px;
  }
  .subscription-trial .img-wrap .img-caption {
    bottom: 0;
    padding: 16px 17px;
    width: 187px;
  }
  .subscription-trial .img-wrap .img-caption::after {
    bottom: -10px;
    right: 22px;
    width: 20px;
    height: 20px;
  }
  .subscription-trial .img-wrap .img-caption h3 {
    font-size: 16px;
    margin: 0 0 14px;
  }
  .subscription-trial .img-wrap .img-caption p {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 1040px) {
  .subscription-trial {
    padding-top: 20px;
  }
  .subscription-trial .row {
    grid-template-columns: 297px 1fr;
  }
  .subscription-trial .img-wrap img {
    max-width: 263px;
  }
  .subscription-trial .left-wrap h1 {
    margin-bottom: 45px;
  }
  .subscription-trial .left-wrap .field-row {
    gap: 26px 0px;
  }
  .subscription-trial .left-wrap .field-row .f50 {
    width: 100%;
  }
  .subscription-trial .left-wrap .btn-wrap {
    gap: 0;
    grid-template-columns: 125px 1fr;
  }
}
@media (max-width: 640px) {
  .subscription-trial {
    padding-top: 0px;
  }
  .subscription-trial .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
  .subscription-trial .img-wrap img {
    max-width: 238px;
  }
  .subscription-trial .img-wrap .img-caption {
    bottom: 10px;
    background-color: #FFFFFF;
    padding: 12px;
    width: 150px;
  }
  .subscription-trial .img-wrap .img-caption::after {
    bottom: -6px;
    right: 15px;
    width: 12x;
    height: 12px;
  }
  .subscription-trial .img-wrap .img-caption h3 {
    font-size: 13px;
    margin: 0 0 12px;
  }
  .subscription-trial .img-wrap .img-caption p {
    font-size: 11px;
    line-height: 15px;
  }
  .subscription-trial .left-wrap h1 {
    margin-bottom: 31px;
    text-align: center;
  }
  .subscription-trial .left-wrap .btn-wrap {
    gap: 0;
    grid-template-columns: 118px 1fr;
  }
}

/*# sourceMappingURL=subscription-trial.css.map */
