/*website colors*/
/* Small devices (portrait phones, 320px) */
/* Media Query For Device More then 360px */
/* Media Query For Device More then 375px */
/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
/* Medium devices (tablets, 992px and up) */
/* Medium devices (tablets landscape, 1024px and up) */
/* Medium devices (tablets landscape, 1120px and up) */
/* Medium devices (desktops, 1200px and up) */
/* small laptop screen */
/* MacBook Pro */
/* large devices (desktops, 1600px and up) */
/* extra large devices (desktops, 1921px and up) */
/* Mobile Device */
/*flex box mixins*/
/* Text Decoration Mixins */
/* Transition/Transform Mixins */
/* Animation Mixins */
/* Buttons Mixins */
/*website colors*/
/* Small devices (portrait phones, 320px) */
/* Media Query For Device More then 360px */
/* Media Query For Device More then 375px */
/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
/* Medium devices (tablets, 992px and up) */
/* Medium devices (tablets landscape, 1024px and up) */
/* Medium devices (tablets landscape, 1120px and up) */
/* Medium devices (desktops, 1200px and up) */
/* small laptop screen */
/* MacBook Pro */
/* large devices (desktops, 1600px and up) */
/* extra large devices (desktops, 1921px and up) */
/* Mobile Device */
/*flex box mixins*/
/* Text Decoration Mixins */
/* Transition/Transform Mixins */
/* Animation Mixins */
/* Buttons Mixins */
/*------------------------------------------------------------------

[Table of contents]

1. Global
2. a tag/Pseudo/img Classes
3. Heading tag/p tag
4. Form/table
5. Button
6. Common Class
/*-------------------------------------------------------------------*/
/* 1. Global */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Gordita";
}
body {
  font-family: "Gordita";
  font-size: 16px;
  line-height: 28px;
  padding: 0;
  margin: 0;
  background-color: #FBFAF5;
  font-weight: 400;
  letter-spacing: normal;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  color: #212B36;
}
@media (min-width: 0px) and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 26px;
  }
}
/* 2. a tag/Pseudo/img Classes */
img {
  max-width: 100%;
  border: 0;
  height: auto;
  outline: none;
  max-height: 100%;
  width: auto;
  display: block;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #212B36;
}
a:visited {
  color: #212B36;
}
:focus-visible, a:focus-visible, img:focus-visible {
  outline: none;
}
:focus {
  outline: none;
  /* or set as par your theme */
}
/* 3. heading tag/p tag */
h1, h2, h3, h4, h5, h6, p, span {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Recoleta";
}
/* 4. Form/table  */
form {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}
select, input[type="submit"] {
  cursor: pointer;
}
button, input, select, textarea, form, table, label {
  font-family: "Gordita";
  font-size: 16px;
  line-height: 28px;
  outline: none;
}
/*placeholder color change */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #637381;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #637381;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #637381;
}
/* 5. Button */
.btn_wrap {
  display: inline-flex;
}
.btn_wrap button, .btn_wrap input[type="submit"], .btn_wrap .btn, .btn_wrap .button {
  border: 0;
  color: #FFFFFF;
  padding: 6px 20px 6px 20px;
  text-align: center;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  cursor: pointer;
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  border-radius: 24px;
  background: #f26334;
  font-family: "Gordita";
  background: linear-gradient(90deg, #f26334 0%, #fe812f 100%);
  position: relative;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 365px) {
  .btn_wrap button, .btn_wrap input[type="submit"], .btn_wrap .btn, .btn_wrap .button {
    padding: 6px 20px 6px 20px;
  }
}
@media (min-width: 1200px) {
  .btn_wrap button, .btn_wrap input[type="submit"], .btn_wrap .btn, .btn_wrap .button {
    font-size: 16px;
    line-height: 26px;
  }
}
.btn_wrap button::before, .btn_wrap input[type="submit"]::before, .btn_wrap .btn::before, .btn_wrap .button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #f26334;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 24px;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.btn_wrap button::after, .btn_wrap input[type="submit"]::after, .btn_wrap .btn::after, .btn_wrap .button::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/right_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 8px;
  height: 12px;
  right: auto;
  top: 2px;
  bottom: 0;
  margin: auto;
  margin-left: 10px;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
@media (min-width: 0px) and (max-width: 767px) {
  .btn_wrap button::after, .btn_wrap input[type="submit"]::after, .btn_wrap .btn::after, .btn_wrap .button::after {
    top: 0;
    display: none;
  }
}
@media (min-width: 768px) {
  .btn_wrap button, .btn_wrap input[type="submit"], .btn_wrap .btn, .btn_wrap .button {
    padding: 6px 33px 6px 17px;
  }
}
@media (min-width: 1025px) {
  .btn_wrap button, .btn_wrap input[type="submit"], .btn_wrap .btn, .btn_wrap .button {
    padding: 6px 35px 6px 20px;
  }
}
@media (min-width: 1200px) {
  .btn_wrap button, .btn_wrap input[type="submit"], .btn_wrap .btn, .btn_wrap .button {
    padding: 8px 40px 8px 30px;
  }
}
@media (min-width: 1440px) {
  .btn_wrap button, .btn_wrap input[type="submit"], .btn_wrap .btn, .btn_wrap .button {
    padding: 10px 45px 10px 30px;
  }
}
@media (min-width: 1600px) {
  .btn_wrap button, .btn_wrap input[type="submit"], .btn_wrap .btn, .btn_wrap .button {
    padding: 12px 50px 12px 35px;
  }
}
.btn_wrap button.btn_black, .btn_wrap input[type="submit"].btn_black, .btn_wrap .btn.btn_black, .btn_wrap .button.btn_black {
  background: #000000;
}
.btn_wrap button.btn_black::before, .btn_wrap input[type="submit"].btn_black::before, .btn_wrap .btn.btn_black::before, .btn_wrap .button.btn_black::before {
  background-color: rgba(255, 255, 255, 0.2);
}
.btn_wrap button.btn_transparent, .btn_wrap input[type="submit"].btn_transparent, .btn_wrap .btn.btn_transparent, .btn_wrap .button.btn_transparent {
  background: #FBFAF5;
  color: #000000;
  border: 1px solid #000000;
}
.btn_wrap button.btn_transparent::before, .btn_wrap input[type="submit"].btn_transparent::before, .btn_wrap .btn.btn_transparent::before, .btn_wrap .button.btn_transparent::before {
  background-color: #fde7de;
}
.btn_wrap button.btn_transparent::after, .btn_wrap input[type="submit"].btn_transparent::after, .btn_wrap .btn.btn_transparent::after, .btn_wrap .button.btn_transparent::after {
  filter: invert(1);
}
.btn_wrap input[type="submit"] {
  padding: 6px 17px 6px 17px;
  width: auto;
}
@media (max-width: 365px) {
  .btn_wrap input[type="submit"] {
    padding: 6px 13px 6px 13px;
  }
}
@media (min-width: 1025px) {
  .btn_wrap input[type="submit"] {
    padding: 6px 20px 6px 20px;
  }
}
@media (min-width: 1200px) {
  .btn_wrap input[type="submit"] {
    padding: 8px 30px 8px 30px;
  }
}
@media (min-width: 1440px) {
  .btn_wrap input[type="submit"] {
    padding: 10px 30px 10px 30px;
  }
}
@media (min-width: 1600px) {
  .btn_wrap input[type="submit"] {
    padding: 12px 35px 12px 35px;
  }
}
.btn_wrap button:hover, .btn_wrap input[type="submit"]:hover, .btn_wrap .btn:hover, .btn_wrap .button:hover {
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.btn_wrap button:hover::before, .btn_wrap input[type="submit"]:hover::before, .btn_wrap .btn:hover::before, .btn_wrap .button:hover::before {
  width: 100%;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.btn_wrap button:hover::after, .btn_wrap input[type="submit"]:hover::after, .btn_wrap .btn:hover::after, .btn_wrap .button:hover::after {
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
  margin-left: 16px;
}
.blog-detail-prod-link {
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
}
.blog-detail-prod-link a {
  border: 0;
  color: #FFFFFF;
  padding: 6px 33px 6px 17px;
  text-align: center;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  cursor: pointer;
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  border-radius: 24px;
  background: #f26334;
  font-family: "Gordita";
  background: linear-gradient(90deg, #f26334 0%, #fe812f 100%);
  position: relative;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 365px) {
  .blog-detail-prod-link a {
    padding: 6px 32px 6px 13px;
  }
}
@media (min-width: 1200px) {
  .blog-detail-prod-link a {
    font-size: 16px;
    line-height: 26px;
  }
}
.blog-detail-prod-link a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #f26334;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 24px;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.blog-detail-prod-link a::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/right_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 8px;
  height: 12px;
  right: auto;
  top: 2px;
  bottom: 0;
  margin: auto;
  margin-left: 10px;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
@media (min-width: 0px) and (max-width: 767px) {
  .blog-detail-prod-link a::after {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .blog-detail-prod-link a {
    padding: 6px 35px 6px 20px;
  }
}
@media (min-width: 1200px) {
  .blog-detail-prod-link a {
    padding: 8px 40px 8px 30px;
  }
}
@media (min-width: 1440px) {
  .blog-detail-prod-link a {
    padding: 10px 45px 10px 30px;
  }
}
@media (min-width: 1600px) {
  .blog-detail-prod-link a {
    padding: 12px 50px 12px 35px;
  }
}
.blog-detail-prod-link a:hover {
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.blog-detail-prod-link a:hover::before {
  width: 100%;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.blog-detail-prod-link a:hover::after {
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
  margin-left: 16px;
}
/* 6. Common Class css */
.list_none {
  list-style-type: none;
}
.appearance-none {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}
.m-0 {
  margin: 0;
}
.p-0 {
  padding: 0;
}
.pt-0 {
  padding-top: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.pl-0 {
  padding-left: 0;
}
.pr-0 {
  padding-right: 0;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.ml-0 {
  margin-left: 0;
}
.mr-0 {
  margin-right: 0;
}
.m-20 {
  margin: 20px;
}
.p-20 {
  padding: 20px;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .d-flex {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
p:empty {
  display: none;
}
/*website colors*/
/* Small devices (portrait phones, 320px) */
/* Media Query For Device More then 360px */
/* Media Query For Device More then 375px */
/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
/* Medium devices (tablets, 992px and up) */
/* Medium devices (tablets landscape, 1024px and up) */
/* Medium devices (tablets landscape, 1120px and up) */
/* Medium devices (desktops, 1200px and up) */
/* small laptop screen */
/* MacBook Pro */
/* large devices (desktops, 1600px and up) */
/* extra large devices (desktops, 1921px and up) */
/* Mobile Device */
/*flex box mixins*/
/* Text Decoration Mixins */
/* Transition/Transform Mixins */
/* Animation Mixins */
/* Buttons Mixins */
/*------------------------------------------------------------------

[Table of contents]

1. Common structure Class
2. Title CSS
3. common section for left right
/*-------------------------------------------------------------------*/
.container {
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}
@media (min-width: 1340px) {
  .container {
    max-width: 1240px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }
}
.full-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .full-container {
    max-width: 1180px;
  }
}
@media (min-width: 1340px) {
  .full-container {
    max-width: 1240px;
  }
}
@media (min-width: 1440px) {
  .full-container {
    max-width: 1360px;
  }
}
@media (min-width: 1600px) {
  .full-container {
    max-width: 1640px;
  }
}
.sign {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #212B36;
  margin: 0;
  position: relative;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.sign::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 2px;
  background-color: #212B36;
  left: 7px;
  top: -7px;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.cd-top {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: linear-gradient(0deg, #f26334 30%, #fe812f 100%);
  position: fixed;
  bottom: -50px;
  right: -50px;
  z-index: 9;
  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;
  border: 1px solid transparent;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.cd-top .top_arrow {
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  margin: 0;
  position: relative;
  top: 3px;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
.cd-top .top_arrow::before {
  content: "";
  border: solid #FC7D2F;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  margin: 0;
  top: 5px;
  position: absolute;
  opacity: 0;
}
.cd-top:hover {
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
  border-color: #FC7D2F;
  background: none;
}
.cd-top:hover .top_arrow {
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
  top: 6px;
  border-color: #FC7D2F;
}
.cd-top:hover .top_arrow::before {
  animation: opacity 0.6s ease-in infinite;
}
.cd-top.cd-is-visible {
  bottom: 70px;
  right: 50px;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media (max-width: 1024px) {
  .cd-top.cd-is-visible {
    bottom: 50px;
    right: 20px;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}
.title-32 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  font-family: "Recoleta";
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .title-32 {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  .title-32 {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 1200px) {
  .title-32 {
    font-size: 32px;
    line-height: 44px;
  }
}
.title-24 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Recoleta";
}
@media (min-width: 768px) {
  .title-24 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .title-24 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 1600px) {
  .title-24 {
    font-size: 24px;
    line-height: 34px;
  }
}
.title-18 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  font-family: "Gordita";
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .title-18 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .title-18 {
    margin-bottom: 20px;
  }
}
.title-28 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .title-28 {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 1200px) {
  .title-28 {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (min-width: 1340px) {
  .title-28 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 1440px) {
  .title-28 {
    font-size: 28px;
    line-height: 40px;
  }
}
.title-22 {
  font-size: 22px;
  line-height: 33px;
  font-weight: 400;
  font-family: "Recoleta";
}
@media (min-width: 1025px) {
  .title-22 {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .title-22 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1600px) {
  .title-22 {
    font-size: 22px;
    line-height: 33px;
  }
}
.title-64 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .title-64 {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (min-width: 1200px) {
  .title-64 {
    font-size: 42px;
    line-height: 46px;
  }
}
@media (min-width: 1440px) {
  .title-64 {
    font-size: 50px;
    line-height: 56px;
  }
}
@media (min-width: 1600px) {
  .title-64 {
    font-size: 58px;
    line-height: 64px;
  }
}
.title-80 {
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .title-80 {
    font-size: 50px;
    line-height: 66px;
  }
}
@media (min-width: 1200px) {
  .title-80 {
    font-size: 54px;
    line-height: 58px;
  }
}
@media (min-width: 1440px) {
  .title-80 {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 1600px) {
  .title-80 {
    font-size: 70px;
    line-height: 72px;
  }
}
.title-40 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .title-40 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1200px) {
  .title-40 {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (min-width: 1440px) {
  .title-40 {
    font-size: 40px;
    line-height: 52px;
  }
}
.title-20 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}
.common-section {
  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;
}
.common-section .left {
  max-width: 100%;
  flex: 0 0 100%;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
@media (min-width: 0px) and (max-width: 767px) {
  .common-section .left {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1025px) {
  .common-section .left {
    max-width: 600px;
    flex: 0 0 600px;
  }
}
@media (min-width: 1200px) {
  .common-section .left {
    max-width: 700px;
    flex: 0 0 700px;
  }
}
@media (min-width: 1440px) {
  .common-section .left {
    max-width: 792px;
    flex: 0 0 792px;
  }
}
@media (min-width: 1600px) {
  .common-section .left {
    font-size: 20px;
    line-height: 34px;
  }
}
.common-section .right {
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .common-section .right {
    margin-top: 20px;
  }
}
@media (min-width: 1025px) {
  .common-section .right {
    max-width: calc(100% - 600px);
    margin-top: 0;
    flex: 0 0 calc(100% - 600px);
  }
}
@media (min-width: 1200px) {
  .common-section .right {
    max-width: calc(100% - 700px);
    flex: 0 0 calc(100% - 700px);
  }
}
@media (min-width: 1440px) {
  .common-section .right {
    max-width: calc(100% - 792px);
    flex: 0 0 calc(100% - 792px);
  }
}
.common-spacing {
  padding: 40px 0 43px;
}
@media (min-width: 768px) {
  .common-spacing {
    padding: 60px 0 63px;
  }
}
@media (min-width: 1200px) {
  .common-spacing {
    padding: 80px 0 83px;
  }
}
@media (min-width: 1440px) {
  .common-spacing {
    padding: 100px 0 103px;
  }
}
.common-spacing-top {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .common-spacing-top {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  .common-spacing-top {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .common-spacing-top {
    padding-top: 100px;
  }
}
.common-spacing-bottom {
  padding-bottom: 43px;
}
@media (min-width: 768px) {
  .common-spacing-bottom {
    padding-bottom: 63px;
  }
}
@media (min-width: 1200px) {
  .common-spacing-bottom {
    padding-bottom: 83px;
  }
}
@media (min-width: 1440px) {
  .common-spacing-bottom {
    padding-bottom: 103px;
  }
}
.link_wrap a {
  text-decoration: underline;
  position: relative;
  padding-right: 15px;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.link_wrap a::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/header_arrow.svg);
  width: 11px;
  height: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0);
  transform: rotate(-90deg);
  top: 2px;
  bottom: 0;
  margin: auto;
  right: 0;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
.link_wrap a:hover {
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #FC7D2F;
  text-decoration: none;
  padding-right: 22px;
}
.link_wrap a:hover::after {
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
  filter: unset;
}
.g-line {
  position: relative;
}
.g-line span {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  font-family: "Recoleta";
}
.g-line span::before {
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  position: absolute;
  height: 7px;
  width: 100%;
  bottom: 0px;
  left: 0;
  border: none;
  border-bottom: 3.5px solid;
  border-radius: 130px 50px / 6px 6px;
  padding: 0;
  width: 100%;
  display: inline;
  border-color: #01a770;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .g-line span::before {
    bottom: 1px;
  }
}
.header-spacing {
  margin: 0 auto 50px;
  text-align: center;
  max-width: 1000px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .header-spacing {
    margin-bottom: 25px;
    font-size: 16px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .header-spacing {
    margin: 0 auto 30px;
  }
}
@media (min-width: 992px) {
  .header-spacing {
    margin: 0 auto 35px;
  }
}
@media (min-width: 1440px) {
  .header-spacing {
    margin: 0 auto 50px;
  }
}
.header-spacing .title-64 {
  display: inline-block;
  margin-bottom: 0;
}
.header-spacing p {
  font-size: 14px;
  line-height: 23px;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px !important;
}
@media (min-width: 768px) {
  .header-spacing p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1025px) {
  .header-spacing p {
    margin-top: 20px !important;
  }
}
@media (min-width: 1440px) {
  .header-spacing p {
    font-size: 18px;
    line-height: 30px;
  }
}
.header-spacing .tag {
  max-width: unset !important;
  display: inline-block;
  background-color: #e8f5fc;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 5px 16px 5px 51px;
  border-radius: 50px;
  position: relative;
  font-family: "Gordita";
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-left: auto;
  margin-right: auto;
}
.header-spacing .tag::before {
  content: "";
  background: url(../../assets/images/art_work.svg);
  background-repeat: no-repeat;
  background-position: center;
  height: 30px;
  width: 30px;
  left: 16px;
  top: 4px;
  position: absolute;
}
.header-spacing .btn_wrap {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .header-spacing .btn_wrap {
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .header-spacing.common-spacing {
    padding: 10px 0 !important;
  }
}
.margin-top {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .margin-top {
    margin-top: 50px;
  }
}
.sign_box {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 48px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .sign_box {
    padding-right: 32px;
  }
}
.sign_box::after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  border-radius: 50%;
  right: 0;
  top: 0px;
  margin: auto;
  bottom: 0;
  position: absolute;
}
@media (min-width: 0px) and (max-width: 767px) {
  .sign_box::after {
    width: 25px;
    height: 25px;
  }
}
.sign_box::before {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/plus.svg);
  top: 0px;
  bottom: 0;
  margin: auto;
  right: 0px;
  width: 18px;
  height: 18px;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  -o-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 0px) and (max-width: 767px) {
  .sign_box::before {
    right: 0px;
    width: 13px;
    height: 13px;
  }
}
.active .sign_box::before {
  background-image: url(../../assets/images/minius.svg);
  -o-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.video_icon {
  position: absolute;
  background-image: url(../../assets/images/header/video_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 30px;
  width: 30px;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .video_icon {
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 1200px) {
  .video_icon {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 1440px) {
  .video_icon {
    height: 60px;
    width: 60px;
  }
}
.video_icon::after {
  display: block;
  margin: 0;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 0px #FFFFFF;
  animation: box_shadow 1.8s forwards infinite;
  content: "";
}
@keyframes box_shadow {
  0% {
    box-shadow: 0px 0px 2px 0px #FFFFFF;
  }
  50% {
    box-shadow: 0px 0px 2px 5px #FFFFFF;
  }
  100% {
    box-shadow: 0px 0px 2px 0px #FFFFFF;
  }
}
.slick-dots {
  bottom: 0;
}
.slick-dots li {
  width: 13px;
  height: 13px;
  margin: 0;
  margin-right: 5px;
}
.slick-dots li button {
  width: 13px;
  height: 13px;
  border: 1px solid #000000;
  border-radius: 50%;
  padding: 0;
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li.slick-active button {
  background-color: #FC7D2F;
}
.boxes_wrap {
  gap: 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .boxes_wrap {
    gap: 24px 24px;
  }
}
@media (min-width: 768px) {
  .boxes_wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.boxes_wrap .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  padding: 25px;
  border-radius: 24px;
  transition: 0.5s ease;
  border: 1px solid #212B36;
}
@media (min-width: 0px) and (max-width: 767px) {
  .boxes_wrap .boxes {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.boxes_wrap .boxes .title-24 {
  margin-bottom: 8px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .boxes_wrap .boxes .title-24 {
    margin-bottom: 5px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .boxes_wrap .boxes {
    padding: 20px;
    border-radius: 20px;
  }
}
@media (min-width: 768px) {
  .boxes_wrap .boxes {
    max-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
}
@media (min-width: 992px) {
  .boxes_wrap .boxes {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .boxes_wrap .boxes {
    padding: 30px;
  }
}
@media (min-width: 1440px) {
  .boxes_wrap .boxes {
    padding: 40px;
  }
}
.boxes_wrap .boxes .box_content {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .boxes_wrap .boxes .box_content {
    font-size: 14px;
    line-height: 24px;
  }
}
.boxes_wrap .boxes .box_content ul {
  padding-left: 20px;
}
.boxes_wrap .boxes img {
  margin-right: 15px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .boxes_wrap .boxes img {
    margin-right: 0;
    margin-bottom: 20px;
    height: 48px;
    width: auto;
  }
}
@media (min-width: 992px) {
  .boxes_wrap .boxes img {
    display: none;
  }
}
@media (min-width: 1200px) {
  .boxes_wrap .boxes img {
    display: block;
    margin-right: 25px;
  }
}
@media (min-width: 1440px) {
  .boxes_wrap .boxes img {
    margin-right: 40px;
  }
}
.boxes_wrap.three_box .boxes {
  flex-direction: column;
}
@media (min-width: 992px) {
  .boxes_wrap.three_box .boxes {
    max-width: calc(33.33% - 16px);
    flex: 0 0 calc(33.33% - 16px);
  }
}
.boxes_wrap.three_box .boxes img {
  margin: 0;
  margin-bottom: 25px;
}
.button_section {
  background: #a0e6d5;
  background: linear-gradient(180deg, #a0e6d5 0%, #d4f4ec 100%);
  overflow: hidden;
}
@media (min-width: 992px) {
  .button_section {
    border-radius: 60px;
    background: #a0e6d5;
    background: linear-gradient(180deg, #a0e6d5 0%, #baede1 70%, #d4f4ec 100%);
  }
}
@media (min-width: 1200px) {
  .button_section {
    background-position: 0;
  }
}
@media (min-width: 1440px) {
  .button_section {
    background-position: 10%;
  }
}
@media (min-width: 1600px) {
  .button_section {
    background-position: center;
  }
}
.button_section .header-spacing {
  max-width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  max-width: 1035px;
}
.button_section .header-spacing .btn_wrap {
  padding-top: 30px;
  margin-top: 0;
}
@media (min-width: 992px) {
  .button_section .header-spacing .btn_wrap {
    padding-top: 40px;
  }
}
.button_section .header-spacing p {
  max-width: 100%;
  margin: 0;
}
.button_section::after {
  content: "";
  clear: both;
  display: table;
}
@media (min-width: 768px) {
  .button_section .d-flex .common-spacing {
    padding: 70px 0 73px;
  }
}
.button_section .d-flex .left {
  max-width: 650px;
  flex: 0 0 650px;
  position: relative;
  display: none;
}
@media (min-width: 992px) {
  .button_section .d-flex .left {
    max-width: 400px;
    flex: 0 0 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .button_section .d-flex .left {
    max-width: 540px;
    flex: 0 0 540px;
  }
}
@media (min-width: 1440px) {
  .button_section .d-flex .left {
    max-width: 600px;
    flex: 0 0 600px;
  }
}
.button_section .d-flex .left img {
  z-index: 1;
  position: relative;
}
.button_section .d-flex .left img.logo_border {
  width: 40%;
}
.button_section .d-flex .left .partition_image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
.button_section .d-flex .left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  background-color: #80d6c1;
  right: 100px;
  z-index: 1;
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
}
@media (min-width: 1200px) {
  .button_section .d-flex .left::before {
    right: 130px;
  }
}
.button_section .d-flex .right {
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  .button_section .d-flex .right {
    max-width: calc(100% - 400px);
    flex: 0 0 calc(100% - 400px);
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .button_section .d-flex .right {
    max-width: calc(100% - 540px);
    flex: 0 0 calc(100% - 540px);
    padding-left: 40px;
  }
}
@media (min-width: 1440px) {
  .button_section .d-flex .right {
    max-width: calc(100% - 600px);
    flex: 0 0 calc(100% - 600px);
  }
}
@media (min-width: 1600px) {
  .button_section .d-flex .right {
    padding-left: 60px;
  }
}
.button_section.orange_bg {
  background: #efc0ad;
  background: linear-gradient(180deg, #efc0ad 0%, #f5e0d8 100%);
  position: relative;
}
.button_section.orange_bg .d-flex .left::before {
  background-color: #f2bba5;
}
.button_section.pink_bg {
  background: #ebb4bf;
  background: linear-gradient(180deg, rgba(235, 180, 191, 0.95) 0%, rgba(252, 219, 226, 0.95) 100%);
  position: relative;
}
.button_section.pink_bg .d-flex .left::before {
  background-color: #e5a0ae;
}
.button_section.blue_bg {
  background: #96d0e5;
  background: linear-gradient(180deg, #96d0e5 0%, #d8edf5 100%);
  position: relative;
}
.button_section.blue_bg .d-flex .left::before {
  background-color: #77c3e0;
}
.bg-blue {
  background-color: #D8EDF5;
}
.bg-pink {
  background-color: #F5DFE3;
}
.bg-orange {
  background-color: #F5E0D8;
}
.bg-light-orange {
  background-color: #FBF4EE;
}
.bg-green {
  background-color: #D8F5EE;
}
.gradient-green {
  background: #fbfaf5;
  background: linear-gradient(180deg, #fbfaf5 0%, #d8f5ee 100%);
}
.gradient-blue {
  background: #fbfaf5;
  background: linear-gradient(180deg, #fbfaf5 0%, #d8edf5 100%);
}
.gradient-pink {
  background: #fbfaf5;
  background: linear-gradient(180deg, #fbfaf5 0%, #f5dfe3 100%);
}
.gradient-orange {
  background: #fbfaf5;
  background: linear-gradient(180deg, #fbfaf5 0%, #f5e0d8 100%);
}
.check_sign_listing {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.check_sign_listing li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}
@media (min-width: 768px) {
  .check_sign_listing li {
    padding-left: 25px;
  }
}
@media (min-width: 992px) {
  .check_sign_listing li {
    padding-left: 33px;
  }
}
.check_sign_listing li::before {
  content: "";
  height: 15px;
  width: 7px;
  border-bottom: 2px solid #118d57;
  border-right: 2px solid #118d57;
  position: absolute;
  left: 5px;
  top: 2px;
  display: inline-block;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .check_sign_listing li::before {
    height: 13px;
    width: 5px;
  }
}
@media (min-width: 992px) {
  .check_sign_listing li::before {
    height: 15px;
    width: 7px;
    top: 3px;
  }
}
.check_sign_listing li:last-child {
  margin-bottom: 0;
}
.fancybox-inner .fancybox-toolbar .fancybox-button--zoom, .fancybox-inner .fancybox-toolbar .fancybox-button--play, .fancybox-inner .fancybox-toolbar .fancybox-button--thumbs, .fancybox-inner .fancybox-toolbar .fancybox-button--pause {
  display: none !important;
}
.fancybox-inner .fancybox-slide--image {
  padding: 44px 20px;
}
.form {
  text-align: center;
}
.form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 24px;
  width: 100%;
}
.form .wpcf7-form-control, .form input, .form select, .form textarea {
  border: 1px solid #212B36;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 20px;
  color: #637381;
  width: 100%;
}
@media (min-width: 768px) {
  .form .wpcf7-form-control, .form input, .form select, .form textarea {
    padding: 10px 15px;
  }
}
@media (min-width: 1025px) {
  .form .wpcf7-form-control, .form input, .form select, .form textarea {
    padding: 14px 20px;
  }
}
.form .wpcf7-not-valid-tip {
  display: block;
  margin-bottom: 0;
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  margin-top: 3px;
  color: #ed0a0a;
  margin-left: 20px;
}
.form .d-flex {
  margin: 0 -12px;
}
.form .d-flex .wpcf7-form-control-wrap {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 0 12px;
}
.form .d-flex .wpcf7-form-control-wrap.customerTelephone .intl-tel-input {
  display: block;
}
.form .d-flex .wpcf7-form-control-wrap.customerTelephone .intl-tel-input .flag-container .country-list {
  width: 320px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .form .d-flex .wpcf7-form-control-wrap {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .form .d-flex .othersolutionfield {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.form .d-flex.solution-dropdown .wpcf7-form-control-wrap {
  max-width: 100%;
  flex: 0 0 100%;
}
.form .d-flex.solution-dropdown .wpcf7-form-control-wrap .select_wrapp .wpcf7-form-control-wrap {
  padding: 0;
  display: block;
  max-width: 100%;
  margin-bottom: 0;
}
.form .d-flex.box_two .wpcf7-form-control-wrap .select_wrapp .wpcf7-form-control-wrap {
  padding: 0;
  max-width: 100%;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .form .d-flex.box_two .othersolutionfield {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
.form .d-flex.box_two .othersolutionfield .wpcf7-form-control-wrap {
  max-width: 100%;
  flex: 0 0 100%;
}
.form .d-flex.solution-dropdown .othersolutionfield {
  max-width: unset;
  flex: unset;
}
.form textarea {
  resize: none;
}
.form .select_wrapp {
  position: relative;
}
.form .select_wrapp select {
  appearance: none;
}
.form .select_wrapp::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/right_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 8px;
  height: 12px;
  right: 25px;
  top: 20px;
  margin-left: 0px;
  transition: 0.24s ease-in;
  filter: brightness(0.56);
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .form .select_wrapp::after {
    top: 16px;
  }
}
@media (min-width: 1025px) {
  .form .select_wrapp::after {
    top: 20px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .form .select_wrapp::after {
    top: 16px;
  }
}
.form .btn_wrap {
  position: relative;
}
.form .btn_wrap .wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
.form .intl-tel-input .flag-container {
  right: 0;
}
.form .intl-tel-input .flag-container .selected-flag {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  background-color: transparent !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #bdbdbd;
}
.form .intl-tel-input .flag-container .selected-flag .selected-dial-code {
  font-size: 14px;
  padding-left: 26px;
}
.form .intl-tel-input .flag-container .country-list {
  left: 0;
  right: 0;
}
.form .intl-tel-input .flag-container .country-list .country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form .intl-tel-input .flag-container .country-list .country .country-name {
  font-size: 14px;
  line-height: normal;
  margin: 0;
}
.form .intl-tel-input .flag-container .country-list .country .dial-code {
  font-size: 13px;
  margin: 0;
  line-height: normal;
}
.opinion_box_listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .opinion_box_listing {
    gap: 20px 20px;
  }
}
@media (min-width: 992px) {
  .opinion_box_listing {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .opinion_box_listing {
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .opinion_box_listing {
    margin-bottom: 80px;
  }
}
.opinion_box_listing .opinion_box {
  padding: 20px 20px;
  border: 1px solid #212B36;
  border-radius: 24px;
  background-color: #FFFFFF;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .opinion_box_listing .opinion_box {
    max-width: calc(100% - 12px);
    flex: 0 0 calc(100% - 12px);
  }
}
@media (min-width: 992px) {
  .opinion_box_listing .opinion_box {
    max-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
    padding: 30px 20px;
  }
}
@media (min-width: 1440px) {
  .opinion_box_listing .opinion_box {
    padding: 40px 30px;
  }
}
.opinion_box_listing .opinion_box .box_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.opinion_box_listing .opinion_box .box_top img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}
@media (min-width: 0px) and (max-width: 767px) {
  .opinion_box_listing .opinion_box .box_top img {
    width: 60px;
    height: 60px;
  }
}
.opinion_box_listing .opinion_box .box_top .right {
  max-width: calc(100% - 75px);
  flex: 0 0 calc(100% - 75px);
  padding-left: 10px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .opinion_box_listing .opinion_box .box_top .right {
    max-width: calc(100% - 60px);
    flex: 0 0 calc(100% - 60px);
  }
}
.opinion_box_listing .opinion_box .box_top .right .title-20 {
  margin-bottom: 0;
  font-weight: 500;
}
.opinion_box_listing .opinion_box .box_top .right span {
  display: block;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0;
}
.opinion_box_listing .opinion_box .box_bottom p {
  display: inline;
  font-size: 16px;
  line-height: 28px;
  animation: fade_in 0.3s ease-in forwards;
}
.btn_div {
  padding-top: 50px;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 767px) {
  .btn_div {
    padding-top: 30px;
  }
}
.banner_section .header-spacing.common-spacing {
  margin-bottom: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .banner_section .header-spacing.common-spacing {
    padding: 10px 0;
  }
}
.banner_section.pink_bg {
  background: #f5dfe3;
  background: linear-gradient(180deg, rgba(245, 223, 227, 0.95) 0%, rgba(245, 223, 227, 0.66) 100%);
}
#infinite-handle {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  margin-top: 30px;
}
@media (min-width: 1440px) {
  #infinite-handle {
    margin-top: 50px;
  }
}
#infinite-handle span.ctis-load-more {
  margin: 0 auto;
  display: inline-block;
}
#infinite-handle span.ctis-load-more button {
  border: 0;
  color: #FFFFFF;
  padding: 6px 33px 6px 17px;
  text-align: center;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  cursor: pointer;
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  border-radius: 24px;
  background: #f26334;
  font-family: "Gordita";
  background: linear-gradient(90deg, #f26334 0%, #fe812f 100%);
  position: relative;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 365px) {
  #infinite-handle span.ctis-load-more button {
    padding: 6px 32px 6px 13px;
  }
}
@media (min-width: 1200px) {
  #infinite-handle span.ctis-load-more button {
    font-size: 16px;
    line-height: 26px;
  }
}
#infinite-handle span.ctis-load-more button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #f26334;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 24px;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
#infinite-handle span.ctis-load-more button::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/right_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 8px;
  height: 12px;
  right: auto;
  top: 2px;
  bottom: 0;
  margin: auto;
  margin-left: 10px;
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
}
@media (min-width: 0px) and (max-width: 767px) {
  #infinite-handle span.ctis-load-more button::after {
    top: 0;
  }
}
@media (min-width: 1025px) {
  #infinite-handle span.ctis-load-more button {
    padding: 6px 35px 6px 20px;
  }
}
@media (min-width: 1200px) {
  #infinite-handle span.ctis-load-more button {
    padding: 8px 40px 8px 30px;
  }
}
@media (min-width: 1440px) {
  #infinite-handle span.ctis-load-more button {
    padding: 10px 45px 10px 30px;
  }
}
@media (min-width: 1600px) {
  #infinite-handle span.ctis-load-more button {
    padding: 12px 50px 12px 35px;
  }
}
#infinite-handle span.ctis-load-more button:hover {
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
#infinite-handle span.ctis-load-more button:hover::before {
  width: 100%;
  -o-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
#infinite-handle span.ctis-load-more button:hover::after {
  -o-transition: 0.24s ease-in;
  -moz-transition: 0.24s ease-in;
  transition: 0.24s ease-in;
  margin-left: 16px;
}
#ctis-loading {
  margin: 0;
  padding: 0;
  width: 100%;
}
#ctis-loading span.spinner {
  margin-bottom: 0;
}
body.scroll_hide {
  overflow: hidden;
}
.popup_modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 26;
  background: rgba(0, 0, 0, 0.84);
  opacity: 0;
  visibility: hidden;
  -o-transition: 0.36s ease;
  -moz-transition: 0.36s ease;
  transition: 0.36s ease;
}
.popup_modal .popup_wrapper {
  height: 100%;
  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: 20px 55px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .popup_modal .popup_wrapper {
    padding: 20px 20px;
  }
}
.popup_modal .popup_wrapper .popup_video {
  padding: 12px;
  background: #FFFFFF;
  border-radius: 10px;
  max-width: 780px;
  width: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .popup_modal .popup_wrapper .popup_video {
    max-width: 660px;
  }
}
@media (min-width: 1440px) {
  .popup_modal .popup_wrapper .popup_video {
    max-width: 780px;
  }
}
.popup_modal .popup_wrapper .popup_video iframe {
  width: 100%;
  display: block;
  height: 340px;
}
@media (min-width: 1440px) {
  .popup_modal .popup_wrapper .popup_video iframe {
    height: 400px;
  }
}
.popup_modal .popup_wrapper .close {
  position: absolute;
  right: -35px;
  top: -35px;
  width: 40px;
  height: 40px;
  opacity: 1;
  margin: 0;
  background: #FFFFFF;
  border-radius: 50%;
  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;
  cursor: pointer;
}
@media (min-width: 0px) and (max-width: 767px) {
  .popup_modal .popup_wrapper .close {
    right: 0;
    top: -45px;
    width: 34px;
    height: 34px;
  }
}
.popup_modal .popup_wrapper .close::before, .popup_modal .popup_wrapper .close::after {
  position: absolute;
  left: 18px;
  content: " ";
  height: 24px;
  width: 2px;
  background-color: #333;
}
@media (min-width: 0px) and (max-width: 767px) {
  .popup_modal .popup_wrapper .close::before, .popup_modal .popup_wrapper .close::after {
    left: 16px;
    height: 20px;
    width: 2px;
  }
}
.popup_modal .popup_wrapper .close:before {
  transform: rotate(45deg);
}
.popup_modal .popup_wrapper .close:after {
  transform: rotate(-45deg);
}
.popup_modal.show {
  opacity: 1;
  visibility: visible;
  -o-transition: 0.36s ease;
  -moz-transition: 0.36s ease;
  transition: 0.36s ease;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup {
  background-color: #fbfaf5;
  position: relative;
}
@media (min-width: 1025px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #222222;
    width: 400px;
    z-index: 1;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap {
  overflow-y: auto;
  height: auto;
  max-height: 90dvh;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  width: 3px;
  background-color: #f5f5f5;
  cursor: pointer;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap::-webkit-scrollbar {
  width: 3px;
  background-color: #f5f5f5;
  min-height: 3px;
  max-height: 3px;
  height: 3px;
  cursor: pointer;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap::-webkit-scrollbar-thumb {
  min-height: 3px;
  max-height: 3px;
  height: 3px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #858585;
  cursor: pointer;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details {
  max-width: 1170px;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details::after {
  content: "";
  clear: both;
  display: table;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left {
  background-color: #222222;
  padding: 20px 30px;
  position: relative;
  z-index: 1;
  display: none;
}
@media (min-width: 1025px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left {
    max-width: 400px;
    float: left;
    display: block;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text {
  position: relative;
  padding-top: 25px;
}
@media (max-height: 700px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text {
    font-size: 14px;
    line-height: 24px;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/quote_image.svg);
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text p {
  font-size: 16px;
  line-height: 27px;
  color: #FFFFFF;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text .author_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text .author_data img {
  width: 50px;
  display: block;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text .author_data .data {
  max-width: calc(100% - 50px);
  flex: 0 0 calc(100% - 50px);
  padding-left: 11px;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text .author_data .data .title-18 {
  margin-bottom: 2px;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .testimonial_text .author_data .data .designation {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  display: block;
  margin-bottom: 0;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .client_logo {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-height: 760px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .client_logo {
    margin: 25px 0;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .client_logo .title-20 {
  margin-bottom: 15px;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .client_logo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .client_logo .logo img {
  width: 100%;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .alliances_logo .title-20 {
  margin-bottom: 15px;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .alliances_logo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .left .alliances_logo .logo img {
  max-height: 40px;
  width: auto;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right {
  padding: 20px 20px;
}
@media (min-width: 768px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right {
    padding: 20px 25px;
  }
}
@media (min-width: 1025px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right {
    padding: 22px 40px;
    max-width: calc(100% - 400px);
    float: right;
  }
}
@media (min-width: 1600px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right {
    padding: 25px 50px;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .header-spacing {
  margin-bottom: 0;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .header-spacing .title-24 {
  text-align: left;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-height: 760px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .header-spacing .title-24 {
    margin-bottom: 20px;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .wpcf7-form-control-wrap {
  margin-bottom: 15px;
}
@media (min-width: 1600px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .wpcf7-form-control-wrap {
    margin-bottom: 20px;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .wpcf7-form-control-wrap .select_wrapp .wpcf7-form-control-wrap {
  margin-bottom: 0;
}
@media (max-height: 700px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .wpcf7-form-control, .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form input, .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form select, .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form textarea {
    padding: 10px 20px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .wpcf7-form-control, .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form input, .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form select, .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form textarea {
    padding: 8px 15px;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right input[type="tel"].wpcf7-intl_tel {
  padding-left: 55px !important;
}
@media (max-height: 700px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .select_wrapp::after {
    top: 16px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .select_wrapp::after {
    top: 14px;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form select {
  padding-right: 40px !important;
}
@media (min-width: 0px) and (max-width: 767px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form select {
    padding-right: 40px !important;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input {
  padding-left: 76px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input {
    padding-left: 76px;
  }
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form {
  overflow: hidden;
  padding-right: 5px;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .wpcf7-form .btn_wrap {
  display: block;
  width: fit-content;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .wpcf7-form .btn_wrap .wpcf7-spinner {
  right: -30px;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .intl-tel-input .flag-container .selected-flag {
  color: #000000;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .right .form .intl-tel-input .flag-container .country-list .country {
  color: #000000;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .submit-text-section .submit-text {
  color: #212B36;
  text-align: left;
  font-size: 10px;
  line-height: normal;
  margin-top: 15px;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .submit-text-section .submit-text a {
  color: #FC7D2F;
  -o-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  text-decoration: underline;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .form_popup .formframeWrap .connect_details .submit-text-section .submit-text a:hover {
  -o-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #CF520B;
  text-decoration: none;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .close {
  right: -15px;
  top: -15px;
  width: 35px;
  height: 35px;
  box-shadow: 0px 0px 8px #b7b7b7;
}
.popup_modal.form_popup_modal_wrap .popup_wrapper .close::before, .popup_modal.form_popup_modal_wrap .popup_wrapper .close::after {
  left: 16px;
  height: 18px;
}
.popup_modal.form_popup_modal_wrap .wpcf7 form .wpcf7-response-output {
  margin: 10px;
  padding: 2px 5px;
  border-width: 1px;
  color: #000000;
  text-align: left;
  font-size: 14px;
  line-height: normal;
}
.wpcf7 form .wpcf7-response-output {
  margin: 10px;
  padding: 2px 5px;
  border-width: 1px;
  color: #000000;
  text-align: left;
  font-size: 14px;
  line-height: normal;
}
.video_icon {
  cursor: pointer;
}
.pag_not_found_section .header-spacing {
  text-align: center;
}
.pag_not_found_section .title-80 {
  margin-bottom: 0;
}
.pag_not_found_section .content_404 {
  text-align: center;
}
.pag_not_found_section .content_404 .error-image img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pag_not_found_section .content_404 .error-image img {
    max-width: 60%;
  }
}
.btn_wrap.margin-top.banner_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/*# sourceMappingURL=main.css.map */