/*--------------------------------------------------------------
## Basic Color
----------------------------------------------------------------*/
/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Preloader
3. Spacing
4. General
5. Slider
6. Header
7. Footer
8. Hero
9. Iconbox
10. Post
11. Pricing Table
12. Testimonial
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

body,
html {
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: #1C2528;
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.2em;
  font-family: 'Poppins', sans-serif;
}

.theme-font {
  letter-spacing: 0.02em;
}

.theme-font,
.default-button {
  font-family: 'Poppins', sans-serif;
}

.body-font {
  font-family: 'Inter', sans-serif;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

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

a,
.default-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover,
.default-link:hover {
  text-decoration: none;
  color: #5E87E6;
}

table {
  width: 100%;
  margin-bottom: 25px;
}

table th {
  font-weight: 600;
  color: #6B6B6B;
}

table td,
table th {
  border-top: 1px solid #E5E5E5;
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}

dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: #6B6B6B;
  border: 1px solid #E5E5E5;
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: #6B6B6B;
  border-radius: 5px;
}

:root {
  scroll-behavior: initial;
}

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

  body,
  html {
    font-size: 16px;
    line-height: 1.6em;
  }

  h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
2. Preloader
----------------------------------------------------------------*/
.preloading-screen {
  position: fixed;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 100vh;
}

.preloader-background {
  text-align: center;
  height: 100%;
  width: 100%;
}

