@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@font-face {
  font-family: 'Myriad Pro Regular';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Regular"), url("../fonts/MYRIADPRO-REGULAR.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Condensed';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Condensed"), url("../fonts/MYRIADPRO-COND.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Condensed Italic';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Condensed Italic"), url("../fonts/MYRIADPRO-CONDIT.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Light';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Light"), url("../fonts/MyriadPro-Light.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Semibold';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Semibold"), url("../fonts/MYRIADPRO-SEMIBOLD.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Semibold Italic';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Semibold Italic"), url("../fonts/MYRIADPRO-SEMIBOLDIT.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Bold Condensed';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Bold Condensed"), url("../fonts/MYRIADPRO-BOLDCOND.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Bold';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Bold"), url("../fonts/MYRIADPRO-BOLD.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Bold Italic';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Bold Italic"), url("../fonts/MYRIADPRO-BOLDIT.woff") format("woff");
}

@font-face {
  font-family: 'Myriad Pro Bold Condensed Italic';
  font-style: normal;
  font-weight: normal;
  src: local("../fonts/Myriad Pro Bold Condensed Italic"), url("../fonts/MYRIADPRO-BOLDCONDIT.woff") format("woff");
}
.font-regular { font-family: 'Myriad Pro Regular', Arial, sans-serif; }
.font-semibold { font-family: 'Myriad Pro Semibold', Arial, sans-serif; }
.font-bold { font-family: 'Myriad Pro Bold', Arial, sans-serif; }

.loader {
    -webkit-backdrop-filter: saturate(100%) blur(5px);
    backdrop-filter: saturate(100%) blur(5px);
    user-select: none;
}
.loader.active{
    visibility: hidden;
    opacity: 0;
    transition: 350ms;
}
.loader:before{
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 22px);
    left: calc(50% - 22px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid red;
    border-right: 3px solid transparent;
    animation: loader 1.25s linear infinite;
}
@keyframes loader{
    to{ transform: rotate(360deg); }
}

*,*:before,*:after{
  box-sizing: border-box;
}
html ,body{
  font-family: 'Myriad Pro Regular';
  font-weight: normal;
  font-size: 16px;
  color: #000;
  overflow-x: hidden;
  background: #fefefe;
  margin: 0;
  padding: 0;
}
.icon {
  stroke: unset;
  stroke-width: 0px;
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: 0em;
  transform-origin: center;
}
.l{box-shadow: inset 0 0 0 1px red}
.b{box-shadow: inset 0 0 0 1px blue}

main{
  display: block;
  position: relative;
  width: 100%;
  max-width: 768px;
  padding: 0;
  margin: 0 auto;
}
header {
  width: 100%;
  height: 58px;
  margin: 0;
  padding: 0;
  color: #fff;
  background: #e72525;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
header .nav-back{
  position: absolute;
  width: 46px;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #fff;
}
header span {
  font-family: 'Myriad Pro Semibold', Arial, sans-serif;
  font-size: 22px;
  text-transform: capitalize;
}
.nav-menu{
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 100%;
}
.nav-dots {
  position: absolute;
  width: 40px;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  right: 0;
  top: 0;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  opacity: 0.65
}
.nav-menu.active .nav-dots {
  opacity: 1;
  background: rgba(0,0,0,0.1);
}
.nav-dropdown {
  position: absolute;
  min-width: 160px;
  top: 58px;
  right: 0px;
  padding: 10px 0;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 10px 15px rgba(0,0,0,0.20);
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: 350ms;
}
.nav-menu.active .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.nav-dropdown a{
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: 350ms;
}
.nav-dropdown a:hover{
  background: #ddd;
}
.nav-dropdown .icon{
  margin-right: 12px;
}
.welcome-row {
  background: #e72525;
  color: #fff;
  padding: 6px 15px 12px 15px;
  margin: 0;
  width: 100%;
}
.welcome-row h1 {
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  margin: 0;
  font-size: 31px;
  line-height: 1.20;
  text-transform: capitalize;
}
.welcome-row h1 span{
  display: block;
}
.welcome-row p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  padding: 10px 0;
}

.tabs-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 1px;
  border-bottom: 1px solid #d8d8d8;
}
.tabs-box a{
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 50%;
  padding-top: 2px;
  height: 46px;
  color: #999999;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 1;
  position: relative;
  text-decoration: none;
}
.tabs-box a.active {
  color: #e72525; 
}
.tabs-box a.active:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #e72525;
  left: 0;
  bottom: -1px;
}

