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

@font-face {
  font-family: opensans;
  src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
  font-family: opensans-semibold;
  src: url(../fonts/OpenSans-SemiBold.ttf);
}

@font-face {
  font-family: opensans-bold;
  src: url(../fonts/OpenSans-Bold.ttf);
}

@font-face {
  font-family: robotoslab;
  src: url(../fonts/RobotoSlab-Regular.ttf);
}

@font-face {
  font-family: robotoslab-bold;
  src: url(../fonts/RobotoSlab-Bold.ttf);
}

:root {
  --primary-color: #ff0000;
  --secondary-color: #ffe552;
  --tertiary-color: #fff;
  --fourth-color: #000;
}

::selection {
  background: var(--secondary-color);
  color: var(--fourth-color);
}

a,
button,
input[type="submit"] {
  transition: all 0.5s;
  text-decoration: none;
  font-family: opensans-semibold;
  font-size: 15px;
}

h1 {
  font-family: robotoslab-bold;
  font-size: 48px;
  margin: 0;
}

h2 {
  font-family: robotoslab-bold;
  font-size: 36px;
  margin: 0;
  color: #333;
}

h3,
h4,
h5,
h6 {
  font-family: robotoslab-bold;
  margin: 0;
}

p,
li,
input,
select,
textarea {
  color: var(--fourth-color);
  font-family: opensans;
  font-size: 18px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
}

.header {
  width: 100%;
}

.top-bar {
  width: 100%;
  padding: 10px 0;
  background: var(--fourth-color);
}

.top-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left {
  width: 50%;
  text-align: left;
}

.top-left p {
  color: var(--tertiary-color);
  font-size: 15px;
  margin: 0;
}

.top-left a {
  color: var(--primary-color);
}

.top-left a:hover {
  color: var(--secondary-color);
}

.top-right {
  width: 50%;
  text-align: right;
}

.top-right p {
  color: var(--tertiary-color);
  font-size: 15px;
  margin: 0;
}

.nav-bar {
  width: 100%;
  padding: 10px 0;
  background: var(--primary-color);
}

.nav-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 20%;
}

.logo img {
  width: 100%;
}

.menu-btn {
  text-align: right;
  width: 50%;
}

.menu-btn a {
  display: inline-block;
  padding: 10px 30px;
  color: var(--fourth-color);
  background: var(--secondary-color);
  border-radius: 20px;
}

.menu-btn a:hover {
  background: var(--fourth-color);
  color: var(--secondary-color);
}

.toggle {
  display: none;
}

.sticky {
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  animation: slidetop 1s linear;
  z-index: 9999;
  background: var(--primary-color);
}

@keyframes slidetop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

.sticky .top-bar {
  display: none;
}

.sticky .logo {
  width: 15%;
}

