/* Base CSS */


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

a:focus {
  outline: 0 solid
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #1B1B21;
  font-family: 'Proxima Nova Th';
}

ul {
  list-style-type: none;
  margin-bottom: 0;
}

.footer-wedget ul {
  list-style-type: none;
  margin-bottom: 0;
  padding: 0;
  margin:0;
}

.selector-for-some-widget {
  box-sizing: content-box;
}

a {
  color: #E67441;
  text-decoration: none;
}

a:hover {
  text-decoration: none
}

button:focus {
  outline: 0;
  outline: 5px auto -webkit-focus-ring-color;
}

:root {
  --primary-color: #434359;
  --secondary-color: #CA6F5C;
}

.section_title {
  font-size: 50px;
  color: #434359;
  font-weight: 900;
}


/* Header bar section start */

/* header area start here */
.header__area {
  padding: 32px 0px;
  height: 15vh;
  display: flex;
}

.header__area .header__nav-bar {
  z-index: 999;
}

.header__area .logo {
  height: 80px;
  width: 80px;
  transition: all .3s;
}

.header__area .logo:hover {
  transform: scale(1.4);
}

.menu__area .navigation__list {
  gap: 24px;
}

.menu__area .navigation__list a,
.mobile__menu-area .navigation__list a {
  color: var(--primary-color);
  font-size: 20px;
  transition: .3s;
  font-family: 'Proxima Nova Th';
}

.mobile__menu-area .navigation__list,
.mobile__menu-area .navigation__list li {
    display: none;
    pointer-events: none;
}
.mobile__menu-area.mobile__menu-active .navigation__list,
.mobile__menu-area.mobile__menu-active .navigation__list li {
    display: block;
    pointer-events: all;
}

.menu__area .navigation__list a::after,
.mobile__menu-area .navigation__list a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  background-color: var(--primary-color);
  height: 2px;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}

.mobile__menu-area .navigation__list a {
  color: #434359;
  font-size: 26px;
  margin-bottom: 15px;
}

.mobile__menu-area .navigation__list a:hover {
  color: #e67441;
  transition: .3s;

}

.menu__area .navigation__list a:hover {
  color: #e67441;
  transition: .3s;

}

.header__toggle-navigation {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 13;
  height: 30px;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 82px;
  gap: 10px;
  transition: .3s;
}

.header__toggle-navigation__icon {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  transition: width .15s, background .25s;
}

.header__toggle-navigation__icon::after,
.header__toggle-navigation__icon::before {
  content: '';
  position: absolute;
  left: 0;
  height: 2px;
  background: var(--primary-color);
  transition: .3s;
}

.header__toggle-navigation__icon::after {
  width: 70%;
  top: 10px;
}

.header__toggle-navigation__icon::before {
  width: 40%;
  top: 20px;
}

.header__toggle-navigation:hover .header__toggle-navigation__icon::after,
.header__toggle-navigation:hover .header__toggle-navigation__icon::before {
  width: 100%;
}

.header__toggle-navigation__icon.is-close-icon {
  width: 100%;
  margin: 15px 0 0;
  background: transparent;
  z-index: 999999;
}

.header__toggle-navigation__icon.is-close-icon::before,
.header__toggle-navigation__icon.is-close-icon::after {
  top: 50%;
  width: 100%;
  background: #434359 !important;
  z-index: 9999;
}

.header__toggle-navigation__icon.is-close-icon::after {
  transform: translateY(-50%) rotate(45deg);
}

.header__toggle-navigation__icon.is-close-icon::before {
  transform: translateY(-50%) rotate(-45deg);
}

.header__toggle-navigation__text {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  margin-top: 3px;
  color: var(--primary-color);
}

.mobile__menu-area {
  height: 100vh;
  background-color: #FCE9E0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
  z-index: 99;
  transition: .3s;
}

.mobile__menu-area.mobile__menu-active {
  width: 100%;
  opacity: 1;
}