/*---*/
.card-wrapper {
  position: relative;
  width: 100%;
}
.card-box {
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
}
.card-wrapper .card-box:last-child {
  border-bottom: none;
}
.heading-2 {
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  margin: 0;
}
.heading-3 {
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  font-size: 22px;
  margin: 0;
}
.heading-19 {
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  font-size: 19px;
  margin: 0;
}
.heading-20 {
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  font-size: 20px;
  margin: 0;
}
.heading-24 {
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  font-size: 24px;
  margin: 0;
}
.heading-26 {
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  font-size: 26px;
  margin: 0;
}
.proelit-price{
  font-size: 32px;
}
.proelit-price small{
  font-size: 55%;
  color: #999;
}
.input-coupon {
  width: 70%;
  height: 40px;
  background: #EDEDED;
  border: 0;
  box-shadow: 0 0 0 1px #ccc;
  padding: 1px 15px 0 15px;
  outline: none;
  font-size: 16px;
  transition: 300ms;
}
.input-coupon:focus {
  background: #fff;
  box-shadow: 0 0 0 1px #999;
}
.common-line {
  margin: 10px 0;
  border: 0;
  width: 100%;
  float: none;
  clear: both;
  height: 1px;
  border-bottom: 1px solid #eee;
}


.radio-design {
  cursor: pointer;
  font-weight: normal;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px 8px 0;
}
.radio-circle{
  padding-left: 30px;
}
.radio-circle:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: calc(50% - 9px);
  left: 0px;
  border: 1px solid #e72525;
  background: #ffffff;
}
.radio-circle:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  left: 4px;
  background: #e72525;
  border-radius: 50%;
  transform: scale(0);
  transition: 300ms;
}
.radio-design input {position: absolute; left: 0; opacity: 0;}
.radio-design input:checked ~ .radio-circle:after {
  transform: scale(1);
}

.btn-confirm {
  font-family: 'Myriad Pro Semibold', Arial, sans-serif;
  font-size: 21px;
  display: block;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #e72525;
  color: #fff;
  border-radius: 5px;
  padding: 12px 5px;
  transition: 350ms;
  border: 0px;
}


.thankyou-box h1 {
  font-family: 'Myriad Pro Bold', Arial, sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: #e72525;
  margin: 0;
  padding-top: 25px;
  display: block;
  text-align: center;
}
.thankyou-box h1 span {
  font-family: 'Myriad Pro Regular', Arial, sans-serif;
  display: block;
  color: #000;
  font-weight: normal;
  font-size: 50%;
}
.thankyou-imgbox {
  width: 100%;
  max-width: 460px;
  margin: 20px auto;
  position: relative;
}
.thankyou-imgbox img {
  max-width: 100%;
}
.thankyou-flying{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 60%;
    max-height: 60%;
    animation: flying 10s linear infinite;
}
@keyframes flying{
    0%,100% {transform: translate(-80%,-30%);}
    50% {transform: translate(-30%,-80%);}
}

