@import "poppins.css";

/* --------------------------------

Primary style

-------------------------------- */
:root {
  --height-menu-bar: 90px;
  --text-icon: #ffffff;
  --text-purple: #7175B5;
  --text-gray-dark: #333333;
  --text-button-blue: #152f4d;
  --text-button-secondary: #15304D;
  --text-title: #15304D;
  --text-subtitle: #6d6e71;
  --text-section-subtitle: #666666;
  --text-section-info: #828282;
  --text-button-secondary-hover: rgba(59, 134, 220, 0.02);
  --input-shadow: 2px 2px 15px -2px #000000;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Poppins', sans-serif;
}

*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::after, *::before {
  content: '';
}

body {
  font-size: 100%;
  font-family: 'Poppins', sans-serif;
  color: #878cb0;
  background-color: #ffffff;
}
body.pricing {
  background-color: #eceff1;
}

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

img {
  max-width: 100%;
}

h1, h2 {
  color: var(--text-button-secondary);
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.cd-main-content.cd-main-content-footer {
  min-height: 10px;
  height: auto;
  background: #eceff1;
}
.footer {
  text-align: center;
}
.footer a {
  color: #666666;
}
.footer ul {
  height: inherit;
  list-style: none;
  display: inline-block;
  margin: 10px auto 5px auto;
  padding: 0;
}
.footer ul li {
  height: inherit;
  float: left;
  display: inline-block;
}
.footer ul li img {
  height: 40px;
  margin-right: 10px;
}
.footer span {
  font-size: 14px;
  display: block;
  line-height: 20px;
  color: #666666;
}
.flex {
  display: flex !important;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.w-full {
  width: 100%;
}
.item-right {
  justify-content: end;
}
.item-left {
  justify-content: start;
}
.input-group {
  display: inline-flex;
  margin-top: 25px;
}
.input-group input {
  border: none;
  padding: 4px;
}

.input-group .input-group-addon {
  display: inline-block;
  background: #ffffff;
  margin: 0;
  padding: 10px 20px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.input-group .input-group-addon img {
  vertical-align: -29%;
}
.input-group .input-button-addon {
  display: inline-block;
  margin: 0;
}
.input-group .input-button-addon button {
  border: none;
  height: 100%;
  background: #37d1bb;
  color: #ffffff;
  padding: 15px 25px;
  font-size: 12px;
  font-weight: bold;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  min-width: 143px;
}
.block {
  display: block;
}
.menu-main {
  display: inline-block;
  float: right;
  padding: 20px;
}
.menu-main ul li {
  display: inline-block;
  float: left;
  margin-left: 40px;
}
.menu-main li .link-menu {
  font-weight: bold;
  vertical-align: -120%;
  color: #828282 !important;
  font-size: 14px;
  letter-spacing: 2px;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.btn {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #696f9b;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 1), 0 1px 0 rgba(255, 255, 255, 1);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.no-touch .btn:hover {
  background-color: #787ea5;
}
.no-touch .btn.btn-outline:hover {
  background-color: var(--text-button-secondary-hover);
}
.btn.salmon {
  background-color: #f58780;
}
.no-touch .btn.salmon:hover {
  background-color: #f79d98;
}
.wrap-center {
  display: table !important;
  height: 100%;
}
.wrap-center .wrap-inner-center {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
/* -------------------------------- 

Main components 

-------------------------------- */
html, body {
  /* important for .cd-main-content 100% height to work */
  height: 100%;
}

.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 80px;
  /*background-color: #2b2d40;*/
  background-color: transparent;
  overflow: visible;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
}
.cd-header #cd-logo img {
  display: block;
  height: 80px;
}
.cd-header #cd-action {
  display: inline-block;
  float: right;
  margin: 17px 10px 0 0;
}
.cd-header .btn {
  padding: 0 2em;
}
.cd-header.slide-down {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: 0.4s all;
}
.clearfix {
  clear: both;
}
.cd-single-item .cd-caption #cd-action {
  text-align: right;
}
.product-item {
  background-color: #ffffff;
  border-radius: 10px;
  max-width: 280px;
  margin: 0 auto;
  min-height: 446px;
  max-height: 446px;
}
.product-item .product-item-icon-container {
  text-align: center;
}
.product-item .product-item-icon {
  height: 80px;
  margin-top: 34px;
}
.product-item .product-item-title {
  color: #e63c66;
  font-size: 25px;
  font-weight: bold;
  padding-top: 25px;
  text-align: center;
}
.product-item .product-item-sub-title {
  color: #343050;
  font-size: 22px;
  padding-top: 25px;
  text-align: center;
  font-weight: bold;
}
.product-item .product-item-features {
  padding: 10px;
  color: #333333;
  font-size: 13px;
  text-align: center;
}
.product-item .product-item-features.product-item-features-odd {
  background-color: #e5f6f5;
}
.product-item .product-item-features-container {
  margin-top: 20px;
}
.product-item .product-item-buy-container {
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
}
.product-item .product-item-buy {
  background-color: #e63c66;
  margin: 0 auto !important;
  display: inline-block;
  border: none;
  padding: 8px 20px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 5px;
}
.product-item .product-item-buy:active, .product-item .product-item-buy:hover {
  background-color: #37d1bb;
}
.cd-main-content {
  overflow: hidden;
  max-width: 1440px;
  min-height: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  padding-top: var(--height-menu-bar);
}
.cd-main-content .cd-caption {
  width: 50%;
}
.cd-main-content .cd-image-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-main-content .cd-caption {
  display: flex;
  flex-direction: column;
  padding: 106px 0 40px 60px;
}
.cd-main-content .cd-image-container img {
  width: auto;
  max-height: calc(700px - var(--height-menu-bar));
}
.section_wave {
  height: auto !important;
  min-height: 94px !important;
  background-color: #100b51;
}
.section_wave img {
  display: block;
}
.section_home_2 {
  background: #100b51 !important;
}
.cd-product-intro {
  padding: 50px 5%;
  text-align: center;
}
.cd-product-intro h1 {
  margin-bottom: 10px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.2;
}
.cd-product-intro p {
  padding: 0 0 20px;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
.cd-product-intro .cd-triggers:after {
  content: "";
  display: table;
  clear: both;
}
.cd-product-intro .btn {
  width: 120px;
  height: 40px;
  line-height: 40px;
  margin-right: 8px;
}
#cd-product-tour {
  position: relative;
}
.cd-single-item {
  /* product tour - single list item */
  padding: 86px 5% 120px;
  width: 100%;
  text-align: center;
  border-top: 1px solid #494e6e;
}
.cd-single-item h2 {
  margin-bottom: 15px;
  font-size: 1.375rem;
}
.cd-single-item p {
  padding: 10px 0 50px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.cd-image-container {
  margin: 0 auto;
}
.cd-image-container > div {
  position: relative;
}
.cd-image-container img {
  display: block;
}
.cd-image-container video {
  display: none;
}
.cd-phone-frame {
  /* Phone in CSS */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  top: -45px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-color: #2f3246;
  border-style: solid;
  border-width: 45px 10px;
  border-radius: 2.5em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-phone-frame::after, .cd-phone-frame::before {
  /*these are the iPhone circle elements*/
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #202331;
  border-radius: 50%;
}
.cd-phone-frame::before {
  height: 11px;
  width: 11px;
  top: -28px;
}
.cd-phone-frame::after {
  height: 31px;
  width: 31px;
  bottom: -38px;
}

.cd-image-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cd-slider-nav {
  /* product discover slider navigation */
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 80px;
}
.cd-slider-nav:after {
  content: "";
  display: table;
  clear: both;
}
.cd-slider-nav a {
  position: relative;
  display: block;
  height: 100%;
  width: 50%;
  float: left;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  background: #353850;
}
.no-touch .cd-slider-nav a:hover {
  background: #2f3246;
}
.cd-slider-nav a::before {
  /*this is the bacgrounf arrow - we have been used a before element to change the opacity on hover*/
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 24px;
  height: 16px;
  opacity: .2;
  background: url(../img/cd-arrow.svg) no-repeat center center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.no-touch .cd-slider-nav a:hover::before {
  opacity: 1;
}
.cd-slider-nav .cd-next {
  border-left: 1px solid #3f435f;
}
.cd-slider-nav .cd-next::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.cd-loader {
  /*top loading bar*/
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: #f58780;
  display: none;
}

.upper {
  text-transform: uppercase;
}
.btn-demo{
  height: 45px;
  line-height: 45px;
  padding: 0 3em;
  background: linear-gradient(to right, #15304d, #255580);
  border-radius: 20px;
  width: 100%;
  max-width: 227px;
}
.btn-watch-video {
  height: 45px;
  line-height: 45px;
  padding: 0 2em;
  background: #ffffff;
  color: var(--text-button-secondary);
  border-radius: 20px;
  width: 100%;
  max-width: 227px;
}
.btn-watch-video img {
  width: 28px;
  height: 28px;
}
.menuImg {
  width: 50px;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}
.menuImg span {
  background-color: #828282;
  height: 5px;
  margin: 10px 0;
  border-radius: 20px;
}
.menuImg span:first-child, .menuImg span:last-child {
  margin: 0;
}
.title {
  font-size: 3.2rem;
  margin-bottom: 27px;
  font-weight: 600;
  color: var(--text-title);
}
.sections .title {
  font-size: 2rem;
  color: var(--text-purple);
  margin-bottom: 10px;
}
.sub-title {
  color: var(--text-subtitle);
  font-size: 1.76rem;
  line-height: 43px;
  margin-bottom: 50px;
  font-weight: 400;
}
.sections .sub-title {
  color: var(--text-section-subtitle);
  margin-bottom: 10px;
}
.sections .info {
  color: var(--text-section-info);
  line-height: 24px;
  font-weight: 100;
  font-size: 1rem;
}
.background_pink {
  max-width: none;
  background: #ffff;
  padding: unset;
}
.gradient {
  background: linear-gradient(to right, rgba(195, 18, 120, 0.75) , rgba(210, 87, 120, 0.83));
  max-width: 100%;
}
.sections {
  display: flex;
  flex-direction: row;
}
.sections.reverse {
  flex-direction: row-reverse;
  background: #f6f7fc;
}
.sections .section {
  width: 50%;
}
.section_2 {
  font-size: 0;
  line-height: 0;
}
.sections .wrap-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sections .wrap-image {
  text-align: center;
}
.section-icons {
  background: #152f4d;
  padding: 20px 80px;
}
.section-icons .title {
  text-align: center;
  color: #ffffff;
}
.section-icons .wrap-container .section {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  width: 100%;
  justify-content: center;
}
.section-icons .wrap-container .section .wrap-content {
  width: 100%;
  max-width: 600px;
  color: var(--text-icon);
  padding-left: 40px;
  font-size: 1.5rem;
}
.section-create-account {
  padding: 40px;
  background: #eeeef8;
}
.section-create-account .title {
  color: var(--text-purple);
  text-align: center;
  margin-bottom: 10px;
}
.section-create-account .sub-title {
  color: var(--text-purple);
  margin-bottom: 0;
  text-align: center;
  font-size: 1.5rem;
}
.section-40 {
  font-size: 0;
  padding: 0;
  margin: 0;
  line-height: 0;
}
.section-40 img {
  background: #ebf2ff;
}
.section-40 .background-responsive {
  display: none;
}
.section-subscribe {
  background: url("../img/new-design-2022/bg_subscribe.png") #ebf2ff no-repeat center;
  background-size: cover;
  height: 536px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-subscribe .subscribe-form {
  margin-bottom: 15px;
}
.section-subscribe .subscribe-form .input-group {
  margin: 0 auto;

}
.section-subscribe .title {
  color: var(--text-gray-dark);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.section-subscribe .sub-title {
  color: var(--text-gray-dark);
  font-size: 1rem;
  margin-bottom: 10px;
}
.subscribe-form-input {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:   var(--input-shadow);
  -moz-box-shadow: var(--input-shadow);
}
.subscribe-form-input input, .subscribe-form-input input:focus-visible, .subscribe-form-input input:focus {
  padding: 15px 50px;
  border: none;
  outline: none;
  width: 100%;
}
.subscribe-form-input .icon{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.subscribe-form button {
  margin-left: 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #ffffff;
  padding: 0 30px;
  font-weight: bold;
  color: var(--text-button-blue);
  box-shadow:   var(--input-shadow);
  -moz-box-shadow: var(--input-shadow);
}
.section_home_2, .section_home_3, .section_home_4, .section_home_5, .section_home_6 {
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  max-width: 100%;
}
.section_home_3 {
  background-image: url(../img/update-desing/bg_section_3.png);
}
.section_home_4 {
  background-color: #ffffff;
}
.section_home_4 .container2 {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.section_home_4 .container2 .cd-caption {
  padding-left: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 50%;
}
.section_home_4 .container2 .cd-image-container {
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
  width: 50%;
}
.section_home_5 {
  background-color: #343050;
}
.section_home_5 .container2 {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.section_home_5 .container2 .cd-caption {
  padding-left: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 50%;
}
.section_home_5 .container2 .cd-image-container {
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
  width: 50%;
}
.section_home_6 {
  background-color: #eceff1;
}
.section_home_6 .container2 {
  display: flex;
  flex-direction: row;
  height: auto;
}
.section_home_6 .container2 .product-item-container {
  width: 33.3333%;
}
.section_home_2 .text1, .section_home_3 .text1 {
  color: #00235a;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  width: 80%;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 29px;
}
.section_home_3 .text1 {
  color: #ffffff;
  width: 100%;
  font-weight: bold;
  font-size: 1.500rem;
}
.section_home_2 .btn_section_2, .section_home_3 .btn_section_2 {
  background: #00235a;
  height: 45px;
  line-height: 45px;
  padding: 0 3em;
  border-radius: 11px;
}
.section_home_2 .containerBtn, .section_home_3 .containerBtn {
  display: flex;
  align-items: flex-end;
  height: 500px;
  position: relative;
  top: 170px;
}
.section_home_2 .container2, .section_home_3 .container2 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.section_home_2 .titleText, .section_home_3 .titleText {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 50%;
}
.section_home_2 .titleText {
  flex-direction: column;
}
.section_home_2 .titleText .text1 {
  text-align: left;
  color: #ffffff;
  font-size: 1.300rem;
  display: block !important;
}
.section_home_2 .titleText .text1:first-child {
  margin-bottom: 20px;
}
.ticketImg {
  width: 226px;
}
.section_home_4 .cd-caption .wrap-caption {
  display: table;
}
.section_home_4 .cd-caption .wrap-inner-caption {
  display: table-cell;
  vertical-align: middle;
}
.section_home_4 .cd-caption .upper {
  color: #333333;
  font-size: 1.55rem;
  line-height: 42px;
  font-weight: 400;
}
.section_home_4 .cd-caption .wrap-caption {
  border-left: 1px solid #333333;
  padding-left: 20px;
  height: 80%;
}
.section_home_5 .cd-caption .wrap-caption {
  display: table;
  float: right;
  margin-right: 50px;
}
.section_home_5 .cd-caption .wrap-inner-caption {
  display: table-cell;
  vertical-align: middle;
}
.section_home_5 .cd-caption .upper {
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 42px;
  font-weight: 400;
  text-align: right;
}
.section_home_5 .cd-caption .wrap-caption {
  border-right: 1px solid #ffffff;
  padding-right: 20px;
  height: 80%;
}
.section_home_6 .titleText {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section_home_6 .footerText {
  padding-top: 40px;
  padding-bottom: 20px;
}
.section_home_6 .titleText .text1, .section_home_6 .footerText .text1, .section_home_6 .footerText .text-info {
  color: #333333;
  font-size: 21px;
  align-items: center;
  width: 100%;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 29px;
  letter-spacing: 2px;
}
.section_home_6 .footerText .text1 {
  text-transform: none;
  font-weight: 500;
}
.section_home_6 .footerText .text-info {
  text-transform: none;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.6px;
}
.section_home_7 {
  /*height: auto !important;
  position: relative;
  background: transparent;
  background-size: contain;*/
  padding: 0 !important;
  max-width: 100% !important;
  /*max-height: 595px !important;*/
}

.section_home_7 .background, .section_home_7 .background-responsive {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #eceff1;
  z-index: -1;
  display: block;
  /*-webkit-box-shadow: -2px 9px 28px -4px rgba(0,0,0,0.75);
  -moz-box-shadow: -2px 9px 28px -4px rgba(0,0,0,0.75);
  box-shadow: -2px 9px 28px -4px rgba(0,0,0,0.75);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;*/
}
.section_home_7 .background-responsive {
  display: none;
}

.section_home_7 .container2 {
  padding: 5em 0;
  display: block;
  text-align: center;
}
.section_home_7 .container2 h1 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section_home_7 .container2 p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 300;
}

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
  float: right;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-left: -95px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
.dropdownActive {
  height: 245px;
}
.dropdownNormal {
  height: 80px;
}
.modal-form-container {
  position: absolute;
  background-color: #000000aa;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 1000000;
}
.modal-form-container .wrap-center {
  width: 100%;
}
.modal-form {
  width: 300px;
  margin: 0 auto;
}

.cd-header.slide-down.down {
  background-color: rgba(255, 255, 255, 0.91);
}
.text-section-2 {
  color: #00ffff;
}
.img-responsive {
  max-width: 100%;
}
.horizontal-center {
  justify-content: center;
}
.vertical-align {
  align-items: center;
}
.ml-1 {
  margin-left: 5px;
}
.mr-1 {
  margin-right: 5px;
}
.mr-2 {
  margin-right: 10px;
}
.ml-2 {
  margin-left: 10px;
}
.font-weight-bold {
    font-weight: bold;
}
.zero-padding .swal2-content {
  padding: 0 !important;
}
.zero-padding, .zero-padding .swal2-content {
  background: transparent !important;
}
@media only screen and (min-width: 480px) {
  .cd-product-intro {
    padding: 50px 10%;
  }
  .cd-single-item {
    padding: 104px 10% 120px;
    display: flex;
    flex-direction: column-reverse;
  }
  .cd-single-item .cd-caption #cd-action {
    text-align: center;
  }
}

@media only screen and (min-width: 874px) {
  .cd-product-intro {
    padding: 50px 15%;
  }
  .cd-single-item {
    padding: 50px 15% 120px;
  }
  .cd-single-item:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-single-item .cd-caption {
    width: 50%;
    float: right;
    margin-top: 180px;
  }
  .cd-single-item:nth-child(2n) .cd-caption {
    float: right;
  }
  .cd-single-item:nth-child(2n) .cd-image-container {
    float: left;
  }
  .cd-main-content.section_home_2, .cd-main-content.section_home_3 {
    padding: 20px !important;
  }
  .section_home_7 {
    /*height: 250px !important;*/
  }
  .section_home_7 .container2 {
    padding: 3em 0;
  }
  .section_home_5 .cd-caption .upper {
    font-size: 1rem !important;
  }
}

@media only screen and (min-width: 1070px) {
  .cd-header {
    height: 90px;
    background-color: transparent;
  }
  .cd-header #cd-logo {
    font-size: 1.75rem;
    margin: 5px 0 0 1%;
  }

  .cd-header #cd-logo img {
    width: auto !important;
    height: 80px;
  }
  .cd-header #cd-action {
    margin: 20px 1% 0 0;
  }
  .cd-main-content {
    position: relative;
    /*height: 100%;*/
    margin-top: 0;
  }
  .cd-main-content.section_home_2 {
    min-height: 440px;
    max-height: 440px;
    padding: 20px !important;
  }
  .cd-main-content.section_home_3 {
    min-height: 530px;
    max-height: 530px;
    padding: 65px !important;
  }
  .cd-main-content.section_home_4 {
    min-height: 500px;
    max-height: 500px;
    padding: 0 !important;
  }
  .cd-main-content.section_home_5 {
    min-height: 500px;
    max-height: 500px;
    padding: 0 !important;
  }
  .cd-main-content.section_home_6 {
    min-height: 673px;
    max-height: 673px;
    padding: 0;
  }
  .wrap-section_home_6 {
    margin-top: var(--height-menu-bar);
  }
  .cd-main-content.background_pink {
    min-height: 700px;
  }
  .btn {
    font-size: 0.875rem;
    letter-spacing: 2px;
  }
  .cd-product-intro {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10%;
    width: 50%;
    padding: 0;
    text-align: left;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s 0s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
  }
  .is-product-tour .cd-product-intro {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
  .cd-product-intro h1 {
    font-size: 3.125rem;
  }
  .cd-product-intro p {
    font-size: 1rem;
    padding: 10px 0 44px;
    margin: 0;
  }
  .cd-product-intro .btn {
    margin-right: 15px;
    width: 190px;
    height: 60px;
    line-height: 60px;
  }
  #cd-product-tour {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 500px;
    top: 50%;
    left: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateY(-50%) translateX(75%);
    -moz-transform: translateY(-50%) translateX(75%);
    -ms-transform: translateY(-50%) translateX(75%);
    -o-transform: translateY(-50%) translateX(75%);
    transform: translateY(-50%) translateX(75%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .is-product-tour #cd-product-tour {
    -webkit-transform: translateY(-50%) translateX(0);
    -moz-transform: translateY(-50%) translateX(0);
    -ms-transform: translateY(-50%) translateX(0);
    -o-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
  }
  #cd-product-tour > ul {
    height: 100%;
    width: 100%;
  }
  .cd-single-item {
    position: absolute;
    top: 60%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    text-align: left;
    border-top: none;
    padding: 0 !important;
    visibility: visible;
    display: flex;
    flex-direction: row-reverse;
  }
  .cd-single-item.cd-not-visible {
    /*need to create a specific class to change visibility value due to a Firefox bug*/
    /*CSS transition/animation fails when parent element changes visibility attribute*/
    visibility: hidden;
  }
  .cd-single-item h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
  }
  .cd-single-item p {
    font-size: 1rem;
    line-height: 1.5;
    display: block;
    text-align: center;
  }
  .cd-single-item .cd-caption {
    width: 60%;
    float: right;
    margin: 80px 0 0 0;
    opacity: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s 0s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
  }
  .is-product-tour .cd-single-item.cd-active .cd-caption {
    opacity: 1;
    padding-right: 25px;
  }
  .cd-single-item.cd-move-right .cd-caption {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  .cd-image-container {
  }
  .cd-image-container > div {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
  }
  .cd-image-container video {
    /*not inserted in html - will be loaded through jQuery*/
    display: block;
    position: absolute;
    width: 402px;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  }
  .cd-move-right .cd-image-container img {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .cd-move-right .cd-image-container video {
    -webkit-transform: translateX(50%) translateY(-50%) rotate(-90deg);
    -moz-transform: translateX(50%) translateY(-50%) rotate(-90deg);
    -ms-transform: translateX(50%) translateY(-50%) rotate(-90deg);
    -o-transform: translateX(50%) translateY(-50%) rotate(-90deg);
    transform: translateX(50%) translateY(-50%) rotate(-90deg);
  }
  .section_home_2 .cd-image-container {
    margin-top: 27px;
    width: 80vw;
  }
  .section_home_3 .cd-image-container {
    margin-top: 27px;
    width: 50vw;
  }
  .section_home_4 .cd-image-container {
    margin-top: 0;
    width: auto;
    float: none;
  }
  .section_home_4 .cd-image-container img {
    max-width: 80%;
    display: inline-block;
  }
  .section_home_5 .cd-image-container {
    margin-top: 0;
    width: auto;
    float: none;
  }
  .section_home_5 .cd-image-container img {
    max-width: 80%;
    display: inline-block;
  }
  .cd-slider-nav {
    display: block;
  }
  .cd-slider-nav a {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, background 0.2s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, background 0.2s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, background 0.2s;
  }
  .is-product-tour .cd-slider-nav a {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, background 0.2s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s, background 0.2s;
    transition: opacity 0.3s 0s, visibility 0s 0s, background 0.2s;
  }
  .is-product-tour .cd-slider-nav a.cd-inactive {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, background 0.2s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, background 0.2s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, background 0.2s;
  }
  .cd-header .btn {
    vertical-align: -33% !important;
  }
  .section_home_5 .cd-caption .upper {
    font-size: 1.375rem !important;
  }
}

@media only screen and (min-width: 1070px) and (max-width: 1200px) {
  .cd-image-container {
    height: 620px;
    width: 68%;
    float: left;
    max-width: 100%;
    padding-top: 0;
  }
  .cd-main-content.section_home_2, .cd-main-content.section_home_3 {
    padding: 20px !important;
  }
  .section_home_7 .background {
    border-bottom-left-radius: 51px !important;
    border-bottom-right-radius: 51px !important;
  }
}

@media only screen and (min-width: 1201px) {
  .section_home_7 .background {
    /*border-bottom-left-radius: 55px !important;
    border-bottom-right-radius: 55px !important;*/
  }
  .cd-main-content.section_home_7 {
    /*min-height: 314px !important;*/
  }
}

@media only screen and (min-width: 1268px) {
  .section_home_7 .background {
    /*border-bottom-left-radius: 61px !important;
    border-bottom-right-radius: 61px !important;*/
  }
  .cd-main-content.section_home_7 {
    /*min-height: 340px !important;*/
  }
}

@media only screen and (min-width: 1384px) {
  .section_home_7 .background {
    /*border-bottom-left-radius: 67px !important;
    border-bottom-right-radius: 67px !important;*/
  }
  .cd-main-content.section_home_7 {
    /*min-height: 380px !important;*/
  }
}

@media only screen and (max-width: 874px) {
  .section_home_2 .container2 {
    flex-direction: column;
  }
  .section_home_2 .text1 {
    text-align: center !important;
    width: 90% !important;
    margin: 0 auto;
  }
  .section_home_3 .container2 {
    flex-direction: column-reverse;
  }
  .section_home_2 .titleText, .section_home_3 .titleText {
    width: 100%;
  }
  .section_home_6 .container2 {
    flex-direction: column;
  }
  .section_home_6 .container2 .product-item-container {
    width: 100%;
    margin-bottom: 5px;
  }
  .product-item {
    max-width: 50%;
  }
  .section_home_4 .container2 {
    flex-direction: column;
  }
  .section_home_4 .container2 .cd-caption {
    width: 100%;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .section_home_5 .container2 {
    flex-direction: column-reverse;
  }
  .section_home_5 .container2 .cd-caption {
    width: 100%;
    padding: 80px 0 !important;
  }
  .section_home_5 .cd-caption .wrap-caption {
    margin: 0 auto;
  }
  .section_home_7 .container2 {
    padding: 2.5em 0 !important;
  }
  .cd-main-content.section_home_2, .cd-main-content.section_home_3 {
    padding: 20px !important;
  }
  .menuImg {
    width: 40px;
  }
  .menu-main {
    padding: 17px 6px 0 0;
  }
}

@media only screen and (max-width: 815px) {
  .cd-main-content.section_home_7 {
    height: 219px !important;
  }
  .section_home_7 .container2 {
    padding: 1em 0 !important;
  }
  .link-menu-3 {
    display: none !important;
  }
}

@media only screen and (max-width: 756px) {
  .section_home_7 .background {
    display: none;
  }
  .section_home_7 .background-responsive {
    display: block;
    height: 205px;
    width: 100%;
    border-bottom-left-radius: 54px;
    border-bottom-right-radius: 54px;
  }
  .section_home_7 .container2 {
    padding: 3em 0 !important;
  }
  .cd-main-content.section_home_7 {
    padding-bottom: 45px;
    height: 245px !important;
  }
  .link-menu-3 {
    display: none !important;
  }
}

@media only screen and (max-width: 504px) {
  .menu-main {
    padding-left: 0;
  }
  .menu-main ul li {
    margin-left: 0;
  }
  .link-menu-2 {
    display: none !important;
  }
}

@media only screen and (max-width: 479px) {
  .section_home_2 .text1, .section_home_3 .text1 {
    font-size: 15px;
    text-align: center;
  }
  .section_home_2 .titleText, .section_home_3 .titleText {
    position: relative;
    top: 10px;
  }
  .section_home_2 .containerBtn, .section_home_3 .containerBtn {
    display: flex;
    align-items: flex-end;
    height: 500px;
    position: relative;
    bottom: 16px;
    top: unset;
  }
  .ticketImg {
    width: 125px;
  }
  .section_home_7 .container2 {
    padding:1.5em 0 !important;
  }
  .input-group {
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .input-group .input-group-addon {
    padding: 5px 8px;
  }
  .input-group .input-group-addon img {
    vertical-align: -5%;
  }
  .input-group .input-button-addon button {
    padding: 5px 10px;
    font-size: 0.5rem;
    width: auto;
    min-width: 0;
  }
  .product-item {
    max-width: 100%;
    width: 90%;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 297px) {
  .menu-main {
    display: none;
  }
}

@media only screen and (max-width: 1248px) {
  .section-subscribe {
    height: auto;
  }
}
@media only screen and (max-width: 1053px) {
  .sm\:flex-col {
    flex-direction: column;
  }
  .sm\:horizontal-center {
    justify-content: center;
    align-items: center;
  }
  .sm\:mb-5 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .sections {
    flex-direction: column !important;
  }
  .sections.reverse {
    flex-direction: column !important;
  }
  .sections .section {
    width: 100% !important;
  }
  .section-icons {
    padding: 20px 40px;
  }
  .section-subscribe {
    padding-top: 40px;
  }
  .title {
    font-size: 2rem !important;
    text-align: center;
  }
  .sub-title {
    font-size: 1rem !important;
    line-height: 30px;
    text-align: center;
  }
  .info {
    text-align: center;
  }
  .section-icons .wrap-container .section .wrap-content {
    font-size: 1.3rem !important;
  }
  .cd-main-content {
    flex-direction: column !important;
    min-height: 200px;
  }
  .cd-main-content .cd-caption {
    padding: 40px !important;
  }
  .cd-main-content .cd-caption, .cd-main-content .cd-image-container {
    width: 100%;
  }
  .cd-main-content .cd-image-container {
    height: 350px;
  }
}

@media only screen and (max-width: 700px) {
  .es .link-menu-2 {
    display: none !important;
  }
}
@media only screen and (max-width: 680px) {
  .section-subscribe {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 633px) {
  .link-menu-2 {
    display: none !important;
  }
}

@media only screen and (max-width: 568px) {
  .xs\:flex-col {
    flex-direction: column;
  }
  .xs\:horizontal-center {
    justify-content: center;
    align-items: center;
  }
  .xs\:mb-5 {
    margin-bottom: 10px;
  }
  .xs\:w-full {
    max-width: 100%;
  }
  .cd-header #cd-logo {
    margin-top: 8px;
    margin-left: 4px;
  }
  .cd-header #cd-logo img {
    height: 60px;
  }
  .subscribe-form button {
    height: 40px;
    width: 100% !important;
    margin-left: 0;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 440px) {
  .cd-header #cd-logo {
    margin-top: 22px;
  }
  .cd-header #cd-logo img {
    height: 35px;
  }
  .section-icons .wrap-icon img {
    width: 60px;
  }
}