.preloader-content {
  width: 120px;
  height: 120px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 35px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.preloader-content:after {
  content: "";
  border-width: 3px;
  border-style: solid;
  border-color: rgba(105, 144, 255, 0.2);
  border-top-color: #5E87E6;
  border-radius: 50%;
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  left: 50%;
  top: 50%;
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  margin-left: -60px;
  margin-top: -60px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
3. Spacing
----------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
  .element-height-0 {
    height: 0px;
  }

  .element-height-5 {
    height: 5px;
  }

  .element-height-10 {
    height: 10px;
  }

  .element-height-15 {
    height: 15px;
  }

  .element-height-20 {
    height: 20px;
  }

  .element-height-25 {
    height: 25px;
  }

  .element-height-30 {
    height: 30px;
  }

  .element-height-35 {
    height: 35px;
  }

  .element-height-40 {
    height: 40px;
  }

  .element-height-45 {
    height: 45px;
  }

  .element-height-50 {
    height: 50px;
  }

  .element-height-55 {
    height: 55px;
  }

  .element-height-60 {
    height: 60px;
  }

  .element-height-65 {
    height: 65px;
  }

  .element-height-70 {
    height: 70px;
  }

  .element-height-75 {
    height: 75px;
  }

  .element-height-80 {
    height: 80px;
  }

  .element-height-85 {
    height: 85px;
  }

  .element-height-90 {
    height: 90px;
  }

  .element-height-lg-95 {
    height: 95px;
  }

  .element-height-100 {
    height: 100px;
  }

  .element-height-105 {
    height: 105px;
  }

  .element-height-110 {
    height: 110px;
  }

  .element-height-115 {
    height: 115px;
  }

  .element-height-120 {
    height: 120px;
  }

  .element-height-125 {
    height: 125px;
  }

  .element-height-130 {
    height: 130px;
  }

  .element-height-135 {
    height: 135px;
  }

  .element-height-140 {
    height: 140px;
  }

  .element-height-145 {
    height: 145px;
  }

  .element-height-150 {
    height: 150px;
  }

  .element-height-155 {
    height: 155px;
  }

  .element-height-160 {
    height: 160px;
  }

  .element-height-165 {
    height: 165px;
  }

  .element-height-170 {
    height: 170px;
  }

  .element-height-175 {
    height: 175px;
  }

  .element-height-180 {
    height: 180px;
  }

  .element-height-185 {
    height: 185px;
  }

  .element-height-190 {
    height: 190px;
  }

  .element-height-195 {
    height: 195px;
  }

  .element-height-200 {
    height: 200px;
  }

  .element-height-205 {
    height: 205px;
  }

  .element-height-210 {
    height: 210px;
  }
}

@media screen and (max-width: 1199px) {
  .height-lg-zero {
    height: 0px;
  }

  .cs-height_lg_5 {
    height: 5px;
  }

  .height-lg-ten {
    height: 10px;
  }

  .height-lg-fifteen {
    height: 15px;
  }

  .height-lg-twenty {
    height: 20px;
  }

  .height-lg-twenty-five {
    height: 25px;
  }

  .height-lg-thirty {
    height: 30px;
  }

  .height-lg-thirty-five {
    height: 35px;
  }

  .height-lg-forty {
    height: 40px;
  }

  .height-lg-forty-five {
    height: 45px;
  }

  .height-lg-fifty {
    height: 50px;
  }

  .height-lg-fifty-five {
    height: 55px;
  }

  .height-lg-sixty {
    height: 60px;
  }

  .height-lg-sixty-five {
    height: 65px;
  }

  .height-lg-seventy {
    height: 70px;
  }

  .height-lg-seventy-five {
    height: 75px;
  }

  .height-lg-eighty {
    height: 80px;
  }

  .height-lg-eighty-five {
    height: 85px;
  }

  .height-lg-ninety {
    height: 90px;
  }

  .height-lg-ninety-five {
    height: 95px;
  }

  .height-lg-hundred {
    height: 100px;
  }

  .height-lg-hundred-five {
    height: 105px;
  }

  .height-lg-hundred-ten {
    height: 110px;
  }

  .height-lg-hundred-fifteen {
    height: 115px;
  }

  .height-lg-hundred-twenty {
    height: 120px;
  }

  .height-lg-hundred-twenty-five {
    height: 125px;
  }

  .height-lg-hundred-thirty {
    height: 130px;
  }

  .height-lg-hundred-thirty-five {
    height: 135px;
  }

  .height-lg-hundred-forty {
    height: 140px;
  }

  .height-lg-hundred-forty-five {
    height: 145px;
  }

  .height-lg-hundred-fifty {
    height: 150px;
  }

  .height-lg-hundred-fifty-five {
    height: 155px;
  }

  .height-lg-hundred-sixty {
    height: 160px;
  }

  .height-lg-hundred-sixty-five {
    height: 165px;
  }

  .height-lg-hundred-seventy {
    height: 170px;
  }

  .height-lg-hundred-seventy-five {
    height: 175px;
  }

  .height-lg-hundred-eighty {
    height: 180px;
  }

  .height-lg-hundred-eighty-five {
    height: 185px;
  }

  .height-lg-hundred-ninety {
    height: 190px;
  }

  .height-lg-hundred-ninety-five {
    height: 195px;
  }

  .height-lg-two-hundred {
    height: 200px;
  }

  .height-lg-two-hundred-five {
    height: 205px;
  }

  .height-lg-two-hundred-ten {
    height: 210px;
  }
}

/*--------------------------------------------------------------
4. General
----------------------------------------------------------------*/
.font-weight-light {
  font-weight: 300;
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-medium {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-extra {
  font-weight: 800;
}

.font-color-black {
  font-weight: 900;
}

.element-radius-3 {
  border-radius: 3px;
}

.element-radius-5 {
  border-radius: 5px;
}

.element-radius-7 {
  border-radius: 7px;
}

.element-radius-10 {
  border-radius: 10px;
}

.body-text-tight {
  line-height: 1.5em;
}

.heading-tight {
  line-height: 1.2em;
}

.margin-padding-zero {
  list-style: none;
  margin: 0;
  padding: 0;
}

.margin-zero {
  margin: 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid #f2f1ff;
}

.element-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}

.vertical-align-content {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
}

.text-align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs-white_color,
.cs-white_color_hover:hover {
  color: #fff;
}

.theme-primary-color {
  color: #1C2528;
}

.cs-accent_color,
.cs-accent_color_hover:hover {
  color: #5E87E6;
}

.background-color-white {
  background-color: #fff;
}

.background-color-gray {
  background-color: #F4F6F9;
}

.cs-accent_bg,
.cs-accent_bg_hover:hover {
  background-color: #5E87E6;
}

.cs-primary_bg,
.cs-primary_bg_hover:hover {
  background-color: #1C2528;
}

.gradient-background-one {
  background: linear-gradient(257.51deg, #F2FCFE 44.07%, #FAF1FE 100%);
}

.accent-divider {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, currentColor), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, currentColor 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 31px 1px;
  background-repeat: repeat-x;
  height: 1px;
  margin-bottom: -24px;
}

.content-left {
  height: 100%;
  width: 50vw;
  margin-left: calc(-50vw + 101.9%);
}

.content-left.vertical-space-110 {
  padding-right: 110px;
}

.content-left.vertical-space-40 {
  padding-right: 40px;
}

.content-right {
  height: 100%;
  width: calc(50vw - 0px);
  margin-left: -15px;
  position: relative;
}

.image-left {
  text-align: right;
}

.image-right {
  text-align: left;
}

.default-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #5E87E6;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.6em;
  overflow: hidden;
  padding: 0;
  min-width: 150px;
}

.default-button:after,
.default-button:before {
  content: '';
  position: absolute;
  height: 12px;
  width: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: -15px;
  margin-top: -7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.default-button:after {
  background-color: #fff;
  z-index: 2;
}

.default-button:before {
  border: 1px solid #5E87E6;
  z-index: 3;
}

.default-button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 12px 25px;
  width: 100%;
  text-align: center;
}

.default-button span:before {
  content: '';
  position: absolute;
  height: 110%;
  width: 0%;
  background: rgba(0, 0, 0, 0.3);
  left: -3px;
  top: -3px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 5px;
  z-index: -1;
}

.default-button:hover {
  color: #fff;
}

.default-button:hover:after {
  left: -6px;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.default-button:hover:before {
  left: -9px;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.default-button:hover span:before {
  width: 110%;
  height: 110%;
  opacity: 1;
}

.default-button:focus {
  outline: none;
  color: #fff;
}

.default-button.theme-color-one {
  background-color: #4DB8B5;
}

.default-button.cs-size_md span {
  padding: 10px 25px;
}

.button-outlined {
  border-color: #1C2528;
}

.button-outlined:hover {
  border-color: #1C2528;
  color: #fff;
  background-color: #1C2528;
}

.cs-btn_filed::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-color: rgba(28, 37, 40, 0.2);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs-btn_filed:hover::after {
  opacity: 1;
}

.button-accent {
  color: #fff;
  background-color: #5E87E6;
  border-color: #5E87E6;
}

.button-accent:hover {
  color: #fff;
}

.button-white-default {
  background-color: #fff;
  border-color: #fff;
  color: #1C2528;
}

.button-white-default:hover {
  background-color: transparent;
  color: #fff;
}

.button-white-default:hover:after {
  background-color: rgba(255, 255, 255, 0.15);
}

.button-white-alt {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button-white-alt:hover {
  background-color: transparent;
  color: #fff;
}

.button-white-alt:hover:after {
  background-color: rgba(255, 255, 255, 0.15);
}

.theme-button {
  color: #fff;
  background-color: #1C2528;
  border-color: #1C2528;
}

.theme-button:hover {
  color: #fff;
  background-color: #5E87E6;
  border-color: #5E87E6;
}

.theme-button:hover::after {
  opacity: 0;
}

.cs-seciton_heading.layout-style-one .section-heading {
  font-size: 42px;
  margin-bottom: 0;
}

.cs-seciton_heading.layout-style-one .section-description {
  color: #4DB8B5;
  margin-bottom: 0;
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-group>*:not(:last-child) {
  margin-right: 20px;
}

.video-play-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video-play-button span {
  margin-left: 10px;
}

.shape-container {
  position: relative;
  overflow: hidden;
}

.shape-container .section-shape {
  position: absolute;
  pointer-events: none;
}

.shape-container .shape-position-one {
  left: 0;
  bottom: 0;
  opacity: 0.2;
}

.shape-container .shape-position-two {
  right: 0;
  bottom: 0;
  opacity: 0.2;
}

.shape-container>*:not(.section-shape) {
  position: relative;
  z-index: 1;
}

.logo-slider {
  height: 100px;
  padding: 10px;
}

.contact-form-heading {
  font-size: 20px;
  margin-bottom: 25px;
}

.form-input-field {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  padding: 9px 20px;
  border-radius: 7px;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-input-field:focus {
  border-color: #5E87E6;
}

.content-right {
  width: calc(50vw - 12px);
  padding-right: 24px;
}

.accordion-section {
  border-radius: 10px;
  overflow: hidden;
}

.accordion-title-bar {
  padding: 22px 60px 22px 30px;
  font-size: 18px;
  margin: 0;
}

.accordion-title-bar span {
  color: #5E87E6;
}

.accordion-header {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-button {
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: #fff;
  top: 18px;
  right: 20px;
  border-radius: 50%;
  color: #5E87E6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-section.is-active .accordion-button {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-section:not(.is-active):hover .accordion-header {
  background-color: rgba(105, 144, 255, 0.15);
}

.accordion-content {
  margin-top: -5px;
  padding: 0 60px 22px 30px;
}

.footer-area {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(105, 144, 255, 0.1)), color-stop(95.61%, transparent));
  background: linear-gradient(0deg, rgba(105, 144, 255, 0.1) 0%, transparent 95.61%);
}

.hide-on-dark-mode {
  display: inline-block;
}

.hide-on-light {
  display: none;
}

.page-modal {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(28, 37, 40, 0.9);
  width: 100vw;
  height: 100vh;
  z-index: 300;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
}

.page-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-wrapper {
  width: 100%;
  max-width: 1230px;
  margin: auto;
  position: relative;
  z-index: 2;
  padding-left: 60px;
  padding-right: 60px;
  border-radius: 10px;
}

.modal-content-wrapper {
  padding: 60px 20px 30px;
}

.modal-close-button {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.list-layout-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-layout-one .list-item-image {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 105px;
  margin-left: 30px;
}

.cs-list.layout-style-one li {
  position: relative;
  padding-left: 32px;
}

.cs-list.layout-style-one li .list-item-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
}

.cs-list.layout-style-one li:not(:last-child) {
  margin-bottom: 20px;
}

.cs-list.layout-style-one h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.cs-list.layout-style-one p {
  margin-bottom: 0;
}

.modal-close {
  padding: 0;
  border: none;
  height: 32px;
  width: 32px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: #1C2528;
  border-radius: 5px;
}

.modal-close:hover {
  background-color: red;
}

.full-width-container {
  padding-left: 100px;
  padding-right: 100px;
}

.fun-fact-layout-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #5E87E6;
  border-radius: 10px;
  padding: 85px 0;
  position: relative;
  z-index: 2;
}

@media(max-width: 1100px) {
  .fun-fact-layout-one {
    flex-wrap: wrap;
  }
}

.fun-fact-layout-one.element-type-one {
  margin-top: -135px;
  margin-bottom: -135px;
}

.fun-fact-layout-one .cs-funfact.layout-style-one:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cs-funfact.layout-style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 4.5%;
}

.cs-funfact.layout-style-one .fun-fact-icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 20px;
}

.cs-funfact.layout-style-one .fun-fact-icon img {
    width: 70%;
}

.cs-funfact.layout-style-one .fun-fact-value {
  font-size: 45px;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
}

.cs-funfact.layout-style-one .fun-fact-heading {
  font-size: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.testimonial-item {
  width: 82px;
  height: 14px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-item>img {
  opacity: 0.3;
}

.testimonial-item .testimonial-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonial-item img {
  width: 82px;
  height: 14px;
  max-width: 82px;
}

.testimonial-client {
  height: 150px;
  border-radius: 10px;
  padding: 10px;
}

.button-with-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5E87E6;
  cursor: pointer;
}

.button-with-text span {
  display: inline-block;
  position: relative;
}

.button-with-text span:before {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 2px;
  left: 0;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.button-with-text:hover span::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.checkbox-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: inline-block;
}

.checkbox-input a {
  position: relative;
  z-index: 5;
}

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

.checkbox-input input:checked+label::before {
  background-color: #5E87E6;
  border-color: #5E87E6;
}

.checkbox-input input:checked+label::after {
  opacity: 1;
}

.checkbox-input label {
  position: relative;
  display: block;
  padding-left: 28px;
  color: #202223;
  display: inherit;
}

.checkbox-input label::before {
  content: '';
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  height: 18px;
  width: 18px;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.checkbox-input label::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 6px;
  border: 2px solid #fff;
  border-left: 0;
  border-top: 0;
  left: 6px;
  z-index: 1;
  top: 7px;
  opacity: 0;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.element-border-color {
  border-color: #E5E5E5;
}

.user-login-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user-login-form h2 {
  font-size: 20px;
  margin-bottom: 0;
}

.login-panel-left {
  width: 50%;
}

.login-panel-right {
  width: 50%;
  padding-left: 100px;
}

.login-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.font-color-orange {
  text-align: center;
  position: relative;
}

.font-color-orange::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  background-color: #E5E5E5;
}

.font-color-orange span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background-color: #fff;
}

.cs-social_btns.layout-style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.cs-social_btns.layout-style-two a {
  height: 40px;
  width: 40px;
  border-radius: 5px;
  margin: 5px;
  color: #fff;
}

.cs-social_btns.layout-style-two a:hover {
  opacity: 0.75;
}

.cs-social_btns.layout-style-two a.theme-color-one {
  background-color: #E22F31;
}

.cs-social_btns.layout-style-two a.theme-color-two {
  background-color: #000000;
}

.cs-social_btns.layout-style-two a.theme-color-three {
  background-color: #4676ED;
}

.cs-social_btns.layout-style-two a.theme-color-four {
  background-color: #0A66C2;
}

.blog-post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.blog-post-data span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
  color: #4DB8B5;
}

.blog-post-data li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-post-data li:not(:last-child) {
  margin-right: 30px;
}

.blog-post-details {
  font-size: 18px;
  line-height: 1.8em;
}

.blog-post-details h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.blog-post-details h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.blog-post-details img {
  margin-bottom: 35px;
}

.blog-post-details p {
  margin-bottom: 20px;
}

.blog-post-details blockquote {
  background-color: #F6F4FF;
  padding: 30px 40px 30px 52px;
  border-radius: 10px;
  color: #1C2528;
  margin-bottom: 35px;
}

.blog-post-details blockquote svg {
  margin-bottom: 10px;
  margin-left: -12px;
}

.blog-post-details blockquote p {
  margin: 0;
}

.blog-post-details blockquote small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-style: initial;
  font-weight: 500;
  margin-top: 10px;
}

