@charset "utf-8";
/* CSS Document */

/*--------RESET-CSS--------*/
body {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  background: #fff;
  color: #000000;
  text-align: center;
  font-family: 'Figtree';
  font-weight: 400;
}
div,
ul,
h1,
h2,
h3,
h4,
h5,
li,
p,
img,
form,
input,
textarea {
  margin: 0;
  padding: 0;
}
header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
}
table,
tr,
td {
  border: 0;
}
a {
  outline: none;
  color: inherit;
  text-decoration: none;
}
img {
  border: none;
  height: auto;
}
li {
  list-style: none;
}
* {
  box-sizing: border-box;
}
.img-full {
  max-width: 100%;
}
.clearall {
  clear: both;
  font-size: 1px;
  line-height: 1px;
  height: 1px;
}
.wrapper {
  overflow: hidden;
}

/*--------fonts--------*/
/* @font-face {
  font-family: 'Figtree';
  src: url('Figtree-Regular.woff2') format('woff2'),
    url('Figtree-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('Figtree-Medium.woff2') format('woff2'),
    url('Figtree-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('Figtree-Bold.woff2') format('woff2'),
    url('Figtree-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
} */
@font-face {
  font-family: 'UniformCondensed';
  src: url('fonts/UniformCondensed.woff2') format('woff2'),
    url('fonts/UniformCondensed.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'UniformCondensed';
  src: url('fonts/UniformCondensed-Medium.woff2') format('woff2'),
    url('fonts/UniformCondensed-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'UniformCondensed';
  src: url('fonts/UniformCondensed-Bold.woff2') format('woff2'),
    url('fonts/UniformCondensed-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/*--------MAIN-CSS--------*/
.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/*--------Header--------*/
.header {
  float: left;
  width: 100%;
  height: 70px;
  /* -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1); */
}
.header__fixed {
  float: left;
  width: 100%;
  height: 75px;
  padding: 15px 0;
  margin-top: -75px;
  top: 75px;
  position: relative;
}
.fixed-nav .header__fixed {
  position: fixed;
  z-index: 11;
  -webkit-transition: margin 0.3s ease-out;
  transition: margin 0.3s ease-out;
  background: #fff;
  margin-top: 0;
  top: 0;
}
.header__logo {
  float: left;
  margin-top: 10px;
  width: 12%;
}
ul.header__menu {
  float: left;
  margin: 14px 0 0 50px;
}
ul.header__menu li {
  float: left;
  padding: 0 20px;
  position: relative;
}
ul.header__menu li a {
  color: #000000;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
ul.header__menu li a:hover,
ul.header__menu li a.active {
  color: #00bb29;
}
a.header__button {
  float: right;
  background: #0bc332;
  color: #fff;
  font-size: 18px;
  text-align: center;
  width: 145px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0.5px;
  display: none;
}
.fixed-nav .header__fixed a.header__button {
  display: block;
}

/*--------MENU-ICON-MOBILE--------*/
.menu-icon-mobile {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 18px;
  z-index: 16;
  height: 25px;
}
.menu-icon-mobile button {
  outline: none;
  -webkit-appearance: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border: none;
}
.menu-icon-mobile span {
  color: #000;
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  font-weight: 300;
  margin-top: 4px;
  margin-right: 5px;
}
.bar1,
.bar2,
.bar3 {
  width: 25px;
  height: 3px;
  background-color: #000;
  transition: 0.4s;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
.bar2 {
  margin: 4px 0;
}
.dl-active .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
  transform: rotate(-45deg) translate(-5px, 5px);
  background: #000;
}
.dl-active .bar2 {
  opacity: 0;
}
.dl-active .bar3 {
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
  transform: rotate(45deg) translate(-5px, -5px);
  background: #000;
}
.mobile-menu {
  left: 0;
  position: fixed;
  top: 70px;
  background: rgba(255, 255, 255, 1);
  z-index: 10;
  right: 0;
  bottom: 0;
  overflow: scroll;
  display: none;
  border-top: 1px solid #dddddd;
}
.mobimenu-top {
  top: 59px;
}
.mobile-menu li {
  float: left;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #dddddd;
}
.mobile-menu li a {
  float: left;
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #000;
  font-weight: 500;
}
.mobile-menu li a:hover {
  color: #000;
}

/*--------BANNER--------*/
.banner {
  float: left;
  width: 100%;
  padding: 0 0;
  position: relative;
  background: url(../../images/index-v1/banner-background.jpg) no-repeat center top;
  height: 834px;
}
.banner__left {
  float: left;
  width: 50%;
  padding: 20px 0 50px;
  text-align: left;
  position: relative;
}
.top_rate {
  font-size: 15px;
  line-height: 22px;
  color: #131313;
  text-align: left;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}
.top_rate img {
  display: inline-block;
  vertical-align: middle;
  margin: -5px 3px 0 0;
  width: 80px;
}
.banner__heading {
  float: left;
  width: 100%;
  font-family: 'UniformCondensed';
  color: #093261;
  font-size: 60px;
  line-height: 62px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.banner__heading span {
  color: #000000;
  font-size: 58px;
  font-weight: 500;
}
.banner__product_box {
  position: absolute;
  top: 30px;
  right: -385px;
  width: 407px;
}
.banner__product__inner {
  float: left;
  width: 100%;
  position: relative;
  background: url(../../images/index-v1/banner-prod-bg.png) no-repeat 50% 62%;
}
.banner__product {
  float: right;
  margin-right: 100px;
  max-width: 100%;
}
.banner__prod_list {
  position: absolute;
  top: 240px;
  left: 0;
  width: 200px;
}
.banner__prod_list li {
  float: left;
  width: 100%;
  margin-top: 30px;
}
.banner__prod_list li:first-child {
  margin-left: 30px;
}
.banner__prod_list li:last-child {
  margin-left: 20px;
}
.banner__prod_list li img {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #093261;
  background: #f0f5f9;
  margin-right: 6px;
}
.banner__prod_list li p {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-family: 'UniformCondensed';
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.banner__strip {
  float: left;
  width: 100%;
  margin-top: 40px;
  padding-left: 75px;
  position: relative;
  color: #000;
  font-size: 19px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.banner__strip img {
  position: absolute;
  top: -5px;
  left: 0;
}
.banner__points {
  float: left;
  width: 100%;
  margin-top: 25px;
}
.banner__points li {
  float: left;
  width: 100%;
  padding-left: 35px;
  margin-top: 10px;
  color: #000;
  font-family: 'UniformCondensed';
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.5px;
  font-weight: 500;
  background: url(../../images/index-v1/banner-points-check.png) no-repeat 0 6px;
}

.button_box {
  float: left;
  width: 100%;
  margin-top: 45px;
}
.button_width {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.button_caption {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.common_button {
  float: left;
  width: 100%;
  height: 70px;
  background: #0bc332;
  border-radius: 8px;
  color: #fff;
  font-size: 26px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.common_button img {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 10px;
}
.button_caption:before,
.button_caption:after {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 10px 0 0;
  width: 50px;
  height: 1px;
  background: #bcbcbc;
  content: '';
}
.button_caption:after {
  margin: -4px 0 0 10px;
}
.banner__left .button_box {
  margin-top: 30px;
}

/*--------DISCOUNT-STRIP--------*/
.discount_strip {
  float: left;
  width: 100%;
  padding: 10px 0;
  background: #23334d;
}
.discount__text {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.uppercase {
  text-transform: uppercase;
}
.yellow_text {
  color: #feed02;
}
.bold_text {
  font-weight: 700;
}

/*--------SECTION-1--------*/
.section1 {
  float: left;
  width: 100%;
  padding: 60px 0 20px;
  background: #fff;
}
.s1__row {
  float: left;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.s1__col_left {
  width: 31.5%;
  position: relative;
}
.s1__col_left:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 12px;
  width: 1000px;
  height: 250px;
  background: #093261;
}
.s1__left_img_box {
  float: left;
  width: calc(100% + 108px);
  margin-left: -108px;
  border: 1px solid #c6ebf5;
  padding: 10px 10px 0 0;
  position: relative;
}
.s1__left_img {
  float: right;
  width: calc(100% + 20px);
  margin: 0 0 -20px -20px;
  border-left: 10px solid #fff;
  border-bottom: 10px solid #fff;
}
.s1__bottom_text {
  float: right;
  color: #fff;
  text-align: right;
  margin: 40px 40px 0 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'UniformCondensed';
  position: relative;
}
.s1__col_right {
  width: 68.5%;
  padding: 10px 90px 0 45px;
  text-align: left;
  position: relative;
}
.common__sub_heading {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  font-family: 'UniformCondensed';
  color: #000;
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
}
.common__heading {
  float: left;
  width: 100%;
  font-family: 'UniformCondensed';
  color: #093261;
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
}
.common__text {
  float: left;
  width: 100%;
  margin-top: 25px;
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.s1__top_right_list {
  float: left;
  width: 100%;
  margin-top: 50px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
}
.s1__top_right_list li {
  width: 25%;
  position: relative;
}
.s1__top_right_list li:after {
  content: '';
  position: absolute;
  height: 60px;
  width: 1px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  background: #d0dce0;
}
.s1__top_right_list li:last-child:after {
  display: none;
}
.s1__top_right_list li span {
  float: left;
  width: 100%;
  color: #00b3e2;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.s1__top_right_list li p {
  float: left;
  width: 100%;
  color: #000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.s1__product2 {
  position: absolute;
  top: 80px;
  right: -60px;
}
.s1__down_arrow {
  position: absolute;
  bottom: -140px;
  right: 0;
}
.s1__bottom_img_box {
  float: left;
  width: 387px;
  margin: 75px 0 0 -57px;
}
.s1__bottom_img_box img {
  float: left;
  width: 100%;
}

/*--------SECTION-2--------*/
.section2 {
  float: left;
  width: 100%;
  padding: 60px 0;
  background: #fff;
}
.s2__row {
  float: left;
  width: 100%;
  margin-top: 40px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
}
.s2__col {
  position: relative;
}
.s2__col_top {
  width: 48.5%;
  text-align: left;
  padding: 25px 0 25px 30px;
}
.s2__col_head {
  float: left;
  width: 100%;
  color: #fff;
  font-family: 'UniformCondensed';
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.s2__col_head sup {
  font-size: 60%;
  line-height: 1;
}
.s2__col_text {
  float: left;
  width: 100%;
  padding-right: 280px;
  margin-top: 15px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.s2__col1 {
  background: #5eb7a5;
}
.s2__col1_img1 {
  float: left;
  margin: 45px 10px 10px 0;
}
.s2__col1_img1 img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.s2__col_deg {
  margin-top: 25px;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.s2__col_deg sup {
  font-size: 60%;
  line-height: 1;
}
.s2__col1_img3 {
  position: absolute;
  bottom: 20px;
  right: 10px;
}
.s2__col2 {
  background: #757dc8;
}
.s2__col2_img_box {
  float: left;
  margin-top: 20px;
}
.s2__col2_img_box img {
  display: inline-block;
  vertical-align: middle;
}
.s2__col2_img1 {
  margin-right: 20px;
}
.s2__col2_img3 {
  position: absolute;
  bottom: 20px;
  right: -50px;
}
.s2__col_bottom {
  width: 31.5%;
  background: #547682;
}
.s2__col_bottom img {
  float: left;
  width: 100%;
}
.s2__col4 {
  padding: 20px 25px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s2__col4_head {
  float: left;
  width: 100%;
  color: #fff;
  font-family: 'UniformCondensed';
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.s2__col4_head span {
  display: inline-block;
  vertical-align: middle;
  margin: 30px 0;
  color: #000;
  font-size: 40px;
  line-height: 46px;
  font-weight: 400;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
}
.s2__col4 .s2__col_text {
  padding-right: 0;
  margin-top: 20px;
}

/*--------SECTION-3--------*/
.section3 {
  float: left;
  width: 100%;
  padding: 60px 0;
  background: #f1f5fa;
}
.s3__row {
  float: left;
  width: 100%;
  margin-top: 30px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-between;
}
.s3__col_left {
  width: 57%;
  position: relative;
}
.s3__product1 {
  float: right;
  max-width: 100%;
}
.s3__prod_names {
  position: absolute;
  top: 5px;
  left: 0;
  width: 250px;
  text-align: left;
}
.s3__prod_names li {
  float: left;
  margin-top: 40px;
  padding: 5px 20px;
  border: 1px solid #5690d1;
  border-radius: 50px;
  color: #000;
  font-family: 'UniformCondensed';
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: #f8fbff;
}
.s3__col_right {
  width: 42%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.s3__col_text {
  width: 48%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #093261;
}
.s3__col_text img {
  float: left;
  width: 100%;
}
.section3 .common_button {
  font-size: 22px;
}

/*--------SECTION-4--------*/
.section4 {
  float: left;
  width: 100%;
  padding: 60px 0;
  background: #fff;
}
.s4__row {
  float: left;
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
}
.s4__col {
  width: 32%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
}
.s4__img_box {
  float: left;
  width: 100%;
  border: 4px solid #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.s4__img_box img {
  float: left;
  width: 100%;
}
.s4__img_box p {
  position: absolute;
  width: 190px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #3a82bc;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: 'UniformCondensed';
}
.s4__head {
  float: left;
  width: 100%;
  margin-top: 35px;
  color: #093261;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'UniformCondensed';
}
.s4__head span {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
}

/*--------SECTION-5--------*/
.section5 {
  float: left;
  width: 100%;
  padding: 60px 0;
  background: #e9f0f8;
}
.s5__top_row {
  float: left;
  width: 100%;
  margin-top: 30px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
}
.s5__top_col1 {
  width: 30%;
}
.s5__rating_list {
  float: left;
  width: 100%;
}
.s5__rating_list li {
  float: left;
  width: 100%;
  color: #000;
  font-family: 'UniformCondensed';
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.5px;
  font-weight: 400;
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px solid #e1e1e1;
}
.s5__rating_list li:last-child {
  border-bottom: none;
}
.s5__rating_list li span {
  float: right;
}
.s5__rating_list li span img {
  display: inline-block;
  vertical-align: middle;
  margin: -7px 10px 0 0;
  width: 80px;
}
.s5__top_col2 {
  width: 40%;
}
.s5__top_col2 p {
  float: left;
  width: 100%;
  color: #093261;
  font-family: 'UniformCondensed';
  font-size: 85px;
  line-height: 80px;
  font-weight: 500;
}
.s5__top_col2 img {
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  width: 140px;
}
.s5__top_col2 span {
  float: left;
  width: 100%;
  color: #000;
  font-family: 'UniformCondensed';
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 10px;
}
.s5__top_col3 {
  width: 30%;
}
.review_img-row {
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 5px;
}
.review_img-col {
  width: 24%;
  border: 1px solid #dddddd;
}
.review_img-col img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.reviews_box {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.reviews_box-row {
  float: left;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0 0;
  padding: 20px 20px;
  border: 1px solid #d7d7d7;
  background: #fff;
}
.reviews_box-row-left {
  width: 290px;
  padding: 0 20px 0 0;
  text-align: left;
  border-right: 1px solid #d7d7d7;
}
.reviews_name {
  float: left;
  width: 100%;
  padding: 10px 0 10px 90px;
  position: relative;
}
.testi-pics {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 60px;
  height: 60px;
  background: #093261;
  border-radius: 50%;
  color: #fff;
  font-family: 'UniformCondensed';
  font-size: 28px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
.t-name {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-family: 'UniformCondensed';
  font-weight: 400;
}
.t-vryfd {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #6db607;
  font-family: 'UniformCondensed';
  margin-top: 10px;
}
.t-vryfd img {
  display: inline-block;
  vertical-align: middle;
  margin: -6px 3px 0 0;
  width: 14px;
}
.reviewing_prod {
  float: left;
  width: 100%;
  position: relative;
  text-align: left;
  margin-top: 10px;
  padding: 30px 0 12px 90px;
  border-top: 1px solid #cccccc;
}
.test-prod-txt {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  font-family: 'UniformCondensed';
  font-weight: 400;
  letter-spacing: 0.5px;
}
.t-prod-dv {
  position: absolute;
  left: 10px;
  top: 20px;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  background: #f9f9f9;
  width: 60px;
  height: 60px;
  line-height: 35px;
  padding: 1px 1px;
  text-align: center;
  display: grid;
  place-items: center;
}
.t-prod-dv img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.recomend-text {
  float: left;
  width: 100%;
  margin: 20px 0 0 10px;
  font-size: 14px;
  line-height: 17px;
  color: #3d3d3d;
  font-family: 'UniformCondensed';
  letter-spacing: 0.5px;
}
.recomend-text img {
  display: inline-block;
  vertical-align: middle;
  margin: -5px 5px 0 0;
  width: 19px;
}

.reviews_box-row-right {
  width: calc(100% - 290px);
  padding: 15px 10px 15px 35px;
  text-align: left;
}
.reviews_box-row-right h4 {
  font-size: 20px;
  line-height: 28px;
  color: #000;
  font-family: 'UniformCondensed';
  font-weight: 700;
  letter-spacing: 0.5px;
}
.t-star {
  display: block;
  width: 90px;
  margin-top: 10px;
  max-width: 100%;
}
.testi-paragraph {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  font-family: 'UniformCondensed';
  letter-spacing: 0.5px;
  margin-top: 15px;
}
a.revw-btn {
  font-size: 20px;
  line-height: 28px;
  color: #28ab3b;
  font-family: 'UniformCondensed';
  font-weight: 700;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  text-decoration: underline;
  margin-top: 50px;
}

/*--------OFFER-SECTION--------*/
.offer_sec {
  float: left;
  width: 100%;
  padding: 70px 0;
  background: #fff;
}
.offer_box {
  width: 100%;
  border: 2px dashed #363636;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
}
.offer_box_left {
  float: left;
  width: 55%;
  padding: 45px 30px 45px;
  background: #fdf5e6;
  text-align: center;
}
.offer_heading {
  float: left;
  width: 100%;
  font-size: 50px;
  line-height: 50px;
  color: #000;
  font-family: 'UniformCondensed';
  font-weight: bold;
  letter-spacing: 0;
}
.offer_discount {
  float: left;
  width: 100%;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  font-weight: 500;
  margin-top: 10px;
}
.offer_box_timer {
  float: left;
  width: 100%;
  margin-top: 30px;
}
.offer_time_text {
  float: left;
  width: 100%;
  font-size: 30px;
  line-height: 36px;
  color: #004f9f;
  font-weight: bold;
}
ul.offer_box_list {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 390px;
  margin-top: 30px;
}
ul.offer_box_list li {
  float: left;
  width: 100%;
  font-size: 21px;
  line-height: 30px;
  color: #000;
  margin-top: 15px;
  background: url(../../images/index-v1/offer_tick.png) no-repeat left 3px;
  padding-left: 45px;
  text-align: left;
  letter-spacing: 0.5px;
}
ul.offer_box_list li.warn {
  color: #ff0000;
  background: url(../../images/index-v1/offer_warn.png) no-repeat left 3px;
  font-weight: 500;
}
.offer_box_right {
  float: right;
  width: 45%;
  position: relative;
  padding: 40px 30px;
}
.offer_prod {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  max-width: 100%;
}
.offer_seal {
  position: absolute;
  left: 50px;
  top: 50px;
  width: 125px;
}

/*--------ACCORDION--------*/
.section7 {
  float: left;
  width: 100%;
  padding: 60px 0;
  background: #e9f0f8;
}
.faq-container {
  display: inline-block;
  vertical-align: top;
  max-width: 830px;
  width: 100%;
  margin: 25px 0 0;
}
.up-slide-dwn {
  float: left;
  width: 100%;
  border-top: 1px solid #b3bcdf;
  cursor: pointer;
}
.up-slide-dwn:first-child {
  border-top: none;
}
.accordion {
  float: left;
  width: 100%;
  text-align: left;
  background: url(../../images/index-v1/close.png) no-repeat 98% center;
  padding: 20px 45px 20px 0;
  font-family: 'UniformCondensed';
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
  position: relative;
}
.accordion.last {
  border-bottom: none;
}
.acdn-heading.accordion-open {
  background: url(../../images/index-v1/open.png) no-repeat 98% center;
  border: none;
}
.acdn-content {
  float: left;
  width: 100%;
  text-align: left;
  padding: 0 0 20px 0;
}
.acdn-para {
  float: left;
  width: 100%;
  font-family: 'UniformCondensed';
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.5px;
}
.section7 .common_button {
  font-size: 22px;
}

/*--------FOOTER--------*/
.footer {
  float: left;
  width: 100%;
  background: #fff;
  padding: 40px 0;
}
.footer__logo {
  display: block;
  margin: 0 auto 10px;
  width: 200px;
}
.footer__text {
  float: left;
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
.footer__text a {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}

/*--------COMMON--------*/
.fl {
  float: left;
}
.fr {
  float: right;
}

.hide1200 {
  display: block;
}
.show1200 {
  display: none;
}
.showTab,
.showMob {
  display: none;
}
.showDesk {
  display: block;
}
.hideDesk {
  display: none;
}

/*--------Media-Querry--------*/

@media only screen and (max-width: 1200px) {
  .container {
    width: 1004px;
  }
  .hide1200 {
    display: none;
  }
  .show1200 {
    display: block;
  }

  ul.header__menu {
    margin-top: 20px;
  }
  a.header__button {
    margin-top: 10px;
  }
  .header {
    margin-bottom: 70px;
    height: 0px;
  }
  .header__fixed {
    height: 90px;
    padding: 12px 0;
    margin-top: -70px;
    top: 70px;
  }
  .header__logo {
    width: 150px;
    margin-top: 5px;
  }
  .banner__left {
    width: 52%;
    padding: 20px 0 50px;
  }
  .banner__heading {
    float: none;
  }
  .banner__points li {
    font-size: 22px;
  }
  .banner__product_box {
    top: 100px;
    width: 400px;
  }
  .banner__product__inner {
    background-position: 50% 50%;
  }
  .banner__product {
    width: 280px;
  }
  .banner__prod_list {
    top: 150px;
  }

  .section1 {
    padding: 50px 0 0;
  }
  .s1__left_img_box {
    width: 100%;
    margin-left: 0;
  }
  .s1__col_right {
    padding: 10px 80px 0 25px;
  }
  .common__sub_heading {
    font-size: 24px;
    line-height: 24px;
  }
  .common__heading {
    font-size: 46px;
    line-height: 52px;
  }
  .s1__top_right_list {
    margin-top: 25px;
  }
  .s1__bottom_img_box {
    margin: 25px 0 0 -37px;
  }
  .s1__product2 {
    top: 40px;
    right: -30px;
    width: 280px;
  }
  .s1__down_arrow {
    width: 100px;
  }

  .section2 {
    padding: 50px 0;
  }
  .s2__row {
    margin-top: 30px;
  }
  .s2__col_head {
    font-size: 32px;
  }
  .s2__col_text {
    padding-right: 210px;
  }
  .s2__col1_img1 {
    margin: 30px 20px 10px 0;
    width: 110px;
  }
  .s2__col1_img3 {
    width: 200px;
  }
  .s2__col2_img1 {
    margin-right: 15px;
    width: 90px;
  }
  .s2__col2_img2 {
    width: 120px;
  }
  .s2__col2_img3 {
    bottom: 30px;
    right: -20px;
    width: 230px;
  }
  .s2__col4_head {
    font-size: 28px;
    line-height: 32px;
  }
  .s2__col4 {
    padding: 25px 20px 10px;
  }
  .s2__col4_head span {
    margin: 15px 0;
    line-height: 40px;
    width: 40px;
    height: 40px;
  }

  .section3 {
    padding: 50px 0;
  }
  .s3__col_left {
    width: 62%;
  }
  .s3__product1 {
    width: 480px;
  }
  .s3__prod_names {
    top: 12px;
  }
  .s3__prod_names li {
    margin-top: 31px;
  }
  .s3__col_right {
    width: 36%;
  }
  .s3__col_text {
    width: 47%;
  }

  .section4 {
    padding: 50px 0;
  }
  .s4__head {
    margin-top: 30px;
    font-size: 32px;
    line-height: 42px;
  }

  .section5 {
    padding: 50px 0;
  }
  .s5__top_col1 {
    width: 34%;
  }
  .s5__top_col2 {
    width: 34%;
  }
  .s5__top_col3 {
    width: 32%;
  }
  .s5__top_col2 p {
    font-size: 75px;
    line-height: 65px;
  }
  .reviews_box {
    margin-top: 10px;
  }
  a.revw-btn {
    margin-top: 30px;
  }

  .offer_sec {
    padding: 60px 0;
  }

  .section7 {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 1180px) {
  .container {
    width: 100%;
    padding: 0 15px;
    /* max-width: 600px; */
    box-sizing: border-box;
  }

  .mob-banner__container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .banner__heading {
    font-size: clamp(20px, 6vw, 60px);
    /* line-height: 50px; */
    text-align: left;
    background-color: #dbf8fe;
    margin-left: -20px;
    padding-left: 20px;
  }
  .banner__heading span {
    font-size: 32px;
    line-height: 32px;
  }
  .banner__product_box {
    position: static;
    display: none;
    vertical-align: top;
    width: 300px;
    margin-top: 20px;
  }
  .banner__product__inner {
    background-position: 50% 30%;
  }
  .banner__product {
    width: 200px;
    margin-right: 70px;
  }
  .banner__prod_list {
    top: 55px;
    width: 180px;
    text-align: left;
  }
  .banner__prod_list li:first-child {
    margin-left: 20px;
  }
  .banner__strip {
    font-size: 16px;
    line-height: 24px;
    padding-left: 0;
    margin-top: 5px;
    text-align: left;
    padding: 0 15px;
  }
  .banner__strip img {
    width: 45px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
  }
  .banner__points {
    float: none;
    display: inline-block;
    vertical-align: top;
    max-width: 350px;
    text-align: left;
    margin-top: 12px;
  }
  .banner__points li {
    font-size: 18px;
    line-height: 24px;
    padding-left: 30px;
    background-size: 18px;
    margin-top: 8px;
    letter-spacing: 0.6px;
  }
  .banner > .container {
    padding: 0;
  }

  .banner > .container .banner__left-container {
    padding-left: 20px;
    background-color: #dbf8fe;
    padding-bottom: 30px;
  }

  .mob-banner {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% + 30px);
    max-width: 600px;
    margin-left: -15px;

    border-top: 1px solid #82d5ea;
  }

  .showDesk {
    display: none;
  }
  .showTab {
    display: block;
  }

  .header {
    margin-bottom: 60px;
  }
  .header__fixed {
    height: 70px;
    padding: 10px 0;
    margin-top: -60px;
    top: 60px;
    background: #fff;
  }
  .fixed-nav .header__fixed a.header__button {
    display: none;
  }
  .header__logo {
    width: 130px;
    margin-top: 14px;
  }
.mobile-menu {
    top: 158px;
}

.header.fixed-nav .mobile-menu {
        top: 69px;
    }

  .banner {
    height: auto;
    background-size: cover;
  }

  .banner {
    background-image: none;
  }
  .banner:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;

    content: '';

    height: 250px;
  }

  .banner__left {
    width: 60%;
    padding: 40px 0 40px;
  }
  .banner__strip {
    font-size: 17px;
    line-height: 24px;
    padding: 0 5%;
    margin-top: 30px;
  }
  .banner__strip img {
    width: 55px;
    top: -4px;
  }
  .banner__points {
    margin-top: 20px;
  }
  .banner__points li {
    font-size: 20px;
    padding-left: 32px;
    background-size: 20px;
    margin-top: 8px;
  }
  .button_box {
    margin-top: 25px;
  }
  .button_width {
    max-width: 360px;
  }
  .button_caption {
    font-size: 14px;
    line-height: 18px;
  }
  .common_button {
    height: 60px;
    font-size: 24px;
    line-height: 60px;
  }
  .banner__product_box {
    width: 260px;
    right: -250px;
    top: 120px;
  }
  .banner__product__inner {
    background-size: contain;
  }
  .banner__product {
    width: 230px;
    margin-right: 10px;
  }
  .banner__prod_list {
    top: 110px;
    left: -10px;
  }
  .banner__prod_list li:first-child {
    margin-left: 25px;
  }
  .banner__prod_list li:last-child {
    margin-left: 25px;
  }
  .banner__prod_list li img {
    width: 50px;
    height: 50px;
  }

  .discount_strip {
    padding: 5px 0;
  }

  .section1 {
    padding: 40px 0 0;
  }
  .s1__col_right {
    padding: 0px 80px 0 20px;
  }
  .common__sub_heading {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 5px;
  }
  .common__heading {
    font-size: 36px;
    line-height: 42px;
  }
  .common__text {
    margin-top: 20px;
    font-size: 17px;
    line-height: 24px;
  }
  .s1__top_right_list li span {
    font-size: 14px;
    line-height: 22px;
  }
  .s1__top_right_list li p {
    font-size: 18px;
  }
  .s1__top_right_list li:after {
    height: 45px;
    right: 15px;
  }
  .s1__product2 {
    top: auto;
    bottom: 0;
    right: 0px;
    width: 180px;
  }
  .s1__col_left:before {
    right: 11px;
    height: 280px;
  }
  .s1__bottom_img_box {
    margin: 30px 0 0 -31px;
  }
  .s1__bottom_text {
    margin: 65px 40px 15px 0;
    font-size: 18px;
  }
  .s1__down_arrow {
    width: 80px;
  }

  .section2 {
    padding: 40px 0;
  }
  .s2__row {
    row-gap: 20px;
  }
  .s2__col_top {
    padding: 20px 0 20px 25px;
  }
  .s2__col_head {
    font-size: 28px;
    line-height: 34px;
  }
  .s2__col_text {
    padding-right: 145px;
    font-size: 17px;
    line-height: 23px;
    margin-top: 10px;
  }
  .s2__col1_img1 {
    margin: 25px 15px 10px 0;
    width: 80px;
  }
  .s2__col_deg {
    margin-top: 15px;
    font-size: 14px;
    line-height: 14px;
  }
  .s2__col1_img3 {
    width: 145px;
  }
  .s2__col2_img1 {
    width: 70px;
  }
  .s2__col2_img2 {
    width: 90px;
  }
  .s2__col2_img3 {
    bottom: 20px;
    right: -15px;
    width: 170px;
  }
  .s2__col4 {
    padding: 15px 15px 10px;
  }
  .s2__col4_head {
    font-size: 20px;
    line-height: 26px;
  }
  .s2__col4_head span {
    margin: 20px 0;
    font-size: 32px;
    line-height: 30px;
    width: 30px;
    height: 30px;
  }
  .s2__col4 .s2__col_text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .s2__col_bottom img {
    object-fit: cover;
    height: 100%;
  }

  .section3 {
    padding: 40px 0;
  }
  .s3__row {
    margin-top: 25px;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
  .s3__col_left {
    width: 100%;
  }
  .s3__col_right {
    width: 100%;
    justify-content: space-around;
  }
  .s3__prod_names {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: -120px;
    top: 0;
    margin-top: 12px;
  }
  .s3__product1 {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
  .s3__col_text {
    width: 18%;
  }
  .section3 .common_button {
    font-size: 20px;
  }

  .section4 {
    padding: 40px 0;
  }
  .s4__row {
    margin-top: 20px;
  }
  .s4__img_box p {
    width: 160px;
    bottom: 15px;
    font-size: 18px;
  }
  .s4__head {
    margin-top: 30px;
    font-size: 30px;
    line-height: 38px;
  }

  .section5 {
    padding: 40px 0;
  }
  .s5__top_row {
    margin-top: 20px;
  }
  .s5__top_col1 {
    width: 36%;
  }
  .s5__top_col2 {
    width: 32%;
  }
  .s5__rating_list li {
    font-size: 16px;
    line-height: 18px;
    padding: 8px 0;
  }
  .s5__rating_list li span img {
    margin: -8px 5px 0 0;
    width: 70px;
  }
  .s5__top_col2 p {
    font-size: 60px;
    line-height: 60px;
  }
  .s5__top_col2 img {
    width: 120px;
  }
  .reviews_box-row {
    margin: 25px 0 0;
    padding: 15px 15px;
  }
  .reviews_box-row-left {
    width: 210px;
  }
  .reviews_box-row-right {
    width: calc(100% - 210px);
    padding: 15px 10px 15px 25px;
  }
  .reviews_name {
    padding: 10px 0 10px 70px;
  }
  .testi-pics {
    left: 5px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    top: 10px;
  }
  .reviewing_prod {
    padding: 20px 0 10px 70px;
  }
  .t-prod-dv {
    left: 5px;
    top: 16px;
    width: 50px;
    height: 50px;
  }
  .testi-paragraph {
    font-size: 17px;
    line-height: 25px;
    margin-top: 10px;
  }

  .offer_sec {
    padding: 45px 0;
  }
  .offer_box_left {
    width: 60%;
  }
  .offer_box_right {
    width: 40%;
  }
  .offer_box_left {
    padding: 30px 20px 35px;
  }
  .offer_heading {
    font-size: 40px;
    line-height: 40px;
  }
  .offer_discount {
    font-size: 17px;
    line-height: 23px;
  }
  ul.offer_box_list li {
    font-size: 20px;
    background-position: left 4px;
    padding-left: 40px;
  }
  .offer_prod {
    width: 200px;
  }
  .offer_seal {
    width: 110px;
  }

  .section7 {
    padding: 40px 0;
  }
  .faq-container {
    margin-top: 10px;
  }
  .accordion {
    padding: 15px 45px 15px 0;
    font-size: 20px;
  }
  .acdn-para {
    font-size: 17px;
    line-height: 25px;
  }
  .section7 .common_button {
    font-size: 20px;
  }

  .footer {
    padding: 30px 0;
  }

  .banner__left {
    width: 100%;
    padding: 10px 0 30px;
    text-align: center;
  }

  .banner__left-container {
    width: 100%;
    background: url(../../images/index-v1/banner-background.jpg) no-repeat center top;
    background-size: 100% 100%;
    background-position: right;
    /* height: 250px; */
    height: 420px;
  }
  .banner__left-container > div {
    background-color: #dbf8fe;
    width: 65%;
    margin-left: -20px;
    padding-left: 20px;
    padding-top: 50px;
    height: 420px;
  }
}

@media only screen and (max-width: 885px) {
  .s1__bottom_text {
    margin: 110px 40px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .showDesk {
    display: none;
  }
  .showMob {
    display: block;
  }
  .hideMob {
    display: none;
  }

  .header {
    margin-bottom: 50px;
    height: 0;
  }
  .header__fixed {
    margin-top: -50px;
    top: 50px;
  }
  .header__logo {
    margin-top: 10px;
    width: 140px;
  }
  .menu-icon-mobile {
    top: 13px;
  }
  .mobile-menu {
    top: 232px;
  }
  .mobimenu-top {
    top: 69px;
  }

  .top_rate {
    font-size: clamp(8px, 2.1vw, 13px);
    line-height: normal;
    margin-bottom: 0px;
  }
  .top_rate img {
    width: 65px;
    margin: -4px 2px 0 0;
  }

  .discount_strip {
    padding: 8px 0;
  }
  .discount__text {
    font-size: 14px;
    line-height: 22px;
  }

  .section1 {
    padding: 30px 0 10px;
  }
  .s1__col_left {
    display: none;
  }
  .s1__col_right {
    width: 100%;
    padding: 0;
  }
  .common__sub_heading {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  .common__heading {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0.5px;
  }
  .common__text {
    font-size: 16px;
    line-height: 24px;
  }
  .s1__img_box_mob {
    float: left;
    width: 100%;
    margin: 20px 0 20px;
    text-align: center;
  }
  .s1__left_img_box {
    float: none;
    display: inline-block;
    vertical-align: top;
    max-width: 300px;
  }
  .s1__bottom_text {
    margin: 20px 0 0;
    font-size: 17px;
    line-height: 25px;
    text-align: left;
    color: #000;
  }
  .s1__product2,
  .s1__down_arrow {
    display: none;
  }
  .s1__top_right_list {
    margin-top: 20px;
  }
  .s1__top_right_list li {
    width: 20%;
  }
  .s1__top_right_list li:after {
    height: 40px;
    right: -8px;
  }
  .s1__top_right_list li span {
    font-size: 11px;
    line-height: 17px;
  }
  .s1__top_right_list li p {
    font-size: 14px;
    line-height: 20px;
  }
  .s1__bottom_img_box {
    margin: 20px 0 0;
    width: 100%;
  }

  .section2 {
    padding: 30px 0;
  }
  .s2__row {
    row-gap: 15px;
    margin-top: 20px;
    justify-content: center;
  }
  .s2__col_top {
    width: 100%;
    max-width: 360px;
    padding: 20px 0 20px 20px;
  }
  .s2__col_bottom {
    width: 100%;
    max-width: 360px;
  }
  .s2__col4 {
    padding: 20px 15px 20px;
  }
  .s2__col_head {
    font-size: 24px;
    line-height: 28px;
  }
  .s2__col_text {
    padding-right: 125px;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
  }
  .s2__col1_img1 {
    margin: 20px 10px 0px 0;
    width: 75px;
  }
  .s2__col_deg {
    margin-top: 10px;
    font-size: 10px;
  }
  s2__col1_img3 {
    width: 140px;
  }
  .s2__col2_img3 {
    width: 140px;
    right: 5px;
  }
  .s2__col4_head {
    font-size: 24px;
    line-height: 28px;
  }
  .s2__col4 .s2__col_text {
    margin-top: 15px;
  }

  .section3 {
    padding: 30px 0;
  }
  .s3__prod_names {
    margin-right: -70px;
    margin-top: 10px;
    width: 180px;
  }
  .s3__prod_names li {
    margin-top: 8px;
    padding: 0px 10px;
    font-size: 13px;
    line-height: 20px;
  }
  .s3__product1 {
    width: 215px;
  }
  .s3__col_right {
    justify-content: space-between;
  }
  .s3__col_text {
    width: 24%;
    border-radius: 12px;
  }

  .section4 {
    padding: 30px 0;
  }
  .s4__row {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .s4__col {
    width: 48.5%;
  }
  .s4__col:last-child {
    flex-direction: row;
    width: 100%;
  }
  .s4__img_box {
    border-width: 2px;
  }
  .s4__col:last-child .s4__img_box {
    width: 48.5%;
  }
  .s4__img_box p {
    width: 120px;
    bottom: 10px;
    font-size: 14px;
    line-height: 22px;
  }
  .s4__head {
    margin-top: 25px;
    font-size: 24px;
    line-height: 28px;
  }
  .s4__head span {
    font-size: 18px;
    line-height: 26px;
  }

  .section5 {
    padding: 30px 0;
  }
  .s5__top_row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .s5__top_col1 {
    width: 100%;
    max-width: 360px;
    order: 2;
  }
  .s5__top_col2 {
    width: 100%;
    order: 1;
  }
  .s5__top_col3 {
    width: 100%;
    max-width: 360px;
    order: 3;
  }
  .s5__top_col2 p {
    font-size: 40px;
    line-height: 40px;
  }
  .s5__top_col2 img {
    width: 100px;
    margin-top: 5px;
  }
  .s5__top_col2 img {
    width: 100px;
  }
  .reviews_box {
    margin-top: 5px;
  }
  .reviews_box-row {
    margin: 20px 0 0;
    padding: 10px 15px;
  }
  .reviews_box-row-left {
    width: 100%;
    padding: 0 0 15px 0;
    border-right: none;
    border-bottom: 1px solid #d7d7d7;
  }
  .reviews_name {
    width: 47%;
    padding: 10px 0 10px 50px;
  }
  .testi-pics {
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }
  .t-name {
    font-size: 18px;
    line-height: 22px;
  }
  .t-vryfd {
    font-size: 12px;
    line-height: 12px;
    margin-top: 5px;
  }
  .t-vryfd img {
    width: 10px;
    margin: -4px 0px 0 0;
  }
  .reviewing_prod {
    padding: 10px 0 10px 70px;
    width: 53%;
    margin-top: 0px;
    border-top: none;
  }
  .t-prod-dv {
    left: 20px;
    top: 10px;
    width: 40px;
    height: 45px;
  }
  .test-prod-txt {
    font-size: 12px;
  }
  .recomend-text {
    margin: 10px 0 0 0;
    font-size: 13px;
  }
  .recomend-text img {
    width: 16px;
  }
  .reviews_box-row-right {
    width: 100%;
    padding: 15px 0 10px;
  }
  .t-star {
    width: 80px;
  }
  .reviews_box-row-right h4 {
    font-size: 18px;
    line-height: 26px;
  }
  .testi-paragraph {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
  }
  a.revw-btn {
    margin-top: 15px;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.5px;
  }

  .offer_sec {
    padding: 30px 0;
  }
  .offer_box_left {
    width: 100%;
    padding: 25px 15px;
  }
  .offer_box_right {
    display: none;
  }
  .offer_heading {
    font-size: 28px;
    line-height: 30px;
  }
  .offer_discount {
    font-size: 16px;
    line-height: 22px;
  }
  .offer_prod_mob {
    float: left;
    width: 100%;
    position: relative;
    margin-top: 20px;
  }
  .offer_prod {
    width: 140px;
  }
  .offer_seal {
    width: 80px;
    left: 30%;
    top: 30px;
  }
  ul.offer_box_list {
    margin-top: 0;
  }
  ul.offer_box_list li {
    font-size: 17px;
    background-position: left 2px;
    padding-left: 30px;
    background-size: 22px;
    line-height: 25px;
    margin-top: 10px;
  }
  ul.offer_box_list li.warn {
    background-posiiton: left 2px;
    background-size: 22px;
  }

  .section7 {
    padding: 30px 0;
  }
  .accordion {
    font-size: 18px;
    line-height: 24px;
  }
  .acdn-para {
    font-size: 16px;
    line-height: 24px;
  }

  .footer {
    padding: 0 0 20px;
  }
  .footer__logo {
    margin: 20px auto 10px;
    width: 150px;
  }
  .footer__text {
    font-size: 14px;
    line-height: 18px;
  }
  .footer__text a {
    padding: 0 3px;
  }

  #ctabtn-mob {
    background: #23334d;
    padding: 10px 10px;
    position: fixed;
    bottom: 0%;
    left: auto;
    z-index: 99;
    transition: bottom 1s;
    display: table;
    width: 100%;
  }
  #ctabtn-mob .commonBtn {
    font-size: 26px;
    height: 62px;
    line-height: 62px;
    margin-top: 0;
  }
  #ctabtn-mob .commonBtn .btn-arrw {
    margin: -5px 0 0 20px;
  }

  .banner__heading {
    font-size: 35px;
    line-height: 45px;
  }

  .banner__left-container,
  .banner__left-container > div {
    height: 250px;
  }
}

@media only screen and (max-width: 650px) {
  .banner__left-container > div {
    /* width: 70%; */
  }
}
@media only screen and (max-width: 590px) {
  .top_rate {
    display: flex;
    flex-direction: column;
    height: 20px;
  }

  .banner__heading {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 540px) {
  .banner__heading {
    line-height: 40px;
  }

  .banner__left-container > div {
    width: 65%;
  }
}

@media only screen and (max-width: 500px) {
  .banner__heading {
    font-size: 25px;
    line-height: 35px;
  }

  .banner__left-container,
  .banner__left-container > div {
    height: 200px;
  }
}

@media only screen and (max-width: 442px) {
  .banner__heading {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 440px) {
    .mobile-menu {
        top: 232px;
    }
}

@media only screen and (max-width: 400px) {
  .banner__left-container > div {
    width: 60%;
  }

  .banner__heading {
    line-height: 30px;
  }
}

@media only screen and (max-width: 364px) {
  .banner__points li {
    font-size: 17px;
  }

  .banner__left-container > div {
    width: 65%;
  }
}

/*--------PULSE--------*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
  }
}