.mobile__menu-area .navigation__list {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* header area end here */

/* hero area start here */
.hero__area {
  padding: 29px 0px 100px 0px;
}

.hero__area_wrapper {
  gap: 180px;
}

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

.hero__area_wrapper .hero__left {
  flex-basis: 50%;
  line-height: 1.5;
}

.hero__area_wrapper .hero__right {
  flex-basis: 50%;
  margin-top: 80px;
}

.hero__area_wrapper .hero__right h2 {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 900;
}

.hero__area_wrapper .hero__right .hero__right_link {
  margin-top: 20px;
}

.hero__area_wrapper .hero__right .hero__right_link a {
  color: var(--primary-color);
  gap: 20px;
  font-size: 20px;
}

.hero__area_wrapper .hero__right .hero__right_link a:hover {
  color: #e67441;
}

.hero__area_wrapper .hero__right .hero__right_link a i {
  font-weight: 300;
}

.hero__area_wrapper .hero__right .hero__right_link a span {
  text-decoration: underline var(--primary-color) 2px;
  font-weight: 600;
  transition: .3s;
}

.hero__area_wrapper .hero__right .hero__right_link a:hover span {
  text-decoration-color: var(--secondary-color);
}

.hero__area_wrapper .hero__right .hero__right_link a.hero__right_btn {
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  padding: 10px 30px;
  display: inline-block;
  font-size: 16px;
  margin-top: 50px;
}

.hero__area_wrapper .hero__right .hero__right_link a.hero__right_btn:hover {
  color: var(--primary-color);
  background-color: #e67441;
  transition: .5s;
}

/* hero area end here */


/* banner-area start */

.signup {
  width: 80%;
  height: 86px;
  background-color: white;
  border: 4px solid white;
  box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.11);
  border-radius: 100px;
  margin: 46px auto;
}

.email-signup {
  height: 77px;
  background-color: black;
  padding: 0px 5px 0px 10px;
  width: 70%;
  caret-color: #fc4e03;
  background-color: white;
  font-size: 20px;
  color: #383838;
  outline-style: none;
  border: none;
  border-radius: 100px;
  padding-left: 40px;
  font-family: 'Proxima Nova Th';
}

.submit-button {
  height: 68px;
  width: 25%;
  background-color: #e67441;
  border: none;
  font-size: 19px;
  border-radius: 100px;
  float: right;
  color: white;
  font-family: 'Proxima Nova Th';
  transition: 0.3s;
  margin-right: 8px;
}

.submit-button:hover {
  background-color: #e34602;
}