.blog-post-details blockquote small::before {
  content: '';
  height: 2px;
  width: 20px;
  background-color: currentColor;
  display: block;
  margin-right: 10px;
}

.blog-post-details ul:not(.blog-post-data) {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.blog-post-details ul:not(.blog-post-data) li {
  padding-left: 40px;
  position: relative;
}

.blog-post-details ul:not(.blog-post-data) li::before {
  content: '';
  height: 24px;
  width: 24px;
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url('../img/icons/confirm.svg');
}

.blog-post-details ul:not(.blog-post-data) li:not(:last-child) {
  margin-bottom: 10px;
}

/* Start Comment */
.comment-reply-header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.comment-disclaimer {
  font-size: 16px;
  color: #656372;
  margin-bottom: 20px;
}

.comment-form-comment label,
.comment-author-field label,
.comment-email-field label,
.comment-website-field {
  display: none;
}

#comment,
#author,
#email {
  border: 1px solid #5d6b85;
  display: block;
  font-size: 16px;
  padding: 4px 15px;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
  background-color: transparent;
}

#comment:focus,
#author:focus,
#email:focus {
  outline: none;
  border-color: #5E87E6;
}

#comment {
  height: 140px;
  padding: 6px 15px;
}

#commentform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#commentform p {
  width: 100%;
  margin-bottom: 20px;
}

#commentform p.comment-email-field,
#commentform p.comment-author-field {
  width: calc(50% - 10px);
}

#commentform p.comment-email-field {
  margin-left: 10px;
}

#commentform p.comment-author-field {
  margin-right: 10px;
}

#commentform .comment-consent-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

#commentform .comment-consent-form label {
  margin-bottom: 0;
  margin-left: 10px;
}

#commentform #wp-comment-cookies-consent {
  margin-top: -1px;
}

#commentform p.submit-button {
  margin: 0;
}

.comment-reply-button {
  font-size: 16px;
  line-height: 1.6em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid transparent;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#0017c6), to(#2d45ff));
  background: linear-gradient(90deg, #0017c6 0%, #2d45ff 100%);
  color: #fff;
  border: none;
  padding: 9px 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.comment-reply-button:hover {
  opacity: 0.8;
  color: #fff;
}

.comments-title,
.comment-reply-header {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}

.comments-group {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: -5px;
}

.comments-group li p {
  padding-bottom: 30px;
  border-bottom: 1px solid #E5E5E5;
}

.comments-group .bypostauthor:not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 50px;
}

.comments-group .comment-text {
  margin-bottom: 35px !important;
  padding-left: 90px;
  padding-top: 0;
  position: relative;
}

.comments-group .comment-text>p,
.comments-group .comment-text .comment-reply-link {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
}

.comments-group ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comments-group ol.sub-menu-items {
  padding-left: 90px;
}

.comments-group .user-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.comments-group .comment-author .testimonial-text {
  display: none;
}

.comments-group .js-function {
  font-style: initial;
  font-weight: 600;
  color: #1C2528;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 1.2em;
  display: block;
}

.comments-group .comment-details {
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6em;
  color: #b5b5b5;
}

.comments-group .js-function a:hover {
  color: #5E87E6;
}

.comments-group .comment-details a:hover {
  color: #1C2528;
}

.comments-group .comment-details+p,
.comments-group .comment-details+p+p {
  margin-bottom: 0;
}

.comments-group .comment-reply-link a {
  font-weight: 500;
  color: #5E87E6;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 0;
  padding: 3px 15px;
  font-size: 14px;
  line-height: 1.6em;
  border: 1px solid rgba(105, 144, 255, 0.5);
  border-radius: 1.6em;
}

.comments-group .comment-reply-link a:hover {
  color: #fff;
  background-color: #5E87E6;
  border-color: #5E87E6;
}

.comments-group .sub-menu-items .comment-text {
  border-bottom: 1px solid #E5E5E5;
}

.comments-group .sub-menu-items .comment-text>p {
  border: none;
}

.comments-group .bypostauthor .comment-text:last-child {
  margin-bottom: 0;
}

#commentform p.wordpress-logged-in {
  font-size: 16px;
  margin-top: -5px;
}

#commentform p.wordpress-logged-in a:hover {
  text-decoration: underline;
  color: #5E87E6;
}

.comment-reply-header small {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 500;
  color: red;
}

.comment-reply-header small a:hover {
  text-decoration: underline;
}

.comments-section {
  border-top: 1px solid #E5E5E5;
  padding-top: 95px;
  margin-top: 65px;
}

.cs-comment_wrapper+.comment-form-wrapper {
  margin-top: 60px;
}

/* End Comment */
/* Odometer */
.odometer.odometer-auto-theme,
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default,
.odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  transition: -webkit-transform 2s;
  transition: transform 2s;
  transition: transform 2s, -webkit-transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  transition: -webkit-transform 2s;
  transition: transform 2s;
  transition: transform 2s, -webkit-transform 2s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  line-height: inherit;
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

@media screen and (max-width: 1580px) {
  .cs-funfact.layout-style-one {
    padding: 13px 2%;
  }
}

@media screen and (max-width: 1400px) {
  .content-left.vertical-space-110 {
    padding-right: 40px;
  }

  .full-width-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 1050px) {
  .fun-fact-layout-one .cs-funfact.layout-style-one {
    width: 50%;
    padding: 13px 40px;
  }
}

@media screen and (max-width: 1199px) {
  .content-left.vertical-space-110 {
    padding-right: 0;
  }

  .content-left {
    width: 100%;
    margin-left: 0;
  }

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

  .full-width-container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .fun-fact-layout-one.element-type-one {
    margin: 0;
  }

  .fun-fact-layout-one {
    border-radius: 0;
  }

  .comments-section {
    padding-top: 65px;
    margin-top: 35px;
  }
}