.banner {
  width: 100%;
  height: 550px;
  position: relative;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cont {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  padding: 3% 0 0 0;
}

.banner-cont .row {
  align-items: center;
}

.banner-text {
  width: 100%;
}

.banner-text h1 {
  color: var(--tertiary-color);
}

.banner-image {
  width: 100%;
  height: 430px;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* banner ends */

.about-box {
  width: 100%;
  padding: 60px 0;
  background-image: url(../images/benefit-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.about-box p {
  margin: 20px auto 0 auto;
  width: 55%;
}

.about-box h3 {
  color: var(--primary-color);
  margin: 30px 0 0 0;
}

.about-box span {
  font-family: opensans-bold;
}

.benefit-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 60px 0;
}

.benefit-wrap {
  width: 32%;
  position: relative;
}

.benefit-image {
  width: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -26%;
}

.benefit-image img {
  width: 100%;
}

.benefit {
  width: 100%;
  background: var(--fourth-color);
  position: relative;
  padding: 15px 30px;
  border-radius: 100px;
  box-shadow: 5px 5px #cfcece;
  margin: 0 0 60px 0;
}

.benefit:last-child {
  margin: 0;
}

.benefit p {
  color: var(--tertiary-color);
  margin: 0px 0 0 0;
  width: 100%;
  font-size: 16px;
  text-align: left;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon-cont {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  color: var(--tertiary-color);
  font-size: 30px;
  font-family: opensans-bold;
  background: var(--primary-color);
}

.benefit-wrap-two {
  padding: 5px 0 5px 0;
  position: relative;
}

.benefit-wrap-two .benefit-image {
  left: -26%;
  transform: rotateY(180deg) translateY(-50%);
  top: 50%;
  width: 70px;
}

.benefit-wrap-two p {
  padding: 0 0 0 20px;
}

.benefit-two {
  position: relative;
}

.benefit-two .benefit-icon {
  left: -40px;
}

.benefit-center {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  border: 3px solid var(--fourth-color);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f7f7;
  position: relative;
  z-index: 1;
}

.benefit-center-cont {
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background: var(--primary-color);
  display: grid;
  place-items: center;
  place-content: center;
}

.benefit-center-icon {
  width: 25px;
  margin: 0 auto;
}

.benefit-center-icon img {
  width: 100%;
}

.benefit-center-text {
  width: 100%;
  text-align: center;
}

.benefit-center-text p {
  width: 100%;
  margin: 0;
  color: var(--tertiary-color);
  font-family: opensans-semibold;
  font-size: 22px;
}

.about-box a {
  display: inline-block;
  padding: 10px 30px;
  color: var(--fourth-color);
  background: var(--secondary-color);
  border-radius: 20px;
}

.about-box a:hover {
  background: var(--fourth-color);
  color: var(--secondary-color);
}

.gallery-box {
  width: 100%;
  padding: 60px 0;
  background: var(--fourth-color);
  text-align: center;
}

.gallery-box h2 {
  color: var(--tertiary-color);
  font-family: robotoslab;
}

.gallery-slider {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gallery-card {
  padding: 0 20px 0 0;
}

.gallery {
  width: 100%;
  height: 300px;
  overflow: hidden;
  transition: all 0.5s;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.gallery:hover img {
  transform: scale(1.1);
}

.gallery:hover {
  border: 3px solid var(--tertiary-color);
}

img.mfp-img {
  max-height: 500px !important;
}

.become-box {
  width: 100%;
  padding: 60px 0;
  background-image: url(../images/become-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.become-row {
  align-items: center;
}

.become-text {
  width: 95%;
}

.become-text p {
  margin: 20px 0 0 0;
}

.become-text a {
  display: inline-block;
  padding: 10px 30px;
  color: var(--fourth-color);
  background: var(--secondary-color);
  border-radius: 20px;
  margin: 30px 0 0 0;
}

.become-text a:hover {
  background: var(--fourth-color);
  color: var(--secondary-color);
}

.become-image {
  width: 100%;
}

.become-image img {
  width: 100%;
}

.pricing-box {
  width: 100%;
  padding: 60px 0;
  text-align: center;
}

.pricing-box h2 {
  text-transform: uppercase;
  font-family: robotoslab;
}

.price-info-text {
  width: 60%;
  margin: 20px auto 0 auto;
}

.price-card {
  width: 100%;
  margin: 40px 0 0 0;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.price {
  width: 100%;
  padding: 30px;
  text-align: left;
  border-radius: 50px 0 0 0;
  background: #f0f0f0;
  height: 850px;
}

.price h3 {
  margin: 0;
  font-size: 25px;
  font-family: robotoslab;
}

.price-info {
  position: absolute;
  width: 100%;
  padding: 20px 0;
  background: var(--primary-color);
  text-align: center;
  left: 0;
  top: 100px;
}

.price-info h2 {
  color: var(--tertiary-color);
  font-family: robotoslab;
  text-transform: lowercase;
}

.price-info h2 span {
  font-family: robotoslab-bold;
}

.price-card::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 95px;
  width: 100%;
  padding: 20px 0;
  background: #c00000;
}

.price-card::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 150px;
  width: 100%;
  padding: 20px 0;
  background: #c00000;
}

.price-text {
  width: 100%;
  padding: 150px 0 0 0;
  text-align: center;
}

.price-text h4 {
  display: inline-block;
  padding: 0 20px 15px 20px;
  margin: 0 0 20px 0;
  font-family: robotoslab;
  font-size: 28px;
  position: relative;
}

.price-text h4::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--fourth-color);
  bottom: 0;
  left: 0;
}

.price-text ul {
  text-align: left;
}

.price-text li {
  display: flex;
  font-family: opensans-semibold;
  font-size: 15px;
  padding: 0 0 15px 0;
  margin: 0 0 10px 0;
  border-bottom: 2px solid #e3e3e3;
}

.price-text li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.price-text li i {
  font-size: 12px;
  color: var(--primary-color);
  margin: 5px 10px 0 0;
}

.price-text a {
  display: inline-block;
  padding: 10px 30px;
  color: var(--tertiary-color);
  background: var(--primary-color);
  border-radius: 20px;
  margin: 50px 0 0 0;
}

.price-text a:hover {
  background: var(--fourth-color);
  color: var(--secondary-color);
}

.price-text a.price-one {
  margin: 57% 0 0 0;
}

.video-box {
  width: 100%;
  padding: 60px 0 100px 0;
  background: var(--primary-color);
  text-align: center;
}

.video-box h2 {
  color: var(--tertiary-color);
  font-family: robotoslab;
}

.video-box p {
  color: var(--tertiary-color);
}

.video-content {
  width: 100%;
  margin: -70px 0 0 0;
}

.video-cont {
  width: 95%;
  height: 350px;
}

.video-js {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}

.video-cont video {
  width: 100%;
  height: 100%;
  object-fit: content;
}

.video-cont-two {
  margin: 0 0 0 auto;
}

.footer {
  width: 100%;
  padding: 80px 0 80px 0;
  background: #2c2f3c;
  margin: 80px 0 0 0;
}

.footer-link {
  width: 100%;
}

.footer-link h3 {
  font-size: 25px;
  color: var(--tertiary-color);
  font-family: robotoslab;
  margin: 0 0 20px 0;
}

.footer-first {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-first li {
  width: 48%;
}

.footer-link ul li {
  margin: 0 0 20px 0;
}

.footer-link ul li:last-child {
  margin: 0;
}

.footer-link ul li a {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
  color: var(--tertiary-color);
}

.footer-link ul li a::before {
  position: absolute;
  content: "➤";
  left: 0;
  top: 0;
  color: #898989;
  transition: 0.5s;
}

.footer-link ul li a:hover {
  color: var(--secondary-color);
}

.footer-link ul li a:hover::before {
  color: var(--primary-color);
}

.footer-second {
  /* padding: 0 0 0 15%; */
}

.footer-icon {
  width: 100%;
  margin: 30px 0 0 0;
}

.footer-icon ul {
  display: inline-block;
}

.footer-icon ul li {
  display: inline-block;
  margin: 0 5px 0 0;
}

.footer-icon ul li:last-child {
  margin: 0;
}

.footer-icon ul li a {
  padding: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--tertiary-color);
  font-size: 15px;
  border-radius: 5px;
}

.footer-icon ul li a:hover {
  background: var(--primary-color);
}

.facebook {
  background: #5d82d1;
}

.twitter {
  background: #40bff5;
}

.linkedin {
  background: #eb5e4c;
}

.pinterest {
  background: #e13138;
}

.footer_copyright {
  width: 100%;
  padding: 15px 0;
  text-align: center;
  background: #191a22;
}

.footer_copyright p {
  margin: 0;
  color: var(--tertiary-color);
}

.footer_copyright p a {
  color: var(--tertiary-color);
  font-family: opensans;
  font-size: 18px;
}

.footer_copyright p a:hover {
  color: var(--secondary-color);
}

.scroll_top {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--fourth-color);
  font-size: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  transition: all 0.4s;
  cursor: pointer;
}

.scroll_top:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

/* index css ends */

@media only screen and (max-width: 1451px) {
  h1 {
    font-size: 45px;
  }
}

@media only screen and (max-width: 1399.2px) {
  .container {
    max-width: 90%;
    margin: 0 auto;
  }

  .banner-image {
    height: 400px;
  }

  .banner {
    height: 500px;
  }

  .benefit-image {
    right: -25%;
  }

  .benefit-wrap-two .benefit-image {
    left: -25%;
  }

  .price-text a.price-one {
    margin: 15% 0 0 0;
  }

  .benefit {
    padding: 20px 30px;
  }
}

@media only screen and (max-width: 1350.2px) {
  .price-text a.price-one {
    margin: 63% 0 0 0;
  }
}

@media only screen and (max-width: 1321px) {
  .banner-image {
    height: 395px;
  }
}

@media only screen and (max-width: 1301px) {
  .price-text a.price-one {
    margin: 68% 0 0 0;
  }

  .banner-image {
    height: 385px;
  }

  .banner {
    height: 470px;
  }
}

@media only screen and (max-width: 1256px) {
  .banner-image {
    height: 375px;
  }

  .banner-cont {
    padding: 4% 0 0 0;
  }

  .logo {
    width: 15%;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  p {
    font-size: 16px;
  }

  .about-box {
    padding: 30px 0;
  }

  .about-box h3 {
    font-size: 25px;
    margin: 20px 0 0 0;
  }

  .benefit p {
    font-size: 14px;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
  }

  .benefit-icon-cont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .benefit-center {
    width: 230px;
    height: 230px;
  }

  .benefit-center-cont {
    width: 200px;
    height: 200px;
  }

  .benefit-box {
    margin: 40px 0;
  }

  .gallery-box {
    padding: 30px 0;
  }

  .gallery-slider {
    margin: 30px 0 0 0;
  }

  .gallery {
    height: 280px;
  }

  .become-box {
    padding: 30px 0;
  }

  .pricing-box {
    padding: 30px 0;
  }

  .price h3 {
    font-size: 22px;
  }

  .price-info h2 {
    font-size: 30px;
  }

  .price-info {
    padding: 15px 0;
    top: 80px;
  }

  .price-card::before {
    padding: 10px 0;
    top: 75px;
  }

  .price-card::after {
    padding: 10px 0;
    top: 132px;
  }

  .price-text {
    padding: 110px 0 0 0;
  }

  .price-text h4 {
    font-size: 25px;
    padding: 0 10px 10px 10px;
  }

  .price {
    height: 820px;
  }

  .video-box {
    padding: 30px 0 100px 0;
  }

  .footer {
    margin: 30px 0 0 0;
    padding: 30px 0;
  }

  .footer_copyright {
    padding: 10px 0;
  }

  .footer_copyright p {
    font-size: 14px;
  }

  .footer_copyright p a {
    font-size: 14px;
  }

  .price-card {
    margin: 30px 0 0 0;
  }
}

@media only screen and (max-width: 1221px) {
  .price-text a.price-one {
    margin: 74% 0 0 0;
  }
}

@media only screen and (max-width: 1201px) {
  .banner-image {
    height: 350px;
  }

  .banner-cont {
    padding: 5% 0 0 0;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  .video-cont {
    height: 300px;
  }

  .price-text a.price-one {
    margin: 83% 0 0 0;
  }

  .price-info h2 {
    font-size: 25px;
  }

  .price-card::after {
    top: 126px;
  }

  .price {
    height: 850px;
  }
}

@media only screen and (max-width: 1156px) {
  .benefit-center {
    width: 200px;
    height: 200px;
  }

  .benefit-center-cont {
    width: 180px;
    height: 180px;
  }

  .benefit {
    padding: 20px 20px;
  }
}

@media only screen and (max-width: 1161px) {
  .price {
    height: 880px;
  }

  .price-text a.price-one {
    margin: 88% 0 0 0;
  }
}

@media only screen and (max-width: 1130px) {
  .price-text a.price-one {
    margin: 104% 0 0 0;
  }

  .price {
    height: 900px;
  }

  .price {
    padding: 20px;
  }

  .price h3 {
    padding: 0 0 0 10px;
  }
}

@media only screen and (max-width: 1129.2px) {
  .price {
    height: 850px;
  }

  .price-text a.price-one {
    margin: 84% 0 0 0;
  }
}

@media only screen and (max-width: 1101px) {
  .banner-image {
    height: 325px;
  }

  .banner {
    height: 450px;
  }

  .banner-cont {
    padding: 6% 0 0 0;
  }
}

@media only screen and (max-width: 1095.2px) {
  .price {
    height: 880px;
  }

  .price-text a.price-one {
    margin: 88% 0 0 0;
  }

  .price h3 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 1060.2px) {
  .price-text a.price-one {
    margin: 92% 0 0 0;
  }

  .price h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1024.2px) {
  .price-text a.price-one {
    margin: 105% 0 0 0;
  }

  .price h3 {
    font-size: 19px;
  }

  .price-info {
    top: 70px;
  }

  .price-card::before {
    top: 65px;
  }

  .price-card::after {
    top: 116px;
  }

  .price-text a.price-one {
    margin: 97% 0 0 0;
  }

  .price-text li {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991.2px) {
  .banner {
    height: 420px;
  }

  .banner-image {
    height: 285px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 28px;
  }

  .benefit-wrap {
    width: 100%;
    padding: 0 15% 0 15%;
  }

  .benefit-wrap-two {
    padding: 0 15% 0 15%;
  }

  .benefit {
    margin: 0 0 40px 0;
  }

  .benefit:last-child {
    margin: 0 0 40px 0;
  }

  .benefit-wrap-two p {
    padding: 0;
  }

  .benefit-two .benefit-icon {
    left: 96%;
  }

  .benefit-wrap-two .benefit:last-child {
    margin: 0;
  }

  .benefit-center {
    width: 200px;
  }

  .benefit-center {
    width: 180px;
    height: 180px;
    margin: 30px auto;
    display: none;
  }

  .benefit-center-cont {
    width: 160px;
    height: 160px;
  }

  .price {
    height: 730px;
  }

  .price h3 {
    font-size: 22px;
  }

  .price-text a.price-one {
    margin: 52% 0 0 0;
  }

  .price-row .col-md-6 {
    margin: 0 auto;
  }

  .footer-first li {
    width: 100%;
  }

  .footer-link ul li {
    margin: 0 0 10px 0;
  }

  .footer-link h3 {
    font-size: 22px;
  }

  .video-cont {
    height: 250px;
  }

  .price-info {
    padding: 10px 0;
  }

  .price-info h2 {
    font-size: 22px;
  }

  .price-card::after {
    top: 105px;
  }

  .price-text {
    padding: 90px 0 0 0;
  }

  .price-text h4 {
    font-size: 22px;
  }

  .benefit-image {
    display: none;
  }
}

@media only screen and (max-width:960.2px){
	 .banner-image {
    padding:10px;
  }
}

@media only screen and (max-width: 950.2px) {
  .price-text a.price-one {
    margin: 55% 0 0 0;
  }
}

@media only screen and (max-width:960.2px){
	 .banner-image {
   height:275px;
  }
}

@media only screen and (max-width: 920.2px) {
  .price-text a.price-one {
    margin: 58% 0 0 0;
  }

  .banner-image {
    height: 250px;
  }

  .banner {
    height: 400px;
  }

  .banner-cont {
    padding: 8% 0 0 0;
  }

  .benefit-icon {
    right: -30px;
  }

  .benefit-two .benefit-icon {
    left: 93%;
  }

  .about-box p {
    width: 80%;
  }

  .price-info-text {
    width: 80%;
  }
}

@media only screen and (max-width: 900.2px) {
  .price-text a.price-one {
    margin: 62% 0 0 0;
  }

  .price {
    height: 750px;
  }
}

@media only screen and (max-width: 850.2px) {
  .price {
    height: 770px;
  }

  .price-text a.price-one {
    margin: 63% 0 0 0;
  }
}
@media only screen and (max-width:960.2px){
	 .banner-image {
    padding:25px;
  }
}

@media only screen and (max-width: 820.2px) {
  .price-text a.price-one {
    margin: 65% 0 0 0;
  }
}

@media only screen and (max-width: 800.2px) {
  .price-text a.price-one {
    margin: 68% 0 0 0;
  }
	
	.banner-image{
		height:245px;
	}
	
}

@media only screen and (max-width: 780.2px) {
  .price-text a.price-one {
    margin: 70% 0 0 0;
  }
}

@media only screen and (max-width: 767.2px) {
  .price {
    height: auto;
  }

  .price-text a {
    margin: 30px 0 0 0;
  }

  .price-text a.price-one {
    margin: 30px 0 0 0;
  }

  .price h3 {
    text-align: center;
  }

  .video-content .row .col-md-6 {
    width: 48%;
  }

  .video-cont {
    width: 100%;
  }

  .footer .col-md-4 {
    width: 48%;
  }

  .footer-last {
    margin: 30px 0 0 0;
  }

  .footer .col-md-4:last-child {
    width: 100%;
  }

  .become-image {
    width: 100%;
    height: 400px;
  }

  .become-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .banner .col-lg-6 {
    width: 48%;
  }

  .banner {
    height: 350px;
  }

    .banner-image {
    height: 220px;
  }

  .about-box p {
    width: 100%;
  }

  .price-info-text {
    width: 100%;
  }

  .become-image {
    margin: 30px 0 0 0;
  }
}

@media only screen and (max-width: 720.2px) {
  .banner-image {
    height: 210px;
  }
}

@media only screen and (max-width: 700.2px) {
	h1{
		font-size:27px;
	}
  .gallery {
    height: 250px;
  }

  .top-right p {
    font-size: 13px;
  }

  .top-left p {
    font-size: 13px;
  }

  .top-left p a {
    font-size: 13px;
  }

  .nav-bar {
    padding: 5px 0;
  }

  .logo {
    width: 20%;
  }

  .sticky .logo {
    width: 30%;
  }
	
	.banner-image{
		padding:28px;
	}
	
}

@media only screen and (max-width: 675.2px) {
  .banner-image {
    height: 200px;
  }
}

@media only screen and (max-width: 651px) {
  .benefit-wrap {
    width: 100%;
    padding: 0;
  }

  .benefit-wrap-two {
    width: 100%;
    padding: 0;
  }

  .video-box {
    padding: 30px 0;
  }

  .benefit-wrap-two p {
    padding: 0 10px 0 0;
  }

  .video-content .row .col-md-6 {
    width: 100%;
  }

  .video-content {
    margin: 0;
  }

  .video-cont {
    margin: 30px 0 0 0;
  }

  .banner .col-lg-6:last-child {
    display: block;
  }

  .banner-text h1 br {
    display: none;
  }

  .banner .col-lg-6 {
    width: 100%;
  }

  .banner-text {
    text-align: center;
  }

  .banner-text h1 {
    margin: 0 auto;
    width: 100%;
  }

  .banner-cont {
    padding: 10% 0 0 0;
  }
	
	.banner-image{
		height:390px;
		padding:0;
		margin:30px 0 0 0;
	}
	
	.banner{
		height:650px;
	}
	
}

@media only screen and (max-width: 600.2px) {
  .banner {
    height: 600px;
  }
	
	.banner-image{
		height:350px;
	}

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon-cont {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .become-image {
    height: 350px;
  }

  .top-left {
    width: 42%;
  }

  .top-right {
    width: 55%;
  }
}

@media only screen and (max-width: 571px) {
  .banner {
    height: 580px;
  }
	
	.banner-image{
		height:330px;
	}
}

@media only screen and (max-width: 560.2px) {
  .top-right {
    display: none;
  }

  .top-left {
    width: 100%;
    text-align: center;
  }

  .top-left p {
    font-size: 15px;
  }

  .top-left p a {
    font-size: 15px;
  }

  .logo {
    width: 30%;
  }

  .sticky .logo {
    width: 30%;
  }
}

@media only screen and (max-width: 551px) {
  .banner {
    height: 570px;
  }
	
	.banner-image{
		height:320px;
	}
	
	.banner-cont{
		padding:12% 0 0 0;
	}
	
}

@media only screen and (max-width: 521px) {
  .banner {
    height: 550px;
  }
	
	.banner-image{
		height:300px;
	}
}

@media only screen and (max-width: 501px) {
  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 25px;
  }

  .become-image {
    height: 300px;
  }

  .price-info h2 {
    font-size: 20px;
  }

  .price h3 {
    font-size: 20px;
    padding: 0;
  }

  .price-card::after {
    top: 100px;
  }

  .price-text h4 {
    font-size: 20px;
  }

  .gallery-card {
    padding: 0;
  }

  .benefit-icon {
    right: -20px;
  }

  .benefit-two .benefit-icon {
    left: 90%;
  }

  .benefit-wrap p {
    padding: 0 16px 0 0;
  }

  .benefit-wrap-two p {
    padding: 0 16px 0 0;
  }
	
	 .banner-cont {
    padding: 16% 0 0 0;
  }
	
	.banner-image{
		padding:20px;
	}
	
}
@media only screen and (max-width: 476px) {
  .banner-image {
    height: 280px;
  }
}

@media only screen and (max-width: 460.2px) {
  .menu-btn a {
    padding: 10px 20px;
    font-size: 14px;
  }

}

@media only screen and (max-width:451px){

		  .banner-image {
    height: 270px;
  
	}
	
	.banner{
		height:510px;
	}
	
}

@media only screen and (max-width:421px){

		  .banner-image {
    height: 250px;
  
	}
	
	.banner{
		height:480px;
	}
	
	.banner-cont{
		padding:14% 0 0 0;
	}
	
}

@media only screen and (max-width: 415px) {
  .banner {
    height: 505px;
  }
}

@media only screen and (max-width: 400.2px) {
  .logo {
    width: 35%;
  }

  .sticky .logo {
    width: 35%;
  }

  .banner-text h1 {
    width: 100%;
  }

  .menu-btn a {
    font-size: 13px;
  }

  .become-image {
    height: 280px;
  }
	
	.banner-image{
		height:230px;
		padding:0;
	}
	
}

@media only screen and (max-width: 375.2px) {
  .menu-btn a {
    padding: 10px 15px;
  }

  .become-image {
    height: 250px;
  }

  .gallery {
    height: 200px;
  }

  .benefit-two .benefit-icon {
    left: 87%;
  }
	
	.banner{
		height:490px;
	}
	
	.banner-image{
		height:220px;
	}
	
	
}

@media only screen and (max-width: 355.2px) {
  .menu-btn a {
    padding: 10px 12px;
  }
}

@media only screen and (max-width:351px){
	.banner{
		height:470px;
	}
	
	.banner-image{
		height:200px;
	}
}

@media only screen and (max-width:341px){
	.banner{
		height:450px;
	}
	
	.banner-image{
		height:190px;
	}
}

@media only screen and (max-width: 340.2px) {
  .menu-btn a {
    padding: 10px 10px;
  }
}

@media only screen and (max-width: 331.2px) {
  .menu-btn a {
    padding: 8px;
  }
}

@media only screen and (max-width:326px){
	.banner{
		height:480px;
	}
	
}

@media only screen and (max-width: 322.2px) {
  .menu-btn a {
    padding: 7px;
  }
}