.card {
  font-family: "Open Sans", serif;
  text-align: center;
  width: 500px;
  color: white;
  height: auto;
  background: #f12711;
  background: -webkit-linear-gradient(45deg, #f5af19, #f12711);
  background: linear-gradient(45deg, #f5af19, #f12711);
  border-radius: 0.3rem;
  box-shadow: 2px 2px 12px 6px rgba(0, 0, 0, 0.11);
  padding: 50px 50px 50px 50px;
}

.banner-title {
  text-align: center;
  width: 73%;
}

.banner-title h1 {
  font-size: 74px;
  color: #434359;
}

.banner-title p {
  font-size: 21px;
  color: #5e5e5e;
}

.wrapper_area {
  height: 85vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 10vh !important;
}

.wrapper-area h2 {
  color: #013459;
}

.brand-images a {
  width:  100%;
  display: block;
}

.brand-images a img {
  width: 100%;
  transition: 0.3s;
}

.brand-images a img:hover {
  scale: 1.1;
}

.brand-images {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.brand-area {
  margin: 140px;
}

/* banner-area end */


/* about area start here */
.about__area {
  padding: 100px 0px;
}

.about__area .about__wrapper {
  width: 70%;
}

.about__area .about__wrapper h2 {
  margin-bottom: 30px;
}

.about__area .about__wrapper p {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  /*! font-family: 'NeutrifRegular',sans-serif; */
  line-height: 2;
}

/* about area end here */

/* digital concept area start here */
.digital__contcept_area {
  padding: 58px 0px;
}

.digital__concept_wrapper .digital__concept_left {
  flex-basis: 60%;
}

.digital__concept_wrapper .digital__concept_left a:hover {
   color: #e67441;
   transition: .3s;
}

.digital__concept_wrapper .digital__concept_left h2 {
  font-size: 36px;
  color: #434359;
  font-weight: 900;
  margin-bottom: 30px;
}

.digital__concept_wrapper .digital__concept_left p {
  color: var(--primary-color);
  font-family: 'NeutrifRegular', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.digital__concept_wrapper .digital__concept_left h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 30px 0px;
}

.digital__concept_wrapper .digital__concept_left a {
  font-size: 20px;
  font-weight: 600;
  color: #434359;
  gap: 16px;
  font-family: 'NeutrifRegular', sans-serif;
}

.digital__concept_wrapper .digital__concept_left i {
  color: var(--primary-color);
  font-weight: 300;
}

.digital__concept_wrapper .digital__concept_right {
  flex-basis: 40%;
  margin-left: 130px;
}

.digital__concept_wrapper .digital__concept_right img {
  width: 100%;
  transition: 0.3s;
}

.digital__concept_wrapper .digital__concept_right img:hover {
  scale: 1.05;
}

/* digital concept area end here */

/* cta area start here */
.cta__area {
  padding: 0 0px 138px;
  background: #FF8955;
}

.cta__area .cta__area_content h2 {
  text-align: center;
}

.cta__area .cta__area_footer {
  margin-top: 40px;
  gap: 60px;
}

.cta__area .cta__area_footer .cta__footer_item {
  gap: 16px;
}

.cta__area .cta__area_footer .cta__footer_item a {
  font-size: 24px;
  color: var(--primary-color);
  text-decoration: underline var(--primary-color) 2px;
  font-weight: 600;
  font-family: 'NeutrifRegular', sans-serif;

}

.cta__area .cta__area_footer .cta__footer_item svg {
  width: 30px;
  height: 30px;
}

/* footer area start here */
.footer__area {
  background-color: var(--primary-color);
  padding-top: 100px;
}

.footer__area .footer__wrapper {
  gap: 50px;
  padding-bottom: 100px;
}

.footer__area .footer__wrapper-content {
  flex-basis: 50%;
}

.footer__area .footer__wrapper-content h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
}

.footer__area .footer__wrapper-content p {
  font-size: 18px;
  font-family: 'NeutrifRegular', sans-serif;
  font-weight: 600;
}

.footer__area .footer__wrapper .footer__wrapper-form {
  flex-basis: 50%;
}

.footer__area .footer__wrapper .footer__wrapper-form input.email__field {
  width: 100%;
  border: 0;
  outline: none;
  padding: 15px 30px;
  font-family: 'NeutrifRegular', sans-serif;
  border-radius: 5px;
  font-size: 20px;
  color: #000;
}

.footer__area .footer__wrapper .footer__wrapper-form input:focus {
  outline: none;
}

.footer__area .footer__wrapper .footer__wrapper-form input::placeholder {
  font-size: 22px;
  font-family: 'NeutrifRegular', sans-serif;
}

.footer__area .footer__wrapper .footer__wrapper-form .form__btn {
  margin-top: 40px;
  display: inline-block;
}

.footer__area .footer__wrapper .footer__wrapper-form .form__btn input {
  background: var(--secondary-color);
  color: #fff;
  font-size: 20px;
  padding: 10px 40px 10px 10px;
  border: 0;
  border-radius: 5px;
  font-family: 'NeutrifRegular', sans-serif;
}

.footer__area .footer__wrapper .footer__wrapper-form .form__btn span {
  color: white;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.footer__area .footer__social-wrapper {
  padding: 50px 0px;
  border-top: 1px solid #d3d3d3;
}

.footer__social-wrapper .footer__social a i {
  color: #e67441;
  font-size: 60px;
  margin-right: 16px;
  transition: .3s;
}

.footer__social-wrapper .footer__social a i:hover {
  transform: scale(1.1);
}

.footer__social-wrapper .footer__badges {
  gap: 30px;
}

/* footer area end here */

.banner-area .signup form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}








/* Initial hero section styles */
.hero {
  background-color: #FCE9E0;
  /* Adjust this as needed */
  transition: background-color 10.5s ease;
  /* Transition effect */
  /*! height: 100vh; */
}

/* Class for white or transparent background */
.hero-scroll {
  background-color: transparent;
  /* Change to white or transparent when scrolling */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /*! overflow: hidden; */
  /*! height: 80vh; */
}

.wave-container {
  display: flex;
  flex-direction: column;
  bottom: 0;
  left: 0;
  right: 0;
}

.content-bg {
  height: 64px;
  background: #FF8955;
}

#waveSvg {
  height: 240px;
    margin-bottom: -1px;
}



.underline--magical {
  background-image: linear-gradient(120deg, #E47441 0%, #ffa444 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
  transition: background-size 0.25s ease-in;

  &:hover {
    background-size: 100% 88%;
  }
}

.zo_on_main-wrap body {
  margin: 0;
}

.zo_on_main-wrap .title {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 900;
}


.zo_on_main-wrap .navbar {
  background: #F0E7D8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
}

.zo_on_main-wrap .navbar a {
  color: #AB9B96;
  position: relative;
}



.zo_on_main-wrap .header {
  padding: 4rem 0 0rem;
  width: 100%;
  margin-right: 61px;
}
.zo_on_main-wrap .headera {
  padding: 4rem 0 0rem;
  width: 100%;
  margin-right: 61px;
}
.zo_on_main-wrap .header__title {
  font-size: 50px;
  color: var(--primary-color);
  font-weight: 900;
}

.zo_on_main-wrap .header__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  font-family: 'NeutrifRegular', sans-serif;
  line-height: 2;
}

.zo_on_main-wrap .main-content {
  display: flex;
  flex-direction: column;
}

.zo_on_main-wrap .jumpto {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  height: 100px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-self: flex-start;
  z-index: 10;
  width: 100%;
}

.zo_on_main-wrap .jumpto a {
  color: #AB9B96;
  position: relative;
}

.zo_on_main-wrap .wrapper {
  display: flex;
  flex-direction: column;
}

.zo_on_main-wrap .image {
  position: static;
  height: 50vh;
  width: 100vw;
}

.zo_on_main-wrap .image img {
  object-fit: cover;
  height: 94%;
  width: 100%;
}

.zo_on_main-wrap .column {
  padding: 4rem 6rem;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.zo_on_main-wrap section {
  padding-bottom: 2rem;
}

.zo_on_main-wrap section:last-of-type {
  padding-bottom: 0;
}

.zo_on_main-wrap .jumpto__target {
  margin-top: 6rem;
}

.zo_on_main-wrap .banner {
  background: #F0E7D8;
  color: #AB9B96;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zo_on_main-wrap .banner__title {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .8px;
}

.zo_on_main-wrap .banner__button {
  align-items: center;
  border-radius: 4px;
  background: #AB9B96;
  color: #F0E7D8;
  display: flex;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  text-transform: uppercase;
  font-size: 12px;
}

.zo_on_main-wrap .banner__button:hover {
  color: #F0E7D8;
}


@media screen and (min-width: 900px) {
  .zo_on_main-wrap .wrapper {
    flex-direction: row;
  }

  .zo_on_main-wrap .column {
    width: 68%;
  }

  .zo_on_main-wrap .image {
    height: calc(100vh - 100px);
    height: -moz-calc(100vh - 100px);
    height: -webkit-calc(100vh - 100px);
    height: -o-calc(100vh - 100px);
    width: 21vw;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}


.zo_on_main-wrap span {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 700;
  font-family: 'NeutrifRegular', sans-serif;
}

.zo_on_main-wrap p {
  color: var(--primary-color);
  font-family: 'NeutrifRegular', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.zo_on_main-wrap li {
  color: var(--primary-color);
  font-family: 'NeutrifRegular', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.zo_on_main-wrap ul {
  list-style-type: disc;
}



.wave-container h2 {
  color: #fff;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    padding: 1rem 1rem;
    border: 1px solid transparent;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEECAIAAAAd4J55AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIyQzg0Q0RDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIyQzg0Q0VDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjJDODRDQkNDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QjJDODRDQ0NDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnMLhJsAAB3qSURBVHja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');
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.btn {
    border-radius: 72px;
    font-size: 17px;
    font-weight: 500;
    line-height: 21px;
}

.cases-list {
    display: flex;
    flex-wrap: wrap;
    padding-right: 2rem;
}

@media (min-width: 1920px) {
    .cases-list {
        margin-top: 2rem;
    }
}

.cases-list li {
    flex: 50%;
    margin-bottom: 10px;
    position: relative;
}

@media (max-width: 997px) {
    .cases-list li {
        flex: 100%;
    }
}

.cases-list li img {
    height: 90%;
    border-radius: 30px;
    width: 90%;
    margin: 0 auto 0 2rem;
}

@media (max-width: 997px) {
    .cases-list li img {
        width: 100%;
        margin-left: 0;
    }

    .desktop-only {
        display: none;
    }
}

@media (min-width: 997px) {
    .mobile-only {
        display: none;
    }
}

.cases-list li div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    cursor: pointer;
}

.cases-list li div p {
    position: absolute;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: .8px;
    height: fit-content;
    width: fit-content;
    top: 50%;
    left: 50%;
    text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
    transform: translate(-60%, -60%);
}

/* footer-area-start */

.footer-area {
    padding-top: 70px;
    background-color: var(--primary-color);
}

.footer-fl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.footer-left {
    width: 20%;
}

.footer-logo {
    max-width: 188px;
    margin-bottom: 15px;
}

.footer-info a {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #bebec9;
    margin-bottom: 13px;
    transition: .3s;
}

.footer-info img {
    margin-right: 11px;
}

.footer-info a i {
    color: #E67441;
    font-size: 19px;
    margin-right: 11px;
    width: 18px;
    text-align: center;
}

.footer-info a:last-child {
    margin: 0;
}

.footer-wedget .footer-h3 {
    font-family: 'Proxima Nova Th';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: white;
}

.footer-wedget ul li {
    display: block;
}

.footer-wedget ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 44px;
    color: #52525B;
    transition: .3s;
}

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

.foter-bottom-left {
    display: flex;
    align-items: center;
}

.footer-socail a {
    color: #18181B;
    margin: 0 12px;
    transition: .3s;
}

.footer-bottom-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 30px;
}

.footer-bottom-menu a {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #52525B;
    margin: 0 20px;
    transition: .3s;
}

.footer-bottom-copy p {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #52525B;
    margin: 0;
}

/* footer-area-end */

@media (min-width: 768px) and (max-width: 991px) {
    .footer-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-wedget {
        width: 30.33%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .footer-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-wedget {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-wrap: wrap;
    }

    .foter-bottom-left {
        flex-wrap: wrap;
        width: 100%;
    }

    .footer-bottom-menu {
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }

    .footer-bottom-menu a {
        margin: 0 10px;
    }

    .footer-socail {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-bottom-copy {
        width: 100%;
        text-align: center;
    }

    .footer-wedget ul li a {
        line-height: 30px;
    }
}

.digital__concept_right-succes {
    margin-left: 0; margin-right: 130px;
}

@media (max-width: 990px) {
    .digital__concept_right-succes {
        margin-left: 0; margin-right: 0;
    }

    #email-signup2 {
        width: 60%;
    }
}

.banner-area.text-center {
  height: 646px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-position: top center;
}



/* banner section  */
.banner-area.text-center h2 {
  color: #fff;
  font-weight: 700;
  font-size: 51px;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
}
.banner-area.text-center h4 {
  color: #fff;
  font-size: 26px;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
}

.content_section {
  margin: 20px 0 70px;
}
.content_section p {
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  color: #434359;
}
.lekkar_content_section {
  margin-bottom: 60px;
}
.lekkar_content_section h2 {
  font-size: 40px;
  font-weight: 800;
  color: #434359;
}
.lekkar_content_section p {
  font-weight: 500;
  font-size: 21px;
  color: #5e5e5e;
}
.lekkar_content_section p span {
  color: #E67441;
}

.quote_text_wrapper {
  margin-bottom: 70px;
}
.quote-text h3 {
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 46px;
  color: #E67441;
  margin-left: 29px;
}
.quote-text .border {
  width: 65px;
  background: #133456;
  height: 4px;
  margin: 0 44px;
}
.quote-text h4 {
  display: flex;
  align-items: center;

  color: #434359;
}

.quote-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quote-images img {
  width: 49%;
  height: 49%;
}
.quote_text_wrapper p {
  font-size: 17px;
  font-style: italic;
  text-align: center;
  margin: 10px 0;
  color: #434359;
}


.main-chart{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.chart_content_wrapper {
  margin: 70px 0;
}

.chart_content h2 {
  font-size: 33px;
  font-weight: 700;
  color: #434359;
}
.chart_content p {
  font-weight: 400;
  font-size: 23px;
  color: #5e5e5e;
}.main-chart.single {
  flex-direction: column;
}

.main-chart.single p {
  font-size: 17px;
  font-style: italic;
  text-align: center;
  margin: 10px 0;
  color: #434359;
}

.features_box_s {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.features_box h2 {
  font-size: 25px;
  margin-top: 15px;
}
.features_box svg {
  width: 30px;
  height: 30px;
}
.features_box path {
  fill: #FF8955;
}
.features_box {
  box-shadow: 0 0 10px #DFDFDF;
  border-radius: 13px;
  width: 48%;
  margin-bottom: 46px;
  text-align: center;
  padding: 42px;
}
.features_box_s a {
	display: contents;
}




/* form heading css start here */

.form-container {
	background: #fff;
	border-radius: 20px;
    padding: 55px 35px 20px 35px;
    margin-top: 50px;
}
.form-text {
	text-align: center;
}
.input-text span {
	color: red;
}
.form-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
    max-width: 500px;
    margin: auto;
	position: relative;
}
.form-heading::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70%;
    background: #FAF0EC;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: -45px;
}
.form-left {
	position: relative;
	z-index: 99;
}
.form-right {
	position: relative;
	z-index: 99;
}
.form-heading span{
    color: #fff;
    background: #D67A4D;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid #D67A4D;
    font-size: 20px;
}
.form-heading .form-right span{
    background: #fff;
    color: #D67A4D;
}
.form-text h2{
	font-weight: lighter;
	color: #EC8D5F;
	text-align: center;
    margin-top: 15px;
}



/* Contact form css here */
/* form heading css end here */

.input-text {
	display: flex;
}
.single__input {
	margin-top: 20px;
}
.input-text textarea {
	width: 100%;
	flex: 50%;
	height: 50px;
    padding-top: 8px;
    padding-left: 12px;
    border: 1px solid #ECEEF0;
}
.input-text textarea:focus {
	outline: none;
}
.input-text h1 {
	font-size: 20px;
	flex: 25%;
	font-weight: 400;
    color: #282B2E;
}
.full-checkbox {
	flex: 50%;
}
.select-container input {
	margin-right: 10px;
	margin-bottom: 10px;
}
.select-container label {
	font-size: 16px;
	color: #3f4347;
}
.single__input.budget-box textarea {
	resize: none;
}
.button-container {
	text-align: right;
	margin-top: 20px;
}
.btn__custom {
	width: 190px;
	height: 60px;
	border: none;
	color: #fff;
	background: #D67A4D;
	border-radius: 40px;
	font-size: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .3s;
}
.btn__custom:hover{
    color: #D67A4D;
    background: transparent;
    border-color: #D67A4D;
}
.btn__custom i{
    margin-left: 12px;
}
/* Contact form css here */


/* slider css start here */

.slider{
  position:relative;
  width: 100%;
}
.items{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
}
.item{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2.6s ease-in-out;
  &.current{
    opacity: 1;
  }
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.buttons{
  position:absolute;
  z-index: 1;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.button{
  width:32px;
  height:32px;
  border:none;
  outline:none;
  padding:0;
  background:transparent center no-repeat;
  cursor:pointer;
  opacity:.4;
  &:hover{
    opacity:.8;
  }
}

.dots{
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.dot{
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 0;
  background: #777;
  cursor: pointer;
  opacity: .5;
  transition: opacity .3s ease-in-out;
  &:nth-child(n+2){
    margin-left: 5px;
  }
  &.current{
    opacity: 1;
  }
}
.form-area .container {
	box-shadow: 0 0 10px #c6c6c68c;
	border-radius: 8px;
}
/* slider css end here */




.signup .nice-select {
  width: auto;
  border: 0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  margin: auto;
  height: 77px;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 700;
  color: #434359;
}

.signup .nice-select:after {
  display: none;
}
.form-areas {
	height: 0;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}.form-areas.active {
	height: auto;
	opacity: 1;
	visibility: visible;
}.features_wrapper {
	margin-bottom: 44px;
}


.zo_on_main-wrap.active {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.zo_on_main-wrap {
  transition: .3s;
}
.zo_on_main-wrap #form1 button {
	margin-right: 12px;
	margin-top: 5px !important;
}
.submit-button_aa {
	height: 68px;
	width: 25%;
	background-color: #e67441;
	border: none;
	font-size: 19px;
	border-radius: 100px;
	float: right;
	color: white;
	font-family: 'Proxima Nova Th';
	transition: 0.3s;
	margin-right: 8px;
	margin-top: 6px !important;
}
.zo_on_main-wrap .header.active {
  height: 0;
  /*! visibility: hidden; */
  /*! opacity: 0; */
  display: none;
}
.zo_on_main-wrap .headera.active {
  height: 0;
  /*! visibility: hidden; */
  /*! opacity: 0; */
  display: none;
}
.zo_on_main-wrap .header {
  transition: .3s;
}
.zo_on_main-wrap .headera {
  transition: .3s;
}