@media screen and (max-width: 991px) {
  .login-panel-left {
    display: none;
  }

  .login-panel-right {
    width: 100%;
    padding-left: 0;
  }

  .modal-content-wrapper {
    padding: 15px;
  }

  .modal-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-post-details {
    font-size: 16px;
    line-height: 1.7em;
  }

  .blog-post-details h2 {
    font-size: 30px;
  }

  .blog-post-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .blog-post-details blockquote {
    padding: 30px 20px 30px 32px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .fun-fact-layout-one .cs-funfact.layout-style-one {
    width: 50%;
    padding: 13px 15px;
  }
}

@media screen and (max-width: 575px) {
  .cs-seciton_heading.layout-style-one .section-heading {
    font-size: 30px;
  }

  .cs-seciton_heading.layout-style-one .section-heading br {
    display: none;
  }

  .list-layout-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .list-layout-one .list-item-image {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .accordion-title-bar {
    padding: 18px 45px 18px 15px;
    font-size: 16px;
  }

  .accordion-button {
    right: 15px;
    top: 13px;
    width: 24px;
    height: 24px;
  }

  .accordion-button svg {
    height: inherit;
    width: inherit;
  }

  .default-button {
    font-size: 15px;
    min-width: initial;
  }

  .default-button span {
    padding: 9px 20px;
  }

  .fun-fact-layout-one .cs-funfact.layout-style-one {
    width: 100%;
  }

  .comments-group ol.sub-menu-items {
    padding-left: 0;
  }

  .comments-group li p {
    font-size: 14px;
  }

  .comments-group .comment-reply-link a {
    padding: 3px 10px;
    font-size: 12px;
  }

  .comments-group .comment-text {
    padding-left: 70px;
  }

  .comments-group .user-image {
    height: 60px;
    width: 60px;
  }
}

/*--------------------------------------------------------------
5. Slider
----------------------------------------------------------------*/
.main-carousel {
  position: relative;
}

.slick-slide>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.slide-counter {
  display: none;
}

.cs-pagination.layout-style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

.cs-pagination.layout-style-one ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inherit !important;
}

.cs-pagination.layout-style-one li {
  height: 10px;
  width: 10px;
  background-color: #4DB8B5;
  border-radius: 58px;
  margin: 0 3px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs-pagination.layout-style-one li.slick-active {
  width: 30px;
}

.cs-pagination.layout-style-one button {
  display: none;
}

.cs-slider_arrows.layout-style-one .carousel-navigation-arrow {
  height: 50px;
  width: 50px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs-slider_arrows.layout-style-one .carousel-navigation-arrow.arrow-previous {
  left: -25px;
}

.cs-slider_arrows.layout-style-one .carousel-navigation-arrow.arrow-next {
  right: -25px;
}

.cs-slider_arrows.layout-style-one .carousel-navigation-arrow:hover:before {
  background-color: currentColor;
  opacity: 0.2;
}

.slick-dotted {
  cursor: url('../img/handle.webp') 16 9, ew-resize !important;
}

.cs-gap-24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}

.cs-gap-24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.slider-controls {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 320px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.slider-controls .control-separator {
  height: 1px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: rgba(28, 37, 40, 0.5);
  margin: 0 20px;
}

@media screen and (max-width: 1600px) {
  .cs-slider_arrows.layout-style-three .arrow-previous {
    left: -8%;
  }

  .cs-slider_arrows.layout-style-three .arrow-next {
    right: -8%;
  }
}

@media screen and (max-width: 1400px) {
  .cs-slider_arrows.layout-style-three .arrow-previous {
    left: -30px;
  }

  .cs-slider_arrows.layout-style-three .arrow-next {
    right: -30px;
  }
}

@media screen and (max-width: 1255px) {
  .cs-slider_arrows.layout-style-three .arrow-previous {
    left: 20px;
  }

  .cs-slider_arrows.layout-style-three .arrow-next {
    right: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .cs-gap-50 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cs-gap-50 .slick-list {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media screen and (min-width: 992px) {
  .hide-on-desktop {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .hide-on-mobile {
    display: none !important;
  }

  .cs-pagination.layout-style-one {
    margin-top: 30px;
  }

  .cs-pagination.layout-style-one li.slick-active {
    width: 30px;
  }

  .slider-navigation {
    position: initial;
    width: 100%;
    -webkit-transform: initial;
    transform: initial;
    padding-bottom: 80px;
  }

  .cs-slider_arrows.layout-style-one.element-type-six {
    position: relative;
    bottom: initial;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 40px;
  }

  .cs-slider_arrows.layout-style-one.element-type-four {
    margin-left: 0;
    right: initial;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    bottom: 0;
    margin-top: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .cs-gap-40 .slick-slide,
  .cs-gap-50 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cs-gap-40 .slick-list,
  .cs-gap-50 .slick-list {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media screen and (min-width: 576px) {
  .hide-desktop-view {
    display: none !important;
  }
}

@media screen and (max-width: 575px) {
  .cs-slider_arrows.layout-style-one .carousel-navigation-arrow {
    height: 45px;
    width: 45px;
  }

  .cs-slider_arrows.layout-style-one {
    bottom: -20px;
    right: 30px;
  }

  .cs-slider_arrows.layout-style-one.element-type-one {
    width: 90px;
  }

  .cs-slider_arrows.layout-style-two.element-type-one,
  .cs-slider_arrows.layout-style-two.element-type-two {
    padding: 8px;
  }

  .cs-slider_arrows.layout-style-two .carousel-navigation-arrow {
    font-size: 18px;
    width: 50px;
    height: 40px;
  }

  .cs-slider_arrows.layout-style-one.element-type-six .carousel-navigation-arrow {
    height: 45px;
    width: 50px;
  }

  .slider-nav-layout-one .slider-nav-thumbnail {
    height: 90px;
    border-radius: 7px;
  }

  .slider-nav-layout-one .slick-slide {
    padding: 3px;
  }

  .slider-nav-layout-one {
    margin-left: -3px;
    margin-right: -3px;
    margin-top: 10px;
  }

  .hide-on-mobile {
    display: none;
  }

  .cs-gap-24 .slick-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .cs-gap-24 .slick-list {
    margin-left: -6px;
    margin-right: -6px;
  }
}

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

  .slider-navigation .slider-nav-thumbnail,
  .slider-nav-layout-one .slider-nav-thumbnail {
    height: 60px;
  }
}

/*--------------------------------------------------------------
6. Header
----------------------------------------------------------------*/
.page-header {
  position: relative;
  z-index: 101;
}

.page-header .default-button.layout-style-six {
  font-size: 16px;
}

.site-logo-area {
  display: inline-block;
  max-width: 180px;
}

.page-header.layout-style-one {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.page-header.layout-style-one .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.page-header.layout-style-one .header-content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.toolbox-button-icon {
  cursor: pointer;
}

.page-header.layout-style-one.sticky-header-active {
  background-color: #fff;
  -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.page-header.layout-style-one .header-toolbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-header.layout-style-one .header-toolbox>*:not(:first-child) {
  margin-left: 15px;
}

.page-header.layout-style-one .main-navigation+.header-toolbox {
  margin-left: 40px;
}

.page-header.layout-style-one .call-to-action-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-header.layout-style-one .call-to-action-box .call-to-action-value {
  margin-left: 15px;
}

.page-header.layout-style-one .call-to-action-box>*:not(:last-child) {
  margin-right: 35px;
}

.page-header.layout-style-one .default-button span {
  padding: 10px 15px;
}

.header-toolbox>*:not(:first-child) {
  margin-left: 20px;
}

.toolbox-button {
  border-radius: 5px;
  color: #fefefe;
  font-size: 16px;
  display: inline-block;
  padding: 11px 30px;
  min-width: 135px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5em;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(59, 20, 0, 0.1);
  box-shadow: 0px 10px 40px 0px rgba(59, 20, 0, 0.1);
  position: relative;
}

.toolbox-button span {
  position: relative;
  z-index: 1;
}

.cs-site_header_full_width .container {
  max-width: 100%;
  padding: 0 50px;
}

.header-style-one {
  border-bottom: 1px solid #1a188d;
}

.header-style-one .header-content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-style-one .main-navigation+.header-toolbar.text-align-center {
  margin-left: 35px;
}

.header-style-one .main-navigation .main-navigation-list>li.current-menu-item>a:before {
  bottom: -4px;
  background-color: #fff;
}

@media screen and (max-width: 1199px) {
  .main-header-section .container {
    max-width: 100%;
  }

  .page-header.layout-style-one .main-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-header.sticky-header {
  position: fixed;
  z-index: 200;
  width: 100%;
  top: 0;
  left: 0;
}

.site-logo-area {
  display: inline-block;
}

.site-logo-area img {
  height: 55px;
}

@media screen and (min-width: 1200px) {
  .main-header-section {
    position: relative;
  }

  .main-header-section .full-width-container {
    padding-right: 40px;
    padding-left: 40px;
  }

  .header-content-center,
  .top-bar-content-center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .page-header.layout-style-one .header-content-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }

  .page-header.layout-style-one .header-content-left {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .main-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }

  .main-navigation .main-navigation-list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: inherit !important;
  }

  .main-navigation .main-navigation-list>li {
    margin-right: 35px;
    height: inherit;
  }

  .main-navigation .main-navigation-list>li:last-child {
    margin-right: 0;
  }

  .main-navigation .main-navigation-list>li>a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .main-navigation .main-navigation-list>li>ul {
    left: 0;
    top: calc(100% + 15px);
  }

  .main-navigation .main-navigation-list>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .main-navigation .main-navigation-list li:not(.cs-mega-menu) {
    position: relative;
  }

  .main-navigation .main-navigation-list ul {
    width: 260px;
    background-color: #fff;
    position: absolute;
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    border-top: 3px solid #5E87E6;
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }

  .main-navigation .main-navigation-list ul li:hover ul {
    top: 0px;
  }

  .main-navigation .main-navigation-list ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .main-navigation .main-navigation-list ul a {
    font-size: 90%;
    display: block;
    line-height: 1.5em;
    padding: 12px 20px;
  }

  .main-navigation .main-navigation-list ul ul {
    top: 15px;
    left: 100%;
  }

  .menu-toggle-button,
  .menu-toggle-trigger {
    display: none;
  }

  .main-navigation .main-navigation-list .mega-menu-container {
    width: 1170px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: absolute;
    padding: 0;
  }

  .main-navigation .main-navigation-list .mega-menu-container>li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 0;
  }

  .main-navigation .main-navigation-list .mega-menu-container>li:not(:last-child) {
    border-right: 1px solid #E5E5E5;
  }

  .main-navigation .main-navigation-list .mega-menu-container>li>a {
    color: #1C2528;
    font-weight: 600;
  }

  .main-navigation .main-navigation-list .mega-menu-container>li>a:hover {
    background-color: transparent;
  }

  .main-navigation .main-navigation-list .mega-menu-container>li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
  }

  .main-navigation .main-navigation-list .cs-mega-menu:hover .mega-menu-container li ul {
    opacity: 1;
    visibility: visible;
  }

  .main-navigation .main-navigation-list>li ul:not(.mega-menu-container) .menu-with-subitems>a {
    position: relative;
  }

  .main-navigation .main-navigation-list>li.menu-with-subitems ul:not(.mega-menu-container) li.menu-with-subitems>a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    right: 16px;
  }
}

@media screen and (max-width: 1360px) {
  .site-logo-area {
    max-width: 190px;
  }

  .cs-site_header_full_width .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media screen and (max-width: 1199px) {
  .menu-toggle-trigger {
    position: absolute;
    height: 30px;
    width: 30px;
    right: 20px;
    top: 5px;
  }

  .menu-toggle-trigger:before,
  .menu-toggle-trigger:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: #6B6B6B;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .menu-toggle-trigger:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .menu-toggle-trigger.is-active:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .main-navigation .main-navigation-list {
    position: absolute;
    width: 100vw;
    left: -15px;
    background-color: #fff;
    padding: 10px 0;
    display: none;
    top: 100%;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    overflow: auto;
    max-height: calc(100vh - 80px);
    line-height: 1.6em;
  }

  .main-navigation .main-navigation-list ul {
    padding-left: 15px;
    display: none;
  }

  .main-navigation .main-navigation-list a {
    display: block;
    padding: 8px 20px;
  }

  .main-navigation .menu-with-subitems {
    position: relative;
  }

  /*Mobile Menu Button*/
  .menu-toggle-button {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
  }

  .menu-toggle-button span,
  .menu-toggle-button span:before,
  .menu-toggle-button span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }

  .menu-toggle-button span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .menu-toggle-button span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .menu-toggle-button span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .page-header.layout-style-one .menu-toggle-button {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }

  .cs-toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .cs-toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .cs-toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .header-toolbar {
    margin-right: 50px;
  }

  .toolbox-button {
    padding: 8px 20px;
    min-width: 100px;
  }

  .main-navigation .main-navigation-list a {
    position: relative;
  }

  .page-header.layout-style-one .header-inner {
    height: 80px;
  }

  .page-header.layout-style-one .main-navigation+.header-toolbox {
    margin-left: 0;
  }

  .page-header.layout-style-one .header-toolbox {
    margin-left: 0;
    margin-right: 50px;
  }

  .menu-hamburger span {
    height: 3px;
  }

  .page-header.layout-style-one .cs-top_header .header-toolbox {
    margin-right: 0;
  }

  .page-header .current-menu-item>a:before {
    display: none;
  }

  .page-header.layout-style-one.element-type-four .header-inner {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0px;
    margin-top: 0;
    background-color: transparent;
  }

  .page-header.layout-style-one .header-content-center .site-logo-area {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 991px) {
  .page-header .container {
    max-width: 100%;
  }

  .page-header.layout-style-one .call-to-action-box>*:not(:last-child) {
    margin-right: 25px;
  }
}

@media screen and (max-width: 575px) {
  .site-logo-area {
    max-width: 150px;
  }

  .header-toolbar {
    margin-right: 44px;
  }

  .header-toolbox>a:not(:first-child) {
    margin-left: 10px;
  }

  .cs-hamburger_wrap .menu-hamburger {
    margin-right: 0;
  }

  .site-logo-area img {
    height: 42px;
  }

  .page-header.layout-style-one .header-toolbox>*:not(:first-child) {
    margin-left: 10px;
  }

  .page-header.layout-style-one .header-toolbox {
    margin-left: 0;
    margin-right: 0px;
  }

  .page-header.layout-style-one .default-button {
    font-size: 14px;
  }

  .page-header.layout-style-one .default-button span {
    padding: 7px 15px;
  }

  .page-header.layout-style-one .header-toolbox {
    margin-right: 0px;
  }
}

.token-icon {
  width: 90%;
}

@media screen and (max-width: 450px) {
  .header-toolbox>a:not(:first-child) {
    margin-left: 0;
  }

  .h1,
  h1 {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 340px) {
  .page-header.layout-style-one .default-button {
    font-size: 13px;
  }

  .page-header.layout-style-one .default-button span {
    padding: 7px 10px;
  }
}

/*--------------------------------------------------------------
7. Footer
----------------------------------------------------------------*/
.page-footer {
  background-color: #273146;
  color: #D9D9D9;
}

.page-footer .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-footer .menu-list li:not(:last-child) {
  margin-bottom: 10px;
}

.widget-heading {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}

.cs-footer_widget_text img {
  margin-top: 5px;
  margin-bottom: 20px;
}

.cs-footer_widget_text p {
  margin: 0;
}

.cs-social_btns.layout-style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -7px;
}

.cs-social_btns.layout-style-one a {
  margin: 7px;
}

.copyright-notice {
  font-size: 14px;
  line-height: 1.6em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
}

.footer-item {
  margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
  .cs-footer_widget_text br {
    display: none;
  }
}

/*--------------------------------------------------------------
8. Hero
----------------------------------------------------------------*/
.cs-hero.layout-style-one {
  position: relative;
  padding: 70px 0;
  min-height: 713px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.cs-hero.layout-style-one .hero-section-image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  height: 742px;
  width: 742px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs-hero.layout-style-one .hero-section-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
}

.cs-hero.layout-style-one .hero-image-background {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.hero-image-background {
    backdrop-filter: brightness(150%) saturate(150%) hue-rotate(90deg);
}

.cs-hero.layout-style-one .hero-section-description {
  position: relative;
  z-index: 2;
}

.cs-hero.layout-style-one .hero-heading {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 80px;
}

.cs-hero.layout-style-one .hero-subtitle {
  font-weight: 300;
  font-size: 16px;
  color: #3FB0AD;
  margin-bottom: 4px;
}

.cs-hero.layout-style-one .hero-subtitle {
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 1.5em;
}

.cs-hero.layout-style-one .section-shape {
  position: absolute;
}

.cs-hero.layout-style-one .shape-position-a {
  left: 7%;
  top: 62%;
  -webkit-animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-hero.layout-style-one .shape-position-b {
  left: 30%;
  top: 78%;
  -webkit-animation: anim-y 9s cubic-bezier(0.25, 0, 0.2, 1) infinite;
  animation: anim-y 9s cubic-bezier(0.25, 0, 0.2, 1) infinite;
}

.cs-hero.layout-style-one .shape-position-c {
  left: 40%;
  top: 20%;
  -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-hero.layout-style-one .shape-position-d {
  left: 42%;
  top: 62%;
  -webkit-animation: particalAnimation 35s alternate infinite linear;
  animation: particalAnimation 35s alternate infinite linear;
}

.cs-hero.layout-style-one .shape-position-e {
  left: 90%;
  top: 5%;
  -webkit-animation: semi-rotate-anim 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: semi-rotate-anim 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-hero.layout-style-one .shape-position-f {
  left: 85%;
  top: 75%;
  -webkit-animation: up-down-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: up-down-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@-webkit-keyframes particalAnimation {

  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(80px, -10px);
    transform: translate(80px, -10px);
  }

  40% {
    -webkit-transform: translate(140px, 70px);
    transform: translate(140px, 70px);
  }

  60% {
    -webkit-transform: translate(90px, 130px);
    transform: translate(90px, 130px);
  }

  80% {
    -webkit-transform: translate(-40px, 80px);
    transform: translate(-40px, 80px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes particalAnimation {

  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(80px, -10px);
    transform: translate(80px, -10px);
  }

  40% {
    -webkit-transform: translate(140px, 70px);
    transform: translate(140px, 70px);
  }

  60% {
    -webkit-transform: translate(90px, 130px);
    transform: translate(90px, 130px);
  }

  80% {
    -webkit-transform: translate(-40px, 80px);
    transform: translate(-40px, 80px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes animo-x {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
  }
}

@keyframes animo-x {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
  }
}

@-webkit-keyframes anim-y {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    -webkit-transform: translateY(17px);
    transform: translateY(17px);
  }
}

@keyframes anim-y {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    -webkit-transform: translateY(17px);
    transform: translateY(17px);
  }
}

@-webkit-keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes semi-rotate-anim {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(25px) rotate(-53deg);
    transform: translateY(25px) rotate(-53deg);
  }
}

@keyframes semi-rotate-anim {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(25px) rotate(-53deg);
    transform: translateY(25px) rotate(-53deg);
  }
}

@-webkit-keyframes up-down-anim {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(40px) rotate(-1deg);
    transform: translateY(40px) rotate(-1deg);
  }
}

@keyframes up-down-anim {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(40px) rotate(-1deg);
    transform: translateY(40px) rotate(-1deg);
  }
}

@-webkit-keyframes swing-anim {
  65% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(-48px) rotate(-75deg);
    transform: translateY(-48px) rotate(-75deg);
  }
}

@keyframes swing-anim {
  65% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(-48px) rotate(-75deg);
    transform: translateY(-48px) rotate(-75deg);
  }
}

@media screen and (max-width: 1550px) {
  .cs-hero.layout-style-one .hero-section-image {
    left: 45%;
  }
}

@media screen and (max-width: 1536px) {
  .cs-hero.layout-style-one {
    min-height: 784px;
  }
}

@media screen and (max-width: 1440px) {
  .cs-hero.layout-style-one {
    min-height: 820px;
  }

  .cs-hero.layout-style-one .hero-section-image {
    left: 51%;
    height: 550px;
    width: 550px;
  }
}

@media screen and (max-width: 1366px) {
  .cs-hero.layout-style-one {
    min-height: 690px;
  }
}

@media screen and (max-width: 1199px) {
  .cs-hero.layout-style-one .hero-heading {
    font-size: 64px;
  }

  .cs-hero.layout-style-one .hero-subtitle {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .cs-hero.layout-style-one .hero-section-image {
    height: 460px;
    width: 460px;
  }
}

@media screen and (max-width: 991px) {
  .cs-hero.layout-style-one .hero-section-image {
    position: relative;
    -webkit-transform: initial;
    transform: initial;
    left: initial;
    right: initial;
    top: initial;
    margin: auto;
    margin-bottom: 30px;
  }
  
  .cs-hero h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 575px) {
  .cs-hero.layout-style-one .hero-section-image {
    width: 100%;
    height: initial;
  }

  .cs-hero.layout-style-one .hero-heading {
    font-size: 45px;
  }
}

/*--------------------------------------------------------------
9. Iconbox
----------------------------------------------------------------*/
.cs-iconbox.layout-style-one {
  -webkit-box-shadow: 0px 10px 50px rgba(28, 37, 40, 0.07);
  box-shadow: 0px 10px 50px rgba(28, 37, 40, 0.07);
  border-radius: 10px;
  background-color: #fff;
  padding: 40px 30px 37px 30px;
  position: relative;
}

.cs-iconbox.layout-style-one .icon-box-icon {
  height: 70px;
  width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 50%;
  background-color: #5E87E6;
  margin-bottom: 28px;
  -webkit-transition: all .25s linear;
  transition: all .25s linear;
  position: relative;
}

.cs-iconbox.layout-style-one .icon-box-icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px rgba(105, 144, 255, 0.25);
  box-shadow: 0 0 0 2px rgba(105, 144, 255, 0.25);
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.cs-iconbox.layout-style-one .icon-box-icon img {
    width: 70%;
}

.cs-iconbox.layout-style-one .icon-box-counter {
  font-weight: 600;
  font-size: 60px;
  line-height: 1em;
  color: transparent;
  -webkit-text-stroke: 1px #4DB8B5;
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs-iconbox.layout-style-one .icon-box-heading {
  font-size: 20px;
  margin-bottom: 10px;
}

.cs-iconbox.layout-style-one:hover .icon-box-icon {
  -webkit-transform: scale(0.94);
  transform: scale(0.94);
}

.cs-iconbox.layout-style-one:hover .icon-box-icon::after {
  -webkit-animation: sonarEffect 1s ease-out 75ms;
  animation: sonarEffect 1s ease-out 75ms;
}

.cs-iconbox.layout-style-one:hover .icon-box-counter {
  opacity: 0.6;
}

.cs-iconbox.layout-style-one.element-type-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 30px 25px 30px;
}

.cs-iconbox.layout-style-one.element-type-one .icon-box-icon {
  margin-right: 20px;
  margin-bottom: 0;
}

.cs-iconbox.layout-style-two {
  background-color: #fff;
  border-radius: 10px;
  min-height: 124px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 15px;
}

.cs-iconbox.layout-style-two .icon-box-icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 15px;
}

.cs-iconbox.layout-style-two .icon-box-heading {
  font-size: 20px;
  margin: 0;
  text-align: left;
}

.cs-iconbox.layout-style-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cs-iconbox.layout-style-three .icon-box-heading {
  font-size: 16px;
  margin-bottom: 0;
}

.cs-iconbox.layout-style-three .icon-box-icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 20px;
}

.cs-iconbox.layout-style-three .icon-box-icon {
  max-width: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(105, 144, 255, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(105, 144, 255, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(105, 144, 255, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(105, 144, 255, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(105, 144, 255, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(105, 144, 255, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(105, 144, 255, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(105, 144, 255, 0.25), 0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@media screen and (max-width: 1400px) {
  .cs-iconbox.layout-style-two {
    min-height: 100px;
    padding: 25px 15px;
  }

  .cs-iconbox.layout-style-two .icon-box-icon {
    margin-right: 12px;
  }

  .cs-iconbox.layout-style-two .icon-box-icon img {
    max-width: 58px;
  }

  .cs-iconbox.layout-style-two .icon-box-heading {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
10. Post
----------------------------------------------------------------*/
.cs-post.layout-style-one {
  background-color: #fff;
  border-radius: 10px;
}

.cs-post.layout-style-one:hover .post-thumbnail-inner {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.cs-post.layout-style-one .post-thumbnail {
  height: 200px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.cs-post.layout-style-one .post-thumbnail .post-thumbnail-inner {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cs-post.layout-style-one .blog-post-information {
  padding: 20px 30px 22px;
}

.cs-post.layout-style-one .post-heading {
  font-size: 20px;
  margin-bottom: 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs-post.layout-style-one .post-heading:hover {
  color: #5E87E6;
}

.cs-post.layout-style-one .button-with-text svg {
  font-size: 22px;
  margin-left: 5px;
}

/*--------------------------------------------------------------
11. Pricing Table
----------------------------------------------------------------*/
.cs-pricing_table.layout-style-one {
  background-color: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs-pricing_table.layout-style-one:hover {
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.07);
}

.cs-pricing_table.layout-style-one .pricing-table-header {
  padding: 30px 50px 25px;
  border-bottom: 1px dotted #E5E5E5;
}

.cs-pricing_table.layout-style-one .pricing-table-body {
  padding: 25px 50px 30px;
}

.cs-pricing_table.layout-style-one .pricing-table-label {
  color: #4DB8B5;
  font-size: 14px;
  line-height: 1.6em;
}

.cs-pricing_table.layout-style-one .pricing-plan-icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: linear-gradient(257.51deg, #F2FCFE 34.07%, #FAF1FE 100%);
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 20px;
}

.cs-pricing_table.layout-style-one .pricing-plan-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.cs-pricing_table.layout-style-one .pricing-plan-title {
  font-size: 20px;
  margin: 0;
}

.cs-pricing_table.layout-style-one .cs-price b {
  font-weight: 700;
  font-size: 60px;
  display: inline-block;
  line-height: 1em;
}

.cs-pricing_table.layout-style-one .pricing-table-feature {
  color: #1C2528;
}

.cs-pricing_table.layout-style-one .pricing-table-feature li {
  padding-left: 28px;
  position: relative;
}

.cs-pricing_table.layout-style-one .pricing-table-feature li svg {
  position: absolute;
  left: 0;
  top: 5px;
}

.cs-pricing_table.layout-style-one .pricing-table-feature li:not(:last-child) {
  margin-bottom: 14px;
}

.cs-pricing_table.layout-style-one .pricing-table-feature li.carousel-item-inactive {
  color: #b5b5b5;
}

.cs-pricing_table.layout-style-one .pricing-table-feature li.carousel-item-inactive svg {
  fill: #b5b5b5;
}

.cs-pricing_table.layout-style-one .pricing-table-feature li.carousel-item-inactive svg path {
  fill: #b5b5b5;
}

.cs-pricing_table.layout-style-one .pricing-table-feature li.carousel-item-inactive span {
  display: inline-block;
  position: relative;
}

.cs-pricing_table.layout-style-one .pricing-table-button {
  margin-top: 30px;
}

@media screen and (max-width: 1199px) {
  .cs-pricing_table.layout-style-one .pricing-table-header {
    padding: 30px 40px 25px;
  }

  .cs-pricing_table.layout-style-one .pricing-table-body {
    padding: 25px 40px 30px;
  }
}

@media screen and (max-width: 575px) {
  .cs-pricing_table.layout-style-one .cs-price b {
    font-size: 50px;
  }
}

/*--------------------------------------------------------------
12. Testimonial
----------------------------------------------------------------*/
.cs-testimonial.layout-style-one {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px 30px;
}

.cs-testimonial.layout-style-one .testimonial-author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cs-testimonial.layout-style-one .testimonial-quote {
  margin-bottom: 20px;
}

.cs-testimonial.layout-style-one .user-avatar {
  margin-right: 20px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
}

.cs-testimonial.layout-style-one .user-avatar img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}



.cs-testimonial.layout-style-one .testimonial-author-info h3 {
  font-size: 18px;
  margin-bottom: 0px;
}

.cs-testimonial.layout-style-one .testimonial-author-info p {
  margin: 0 0 5px;
}



@media screen and (max-width: 1199px) {
  .cs-testimonial.layout-style-one .user-avatar img {
    height: 80px;
    width: 80px;
  }
}

/*# sourceMappingURL=style.css.map */



.main-quiz {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.main-quiz .quiz-question {}

.main-quiz .quiz-question.pricing-card {
  padding: 2rem;
}

.quiz-question-text {
  font-size: 25px;
  color: #1a1a1a;
  line-height: 40px;
  text-align: center;
}

.quiz-option-list {
  margin-top: 15px;
}

.main-quiz .quiz-question .quiz-option-list {}

.main-quiz .quiz-question .quiz-option-list button.quiz-option-button {
  display: block;
  height: auto;
  margin: 1rem 0;
  padding: 15px;
  border: 1px solid rgb(0 0 0 / 18%);
  font-size: 16px;
  color: #000;
  border-radius: 10px;
  text-align: left;
  background: none;
  outline: none;
}

.main-quiz .quiz-question .quiz-option-list button.quiz-option-button.input-range {
  display: inline-block;
  margin-right: 2rem;
  position: relative;
}

.main-quiz .quiz-question .quiz-option-list button.quiz-option-button.input-range:last-of-type {
  margin-right: 0;
}

.main-quiz .quiz-question .quiz-option-list button.quiz-option-button:hover {
  background: rgb(105 145 255 / 24%);
  cursor: pointer;
  transition: all .30s ease;
}

.main-quiz .quiz-question .quiz-option-list button.quiz-option-button:focus {
  background: rgb(105 145 255 / 24%);
  color: #fff;
  transition-delay: 1s;
  transition-property: background-color;
  transition: all .30s ease;
}

.form_quiz form {
  background: #fff;
  margin: 20px auto;
  padding: 30px;
  box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
}

.form_quiz h1 {
  font-weight: 300;
  text-align: center;
}

.form_quiz input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 18px;
  border: none;
  border-bottom: 1px solid #757575;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 0px;
}

.form_quiz input:focus {
  outline: none;
}

.form_quiz .input-label-box {
  position: relative;
}

.form_quiz label {
  position: absolute;
  top: -66px;
  font-size: 16px;
  transition: 0.2s ease all;
  pointer-events: none;
}

.form_quiz input:focus~.input-label-box label,
.form_quiz input:valid~.input-label-box label {
  font-size: 14px;
  transform: translateY(-35px);
  color: rgba(52, 152, 219, 0.7);
}

.form_quiz input[class="btn"] {
  border: none;
  font-size: 17px !important;
  color: #fff;
  background: #5E87E6;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.form_quiz input[class="btn"]:hover {
  cursor: pointer;
}

.input-label-box::before,
.input-label-box::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 0;
  bottom: 40px;
  background-color: rgba(52, 152, 219, 0.7);
  transition: all 0.3s;
}

.input-label-box::before {
  left: 50%;
}

.input-label-box::after {
  right: 50%;
}

.form_quiz input:focus~.input-label-box::before,
.form_quiz input:focus~.input-label-box::after {
  width: 50%;
}

.footer-privacy-link {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.footer-privacy-link a {
  text-decoration: none;
  color: #22b9cf;
}

@media (max-width: 700px) {
  .main-quiz .quiz-question .quiz-option-list button.quiz-option-button.input-range {
    margin-right: 1rem;
    padding: 1.5rem;
  }

  .quiz-question-text {
    font-size: 20px;
    line-height: 31px;
    color: #1a1a1a;
}

  #qz_block {
    margin-top: 97px !important;
    margin-bottom: 20px !important;
  }
  .quiz-title-text {
    margin: 120px 0px 40px 0px !important;
}
  .quiz-title-text h2{
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 33px;
  }
}

.quiz-title-text {
  margin: 170px 0px 40px 0px;
}

#qz_block {
  margin-top: 120px;
  margin-bottom: 80px;
}


.call-to-action {
  padding: 15px 50px;
  margin-top: 20px;
}

.footer-content {
    display: flex;
}

@media(max-width: 767px) {
    .footer-content {
        flex-direction: column;
        
    }
    
    .page-footer {
        padding: 0 20px;
    }
}

.footer-contact-info {
    max-width: 250px;
    width: 100%;
    margin-right: 80px;
}

.footer__domain span {
    font-weight: bold;
    display: block;
}

.contact-detail {
    display: block;
}

.contact-phone-number {
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-legal {
    color: #fff;
    margin-bottom: 20px;
}

.footer-legal a {
    text-decoration: underline;
}

.quiz-sound {
    margin-bottom: 20px;
}


@media(max-width: 1199px) {
  #contact {
        padding-bottom: 30px;
    }
}

@media (max-width: 991px) {
  .hide-under-desktop {
    display: none;
  }
}

.progress-bar-container {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .quiz-progress-bar {
    height: 24px;
    background: #f0f0f0;
    border-radius: 12px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
  }
  
  .progress-bar-fill {
    height: 100%;
    width: var(--progress);
    background: linear-gradient(90deg, #52C8C4, #6990FF);
    border-radius: 12px;
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
  }
  
  .progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.2) 0%,
      rgba(255,255,255,0.4) 50%,
      rgba(255,255,255,0.2) 100%
    );
    animation: shine 2s infinite;
  }
  
  .progress-bar-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    mix-blend-mode: overlay;
  }
  
  @keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }


/* quiz */
.quiz-main-section {
  padding: 200px 0 100px;
}

.quiz-main-section .block-heading {
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  color: #292929;
  margin: 0 0 60px;
}

.quiz-main-section .block-heading .block-title {
  font-weight: bold;
  font-size: 44px;
  line-height: 52px;
}

.quiz-main-section .block-heading .block-subtitle {
  font-size: 24px;
  line-height: 28px;
}

.quiz-content-block {
  display: flex;
  background: #ffffff;
  box-shadow: 0px 24px 24px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  flex-wrap: wrap;
	overflow: hidden;
}

.quiz-content-block .quiz-main-title {
  color: #292929;
  font-size: 24px;
  line-height: 1;
  margin: 0 0 30px;
}

.quiz-content-block .quiz-main-title .number-list {
  margin: 0 0 15px;
}

.quiz-content-block .quiz-main-title .number-list span {
  font-weight: bold;
}

.quiz-content-block .quiz-main-title .section-divider {
  width: 100%;
  background: #e6e6e6;
  border-radius: 50px;
  position: relative;
  height: 34px;
  overflow: hidden;
}

.quiz-content-block .quiz-main-title .section-divider span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(269.61deg, #00d8cc 0.09%, #03aaa1 98.52%);
  border-radius: 50px;
}

.quiz-navigation-steps {
  margin: 0 0 55px;
}

.quiz-navigation-steps .process-step {
  counter-increment: steps;
  display: none;
}

.quiz-navigation-steps .process-step.is-active {
  display: block;
}

.quiz-navigation-steps .process-step .quiz-step-question {
  font-size: 22px;
  line-height: 31px;
  font-weight: bold;
  margin: 0 0 37px;
  color: #000000;
}

.quiz-navigation-steps .process-step .quiz-answer-options {
  display: flex;
  align-items: flex-start;
}

.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list {
  margin-right: 70px;
  width: calc(100% - 335px);
}

.quiz-navigation-steps .process-step .quiz-answers-list .data-item {
  margin: 0 0 27px;
  min-height: 40px;
}

.quiz-navigation-steps .process-step .quiz-answers-list .data-item input {
  display: none;
}

.quiz-navigation-steps .process-step .quiz-answers-list .data-item label {
  display: block;
  cursor: pointer;
  position: relative;
  padding-left: 50px;
  font-size: 18px;
  line-height: 24px;
}

.quiz-navigation-steps .process-step .quiz-answers-list .data-item label:before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e5e5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.quiz-navigation-steps .process-step .quiz-answers-list .data-item label.checkbox:before {
  content: "";
  width: 40px;
  height: 40px;
  background: #e5e5e5;
  position: absolute;
  border-radius: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.process-steps-block {
  padding: 55px 62px;
  width: calc(100% - 420px);
}

.quiz-navigation-steps .process-step .quiz-answer-options .default-image {
  width: 265px;
}

.quiz-navigation-steps .process-step .quiz-answers-list .data-item input:checked + label:before {
  background: url(../fonts/check.svg) no-repeat center center, linear-gradient(269.61deg, #00d8cc 0.09%, #03aaa1 98.52%);
}

.quiz-navigation-steps .process-step .quiz-answers-list .data-item input:checked + label {
	color: #00BEB4;
}

.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option {
  display: flex;
  flex-wrap: wrap;
}

.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option .data-item label {
  display: flex;
  flex-flow: column;
  padding-left: 0;
  text-align: center;
}

.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option .data-item {
  width: calc(100%/2 - 84px/2);
  margin-right: 84px;
}

.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option .data-item:nth-child(2n) {
  margin-right: 0;
}

.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option .data-item label img {
  width: 270px;
  height: 180px;
  object-fit: cover;
  margin: 0 0 34px;
}

.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option .data-item label:before {
  left: 50%;
  top: inherit;
  transform: translateX(-50%);
  top: 160px;
}

.quiz-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quiz-final-screen {
	display: none;
  width: 100%;
  margin: 0 auto;
  padding: 50px 60px;
    background-color:  #E6FFFE;
}

.quiz-final-screen .item-information {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-final-screen .block-title {
  font-weight: bold;
  font-size: 48px;
  line-height: 57px;
  margin: 0 0 30px;
  color: #00BEB4;
}

.quiz-final-screen .phone-input {
  width: 628px;
  position: relative;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quiz-final-screen .phone-input input {
background: #FFFFFF;
    border-radius: 50px;
    width: 322px;
    border: none;
    height: 70px;
    line-height: 70px;
    padding: 0px 30px 0px 40px;
    font-size: 18px;
    margin-bottom: 15px;
}

.quiz-final-screen .phone-input input[type="tel"] {
    padding-left: 50px;
}

.quiz-final-screen .phone-input .button {
  background: linear-gradient(92.65deg, #FFA164 6.44%, #FE6E0D 104.41%);
  color: #FFF;
  border: none;
    text-align: center;
    height: 80px;
    width: 322px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    /* position: absolute; */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-final-screen .form-input-text {
  color: #6D6D6D;
  font-size: 14px;
  line-height: 19px;
  margin: 0 0 45px;
}

.quiz-final-screen .form-input-text a {
  color: #6D6D6D;
  border-bottom: 1px solid #6D6D6D;
}

.quiz-final-screen .quiz-final-present {
  position: relative;
  padding-left: 86px;
}

.quiz-final-screen .quiz-final-present svg {
  width: 71px;
  height: 71px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  fill: #292929;
}

.quiz-final-screen .quiz-final-present b {
  display: block;
  font-size: 18px;
  margin: 0 0 5px;
}

.quiz-final-screen .quiz-final-present span {
  display: inline-block;
  vertical-align: top;
  color: #FFA164;
  font-weight: 500;
  font-size: 15px;
}

.quiz-information {
  width: 420px;
  min-width: 420px;
  background: #E6FFFE;
  padding: 46px 36px;
}

.quiz-information .block-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 120%;
  color: #292929;
  margin: 0 0 15px;
}

.quiz-information .pricing-plan {
  position: relative;
  padding-left: 130px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #292929;
  margin: 0 0 40px;
}

.quiz-information .pricing-plan:before {
  content: "";
  width: 134px;
  height: 113px;
  background: url('../img/quiz/calculator.png') no-repeat center center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  margin: 16px 0 0;
  pointer-events: none;
  background-size: cover;
}

.quiz-information .presents b {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: bold;
}

.quiz-information .presents .data-items {
  display: flex;
  flex-wrap: wrap;
}

.quiz-information .presents .data-items .data-item {
  background: transparent;
  width: calc(100% / 2 - 30px / 2);
  margin-right: 30px;
}

.quiz-information .presents .data-items .data-item:last-child {
  margin-right: 0;
}

.quiz-information .presents .data-items .data-item .description-text {
  text-align: center;
  font-size: 14px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
}

.quiz-final-presents {
	display: none;
  font-weight: bold;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  position: relative;
  z-index: 25;
  margin: 90px 0 0;
}

.quiz-final-presents span {
  display: block;
  text-align: center;
  color: #fe7417;
}

.quiz-final-presents .element-icon {
  width: 165px;
  height: 165px;
  margin: 0 auto 25px;
  fill: #00beb4;
}

.quiz-final-presents:before {
  content: "";
  width: 406px;
  height: 178px;
  background: url(../fonts/arrow.svg) no-repeat center center;
  position: absolute;
  left: -110%;
  top: -154px;
  z-index: 33;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-3deg);
}

.call-to-action-button {
  padding: 21px 55px;
  background: linear-gradient(92.65deg, #ffa164 6.44%, #fe6e0d 104.41%);
  border-radius: 90px;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: 0.3s border, 0.3s background, 0.3s color;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border: none;
}

.call-to-action-button.form-input-disabled {
  pointer-events: none;
  opacity: .5;
}


@media (max-width: 1499px) {
	

	.quiz-final-screen {
		padding-left: 420px;
		background-position: bottom left -10px;
		background-size: 500px auto;
	}

	.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option {
		width: 100%;
	}

	.quiz-navigation-steps .process-step .quiz-answers-list .data-item label {
		font-size: 16px;
	}

	.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list {
		width: calc(100% - 240px);
		margin-right: 40px;
	}

	.quiz-navigation-steps .process-step .quiz-answer-options .default-image {
		width: 200px;
	}

	.process-steps-block {
		padding: 45px;
	}

}

@media (max-width: 1399px) {

}

@media (max-width: 1199px) {
	

	
	.quiz-navigation-steps .process-step .quiz-answer-options .default-image {
		order: 1;
		width: 100%;
		margin: 0 0 20px;
	}

	.quiz-navigation-steps .process-step .quiz-answer-options {
		flex-wrap: wrap;
	}

	.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list {
		width: 100%;
		order: 2;
		margin-right: 0;
	}

	.quiz-navigation-steps .process-step .quiz-answers-list .data-item {
		margin: 0 0 12px;
		min-height: 30px;
	}

	.quiz-navigation-steps .process-step .quiz-answers-list .data-item label:before {
		width: 30px;
		height: 30px;
	}

	.quiz-information {
		width: 300px;
		min-width: 300px;
	}

	.process-steps-block {
		width: calc(100% - 300px);
	}

	.quiz-information .presents .data-items .data-item {
		width: 100%;
		margin: 0 0 15px;
	}

	.quiz-information .pricing-plan:before {
		position: relative;
		transform: none;
		display: block;
	}

	.quiz-information .pricing-plan {
		padding: 0;
	}


}

@media (max-width: 991px) {
	
	.process-steps-block {
		width: 100%;
	}

	.quiz-navigation-steps .process-step .quiz-answer-options .default-image {
		display: none;
	}

	.quiz-information {
		width: 100%;
	}

	.quiz-information .presents .data-items .data-item {
		width: calc(100% / 2 - 15px / 2);
		margin-bottom: 0;
		margin-right: 15px;
	}

	.quiz-information .presents .data-items .data-item .default-image img {
		width: 100%;
	}
	
	.quiz-final-screen {
		padding: 30px;
		background: #E6FFFE;
		text-align: center;
	}

	.quiz-final-screen .block-title {
		font-size: 28px;
		line-height: 120%;
	}

	.quiz-final-screen .phone-input input {
		height: 50px;
		padding-right: 35px;
	}

	.quiz-final-screen .phone-input button {
		height: 50px;
		font-size: 16px;
		width: 322px;
	}

	.quiz-final-screen .phone-input {
		width: 500px;
		margin: 0 auto 10px;
		max-width: 100%;
	}

	.quiz-final-screen .quiz-final-present {
		text-align: left;
		width: 350px;
		margin: 0 auto;
		max-width: 100%;
	}

	.quiz-main-section .block-heading .block-title {
		font-size: 24px;
		line-height: 120%;
	}

	.quiz-main-section .block-heading .block-subtitle {
		font-size: 18px;
	}

	.quiz-main-section .block-heading {
		margin: 0 0 30px;
	}

}

@media (max-width: 767px) {
	
	.quiz-navigation-steps {
		margin: 0 0 20px;
	}

	.quiz-navigation-steps .process-step .quiz-step-question {
		margin: 0 0 17px;
		font-size: 18px;
		line-height: 1.2;
	}

	.quiz-navigation-steps .process-step .quiz-answers-list .data-item label {
		padding-left: 40px;
		font-size: 14px;
	}

	.quiz-content-block .quiz-main-title .section-divider {
		height: 20px;
	}

	.quiz-content-block .quiz-main-title .number-list {
		font-size: 18px;
	}

	.quiz-content-block .quiz-main-title {
		margin: 0 0 10px;
	}

	.quiz-navigation-steps .process-step .quiz-answers-list .data-item input:checked + label:before {
		background: url(../fonts/check.svg) no-repeat center center, linear-gradient(269.61deg, #00d8cc 0.09%, #03aaa1 98.52%);
	}
	
	.quiz-navigation {
		flex-wrap: wrap;
	}

	.quiz-navigation .call-to-action-button {
		width: 100%;
		margin: 0 0 15px;
		padding: 0 20px;
		height: 42px;
		line-height: 42px;
	}

	.quiz-navigation .call-to-action-button:last-child {
		margin: 0;
	}

	.quiz-navigation .call-to-action-button:nth-child(1) {
		order: 2;
		margin: 0;
	}

	.quiz-navigation .call-to-action-button:nth-child(2) {
		order: 1;
		margin: 0 0 15px;
	}

	.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option .data-item {
		width: 100%;
		margin: 0 0 25px;
		background: #e5e5e5;
		padding: 0 0 20px;
	}

	.quiz-navigation-steps .process-step .quiz-answer-options .quiz-answers-list.quiz-answer-option .data-item label img {
		width: 100%;
		object-fit: cover;
		margin: 0 0 15px;
	}

	.quiz-final-presents {
		display: none !important;
	}

	.quiz-information .pricing-plan {
		margin: 0 !important;
	}

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

	.quiz-information .pricing-plan:before {
		margin: 0 auto;
	}



}

@media (max-width: 575px) {
	
.quiz-final-screen .phone-input input {
  width: 100%;
  padding: 0 20px;
  text-align: center;
  margin: 0 0 15px;
}

.quiz-final-screen .phone-input button {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.quiz-final-screen .form-input-text {
  font-size: 12px;
}

.quiz-final-screen .quiz-final-present svg {
  width: 48px;
  height: 48px;
}

.quiz-final-screen .quiz-final-present {
  padding-left: 60px;
}

.quiz-final-screen .quiz-final-present b {
  font-size: 16px;
}

.quiz-final-screen .quiz-final-present span {
  font-size: 13px;
}

}

@media (max-width: 524px) {

}

@media (max-width: 474px) {

}

@media (max-width: 425px) {
	.quiz-main-section {
		padding: 150px 0 30px;
	}

}

@media (max-width: 374px) {

}

/* end quiz */

.iti {
    margin-bottom: 15px;
}

input[name="messenger"] {
    display: none;
}