.plan-box {
    background: #eee;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}
.plan-wavebg{
    background: url('../images/wave.svg');
    background-repeat: no-repeat;
    background-position: -30px -30px;
    background-size: 130%;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 30px;
}
.plan-wavebg h3{
    font-family: 'Myriad Pro Semibold', Arial, sans-serif;
    font-size: 30px;
    color: #e72525;
    margin: 0;
}
.plan-wavebg img{
    width: 100%;
    max-width: 180px;
    display: inline-block;
}
.plan-price{
    text-align: center;
    padding: 0 0 30px 0;
}
.plan-price h3{
    font-family: 'Bebas Neue', cursive, Arial, sans-serif;
    position: relative;
    font-size: 80px;
    line-height: 1;
    margin: 0;
    display: inline-block;
    padding-left: 20px;
    margin-left: 30px;
}
.plan-price h3 span{
    font-family: 'Myriad Pro Regular', Arial, sans-serif;
    font-size: 46%;
    left: 0;
    top: 5px;
    color: #bababa;
    font-weight: 100;
    position: absolute;
}
.plan-price h3 small{
    font-family: 'Myriad Pro Regular', Arial, sans-serif;
    font-size: 34%;
    color: #bababa;
    font-weight: 100;
}
.plan-price p{
    font-size: 17px;
    margin: 0;
    padding: 0 0 10px 0;
}
.plan-price a{
    font-family: 'Myriad Pro Bold', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: #e72525;
    border-color: #e72525;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    box-shadow: 0px 4px 10px #efcdcc;
    padding: 1px 16px 0 16px;
    border-radius: 10px;
    min-width: 180px;
    height: 50px;
}
.plan-feature{
    font-family: 'Myriad Pro Semibold', Arial, sans-serif;
    display: flex;
    width: 100%;
    text-align: left;
    flex-flow: wrap;
    padding: 10px 10px 20px 10px;
    font-size: 17px;
    color: #e72525;
}
.plan-feature span{
    flex: 0 0 50%;
    padding: 5px;
}


/*Start | Tabs - Collapse*/
.tabbing-wrapper{
    background: #eee;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}
.tabbing-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.tabbing-list>*{
    font-family: 'Myriad Pro Bold', Arial, sans-serif;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    cursor: pointer;
    font-size: 20px;
    position: relative;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px;
}
.tabbing-menu:before{
    content: '';
    position: absolute;
    bottom: -2px;
    left: calc(50% - 20px);
    width: 40px;
    height: 4px;
    transition: 350ms;
}
.tabbing-menu.active:before{
    background: #e72525;
    bottom: 4px;
}
.tabbing-content{padding: 5px 15px 30px 15px;}
.tabbing-target, .collaps-target{display: none;}
.tabbing-target.active{display: block;}
.whypro-img, .benefit-img {
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    text-align: center;
}
.whypro-img img, .benefit-img img{
    max-width: 220px;
    max-height: 100%;
}
.collaps-menu{
    margin-bottom: 2px;
    padding: 7px 20px 10px 0;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #ddd;
}
.collaps-menu:after{
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid #e72525;
    border-right: 1px solid #e72525;
    position: absolute;
    right: 5px;
    top: calc(50% - 6px);
    transform: rotate(45deg);
    transition: 350ms;
}
.collaps-menu.active:after{
    transform: rotate(135deg);
}
.collaps-menu.active, .collaps-target{
    border-bottom: 1px solid transparent;
}
.collaps-target{
    padding-bottom: 15px;
}
.collaps-target[style="display: block;"]{
    border-bottom: 1px solid #ddd;
}
/*End | Tabs - Collapse*/

.testimonial-slides{
    background: #ffffff;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 15px;
    text-align: center;
    transition: 0.5s ease-in-out;
    transform: scale(0.96);
}
.slick-center .testimonial-slides{
    border: 1px solid #e72525;
    background: #e72525;
    color: #fff;
    transform: scale(1);
}

.testimonial-slides p{
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}
.testimonial-slides hr{
    width: 100%;
    display: block;
    margin-top: 10px;
    border: none;
    border-bottom: 1px solid #eee;
}
.testimonial-avtar {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding-top: 10px;
}
.testimonial-avtar img{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 15px;
}
.testimonial-avtar h4{
    font-family: 'Myriad Pro Bold', Arial, sans-serif;
    font-size: 20px;
    margin: 0 0 5px 0;
    text-align: left;
}
.testimonial-avtar span{
    font-size: 14px;
}

/*Star Rating by R*/
.stars-rating {
    display: inline-block;
    color: #ccc;
    height: 30px;
    font-family: Arial;
    vertical-align: top;
    position: relative;
}
.stars-rating:before {
    content:'\2605\2605\2605\2605\2605';
    font-family: Arial;
    height: 30px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0px;
    position: relative;
}
.stars-rating span {
    display: block;overflow: hidden;
    position: absolute;
    height: 30px;
    left: 0;
    top: 0;
    z-index: 2;
}
.stars-rating span:before {
    content:'\2605\2605\2605\2605\2605';
    position: relative;
    color: #F6862B;
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    display: block;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0px;
    font-family: Arial;
}
/*end*/




/*Start | Message Design*/
.message-box {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 768px;
    height: auto;
    padding: 20px 15px;
    border-radius: 20px 20px 0 0;
    background: #fff;
    text-align: center;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: 350ms;
    margin: 0 auto;
}
.message-box.active {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}
.error-message {
    background: #F96F6F;
    color: #fff;
}
.success-message{
    background: #8CC152;
    color: #000;
}
.warning-message {
    background: #F9D737;
    color: #000;
}
.confirm-message {
  background: #F9D737;
  color: #000;
}
.message-icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    font-size: 46px;
}
.btn-common{
    font-family: 'Myriad Pro Semibold', Arial, sans-serif;
    font-size: 17px;
    display: flex;
    height: 44px;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(255,255,255,0.6);
    border: none;
    outline: none;
    color: #e72525;
    border-radius: 5px;
    transition: 350ms;
}
/*End | Message Design*/



footer{
    text-align: center;
    margin: 30px 0 5px 0;
    padding: 0px;
    width: 100%;
}

footer img {
  max-width: 100%;
  display: inline-block;
}

/*Start | Custom Pre-Defined Classes*/
a {
  text-decoration: none;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-decoration: none;
  outline: 0 solid transparent;
  -webkit-box-shadow: none;
   box-shadow: none;
}
a:hover, a:focus {
  text-decoration: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
input[type='number'] {-moz-appearance: textfield;}
.line-height-1{line-height: 1}
.line-height-1p25{line-height: 1.25}
.line-height-1p35{line-height: 1.35}
.line-height-1p4{line-height: 1.4}
.line-height-1p5{line-height: 1.5}
.py-0 {padding-top: 0px; padding-bottom: 0px; }
.py-2 {padding-top: 2px; padding-bottom: 2px; }
.py-3 {padding-top: 3px; padding-bottom: 3px; }
.py-4 {padding-top: 4px; padding-bottom: 4px; }
.py-5 {padding-top: 5px; padding-bottom: 5px; }
.py-10 {padding-top: 10px; padding-bottom: 10px; }
.py-15 {padding-top: 15px; padding-bottom: 15px; }
.py-20 {padding-top: 20px; padding-bottom: 20px; }
.py-25 {padding-top: 25px; padding-bottom: 25px; }
.pt-5 {padding-top: 5px;}
.pt-10 {padding-top: 10px;}
.pt-15 {padding-top: 15px;}
.pt-20 {padding-top: 20px;}
.pt-25 {padding-top: 25px;}
.pb-5 {padding-bottom: 5px;}
.pb-10 {padding-bottom: 10px;}
.pb-15 {padding-bottom: 15px;}
.pb-20 {padding-bottom: 20px;}
.pb-25 {padding-bottom: 25px;}
.my-0{margin-top: 0px; margin-bottom: 0px}
.my-5{margin-top: 5px; margin-bottom: 5px}
.my-10{margin-top: 10px; margin-bottom: 10px}
.my-15{margin-top: 15px; margin-bottom: 15px}
.my-20{margin-top: 20px; margin-bottom: 20px}
.my-25{margin-top: 25px; margin-bottom: 25px}
.mt-0{margin-top: 0px}
.mt-5{margin-top: 5px}
.mt-6{margin-top: 6px}
.mt-8{margin-top: 8px}
.mt-10{margin-top: 10px}
.mt-15{margin-top: 15px}
.mt-20{margin-top: 20px}
.mt-25{margin-top: 25px}
.mb-0{margin-bottom: 0px}
.mb-5{margin-bottom: 5px}
.mb-10{margin-bottom: 10px}
.mb-15{margin-bottom: 15px}
.mb-20{margin-bottom: 20px}
.mb-25{margin-bottom: 25px}
.font-10{font-size: 10px;} .font-11{font-size: 11px;}
.font-12{font-size: 12px;} .font-13{font-size: 13px;}
.font-14{font-size: 14px;} .font-15{font-size: 15px;}
.font-16{font-size: 16px;} .font-17{font-size: 17px;}
.font-18{font-size: 18px;} .font-19{font-size: 19px;}
.font-20{font-size: 20px;} .font-21{font-size: 21px;}
.text-theme{color: #e72525}
.text-gray{color: #999999}
.w-100 { width: 100%; }
.w-50 { width: 50%; }
.d-flex { display: flex;}
.flex-wrap { flex-wrap: wrap;}
.flex-nowrap { flex-wrap: nowrap;}
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.hidden{opacity: 0;}
.d-none{display: none;}
.border-bottom-0{border-bottom: 0!important}
/*End | Custom Pre-Defined Classes*/