@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.333333;
}

h1 {
  font-family: "Cormorant", serif;
  line-height: 1.2115;
  font-size: 52px;
  color: #E8A335;
}

h2 {
  font-size: 40px;
  font-weight: 500;
}

h3 {
  font-size: 38px;
  line-height: 1.31;
  color: #000;
  font-weight: 500;
}

h4 {
  font-size: 28px;
}

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

img {
  display: inline-block;
  width: auto;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 25px;
  }
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 25px;
  }
}
.submit_button {
  font-size: 26px;
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 10px 15px;
  margin: 0 auto;
}

.spacing {
  padding: 33px 0;
}

.button_wrap {
  display: flex;
}
.button_wrap .button:last-child {
  margin-left: 15px;
}

.button {
  padding: 13px 54px;
  color: #fff;
  display: flex;
  justify-content: center;
  border-radius: 26px;
  background: #d82391;
  outline: none !important;
  line-height: 1;
}
.button:hover {
  background-color: #e8a335;
  color: #fff;
}
.button.current {
  background: #e8a335;
  cursor: not-allowed;
  display: inline-block;
}
.button.current:hover {
  background: #e8a335;
  border-color: #e8a335;
  color: #fff;
}

.page_title {
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .page_title {
    padding: 10px 0;
  }
}

.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

.clearfix::before {
  display: block;
  content: "";
  clear: both;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.page_content.spacing {
  padding-top: 10px;
}

.slick-prev,
.slick-next {
  display: none !important;
}

.slick-dots li button:before {
  content: "";
  background: #d82391;
  border-radius: 50%;
  height: 15px;
  width: 15px;
}

.slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

input[type=date]::before {
  /* color: #999; */
  content: attr(placeholder) ": ";
}

input, select, option, textarea:focus {
  box-shadow: none !important;
}

.header_wrapper {
  min-height: 85px;
}
@media screen and (max-width: 767px) {
  .header_wrapper {
    min-height: 75px;
  }
}
.header_wrapper .header {
  width: 100%;
  position: fixed;
  z-index: 8;
  right: 0;
  left: 0;
  transform: translateZ(0);
  transition: all 0.5s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .header_wrapper .header {
    background-color: #fff;
  }
}
.header_wrapper .header .header_container {
  max-width: 1260px;
  padding: 10px 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header_wrapper .header .header_container .header_logo {
  width: 260px;
  display: inline-block;
}
@media screen and (max-width: 575px) {
  .header_wrapper .header .header_container .header_logo {
    width: auto;
  }
}
.header_wrapper .header .header_container .header_logo a {
  display: inline-block;
}
.header_wrapper .header .header_container .header_logo a img {
  max-height: 63px;
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .header_wrapper .header .header_container .header_logo a img {
    max-width: 200px;
  }
}
.header_wrapper .header .header_container .header_menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header_wrapper .header .header_container .header_menu ul {
    overflow-y: auto;
    padding-bottom: 20px;
  }
}
.header_wrapper .header .header_container .header_menu ul li {
  display: inline-block;
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .header_wrapper .header .header_container .header_menu ul li {
    display: block;
  }
}
.header_wrapper .header .header_container .header_menu ul li a {
  font-size: 14px;
  padding: 5px 10px;
  color: #000;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 767px) {
  .header_wrapper .header .header_container .header_menu ul li a {
    color: #000 !important;
    display: block;
  }
}
.header_wrapper .header .header_container .header_menu ul li a.active {
  color: #d82391 !important;
  content: "";
  border-radius: 0;
  position: relative;
  top: 0px;
  left: 0;
  display: block;
  transition: all 0.25s ease;
}
.header_wrapper .header .header_container .header_menu ul li a.active:after {
  width: 100%;
}
.header_wrapper .header .header_container .header_menu ul li a:after {
  content: "";
  border-bottom: 2px solid #e7b004;
  border-radius: 0;
  position: relative;
  top: 0px;
  width: 0;
  left: 0;
  display: block;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  .header_wrapper .header .header_container .header_menu ul li a:after {
    display: none;
  }
}
.header_wrapper .header .header_container .header_menu ul li a:hover {
  color: #d82391 !important;
}
.header_wrapper .header .header_container .header_menu ul li a:hover:after {
  width: 100%;
}
.header_wrapper .header .header_container .header_menu ul .btn-group a {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.header_wrapper .header .header_container .header_menu ul .btn-group a img {
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .header_wrapper .header .header_container .header_menu {
    left: -100%;
    position: absolute;
    top: 100%;
    padding: 15px 10px;
    background: #fff;
    z-index: 9;
    border-top: 2px solid #000;
    height: 100vh;
    width: 100%;
    transition: all 0.4s ease;
    align-items: flex-start;
  }
}
.header_wrapper .header .header_container .header_icon {
  display: none;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .header_wrapper .header .header_container .header_icon {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .header_wrapper .header .header_container .header_icon .dropdown-toggle::after {
    display: none;
  }
}
.header_wrapper .header .header_container .header_icon .menu_button span {
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0 10px;
}
.header_wrapper .header .header_container .header_icon .menu_button span.menu_close {
  display: none;
}
.header_wrapper .header .header_container .header_icon .menu_button span:hover {
  color: #d82391;
}
.header_wrapper .header .header_container .header_icon .user {
  padding: 0 10px;
  cursor: pointer;
}
.header_wrapper .header .header_container .header_icon .user a {
  color: #000;
}
.header_wrapper .header .header_container .header_icon .user a:hover {
  color: #d82391;
}

@media (min-width: 768px) {
  .scroll_header .header_wrapper {
    min-height: 77px;
  }
  .scroll_header .header_wrapper .header {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    padding: 4px 0;
    animation: slide-down 0.7s;
    background-color: #fff;
    z-index: 9;
    animation-direction: normal;
    animation-duration: 0.3s;
    position: fixed;
    top: 0px;
  }
  .scroll_header .header_wrapper .header .header_container {
    padding: 0 15px;
  }
  .scroll_header .header_wrapper .header .header_container .header_menu ul li a {
    color: #000;
  }
}
.width_banner .header_wrapper {
  min-height: auto;
}
@media screen and (max-width: 767px) {
  .width_banner .header_wrapper {
    min-height: 80px;
  }
}
@media screen and (max-width: 575px) {
  .width_banner .header_wrapper {
    min-height: 74.56px;
  }
}
.width_banner .header_wrapper header {
  box-shadow: none;
}
.width_banner .header_wrapper header .header_container .header_menu ul li a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .width_banner .header_wrapper header .header_container .header_menu .profile-icon {
    display: none;
  }
}
@media (min-width: 768px) {
  .width_banner.scroll_header .header_wrapper {
    min-height: auto;
  }
}

.menu_open .header_icon .menu_button .menu_open {
  display: none;
}
.menu_open .header_icon .menu_button .menu_close {
  display: block !important;
}

.menu_open .header_wrapper .header .header_container .header_menu {
  left: 0;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .menu_open .header_wrapper .header .header_container .header_menu {
    flex-direction: column;
  }
}

.banner {
  position: relative;
}
.banner .item {
  position: relative;
}
.banner .banner_img {
  position: relative;
}
.banner .banner_img img {
  width: 100%;
}
.banner .banner_img:after {
  /*   background: $orange-color; */
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  opacity: 0.18;
}
.banner .banner_content {
  margin: 0 auto;
  background: transparent;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.banner .banner_content h1 {
  color: #fff;
  text-transform: capitalize;
  text-shadow: 5px 1px 7px #000;
}
.banner .banner_content .button_wrap {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 575px) {
  .banner .banner_content .button_wrap {
    display: none;
  }
}

.content_box {
  background-color: #fff;
}
.content_box .content_box_title {
  text-align: center;
  padding: 0 10px;
}
.content_box .content_box_title h1 {
  text-transform: uppercase;
}
.content_box .content_box_title img {
  max-width: 251px;
  height: 31px;
  object-fit: contain;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .content_box .content_box_title img {
    margin-bottom: 20px;
  }
}
.content_box .box_icon form {
  justify-content: center;
}
.content_box .box_icon form .subscriber_input {
  outline: none !important;
  margin-right: -40px;
  padding: 10px;
  max-width: 458px;
  border-radius: 26px !important;
  border: 1px solid #e8a335;
}
.content_box .box_icon form .subscriber_input:focus {
  border: 2px solid #f8c36d;
}
.content_box .ipsum {
  position: relative;
}
.content_box .ipsum ._itme {
  width: 100%;
}
.content_box .ipsum ._itme img {
  width: 100%;
}
.content_box .ipsum .img_container {
  width: 100%;
  height: 484px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .content_box .ipsum .img_container {
    max-width: calc(100% - 120px);
  }
}
@media screen and (max-width: 767px) {
  .content_box .ipsum .img_container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .content_box .ipsum .img_container img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .content_box .ipsum .img_container img {
    object-fit: cover;
  }
}
.content_box .ipsum .text_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  left: 50%;
  display: none;
}
@media screen and (max-width: 1200px) {
  .content_box .ipsum .text_box {
    top: auto;
    bottom: -85px;
  }
}
@media screen and (max-width: 767px) {
  .content_box .ipsum .text_box {
    left: 0;
  }
}
.content_box .ipsum .text_box .image {
  display: flex;
  align-items: center;
  padding-right: 15px;
  padding-left: 18px;
  display: none;
}
@media screen and (max-width: 767px) {
  .content_box .ipsum .text_box .image {
    display: none;
  }
}
.content_box .ipsum .text_box .text {
  width: 100%;
  max-width: 562px;
  background-color: #d82391;
  color: #fff;
  font-size: 28px;
  padding: 30px 35px;
}
@media screen and (max-width: 1200px) {
  .content_box .ipsum .text_box .text {
    font-size: 20px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .content_box .ipsum .text_box .text {
    font-size: 14px;
  }
}
.content_box .ipsum .text_box .text p.read_more {
  text-align: right;
}
.content_box .ipsum .text_box .text p.read_more a {
  font-size: 14px;
  line-height: 19px;
  color: #d82391;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid #d82391;
}
.content_box .ipsum .text_box .text p.read_more a:hover {
  background: #d82391;
  color: #fff;
  border-color: #fff !important;
}
@media screen and (max-width: 991px) {
  .content_box .ipsum .text_box .text p.read_more {
    margin: 0;
  }
}
.content_box .apart {
  display: flex;
  padding: 56px;
  background-color: #B1B1B1;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .content_box .apart {
    padding: 15px;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 991px) {
  .content_box .apart ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.content_box .apart ul li {
  padding-top: 31px;
  padding-bottom: 38px;
  display: flex;
  align-items: center;
}
.content_box .apart ul li:not(:last-child) {
  border-bottom: 2px dotted #d82391;
}
@media screen and (max-width: 991px) {
  .content_box .apart ul li {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .content_box .apart ul li {
    padding: 15px 0;
  }
}
.content_box .apart ul li span {
  display: inline-block;
  vertical-align: middle;
  font-size: 38px;
  line-height: 1.3157;
}
@media screen and (max-width: 1200px) {
  .content_box .apart ul li span {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  .content_box .apart ul li span {
    font-size: 20px;
  }
}
.content_box .apart ul li span.icon {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 45px;
  background: #d82391;
  margin-right: 17px;
  position: relative;
}
.content_box .apart ul li span.icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px) {
  .content_box .apart ul li span.icon {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    max-width: 60px;
  }
  .content_box .apart ul li span.icon img {
    width: 30px;
  }
}
@media screen and (max-width: 575px) {
  .content_box .apart ul li span.icon {
    margin-right: 10px;
  }
}
.content_box .apart .image {
  max-width: 603px;
  width: 100%;
  max-height: 462px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .content_box .apart .image img {
    width: 100%;
  }
}
.content_box .itworks {
  padding: 0 148px;
  background-image: url("../image/003.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .content_box .itworks {
    padding: 0 25px;
  }
}
.content_box .itworks .itworks_inner ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: right;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul {
    flex-direction: column;
  }
}
.content_box .itworks .itworks_inner ul li {
  margin: 10px 0;
}
.content_box .itworks .itworks_inner ul li h5 {
  font-size: 25px;
  color: #d82391;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li h5 {
    font-size: 20px;
  }
}
.content_box .itworks .itworks_inner ul li.img {
  padding: 13px;
  border: 2px solid #d82391;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li.img {
    order: 1;
  }
}
.content_box .itworks .itworks_inner ul li.img img {
  max-width: 120px;
}
.content_box .itworks .itworks_inner ul li.text {
  padding-right: 85px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li.text {
    order: 2;
    padding: 10px 0;
    max-width: 500px;
    text-align: center;
  }
}
.content_box .itworks .itworks_inner ul li.text:after {
  content: "";
  border-bottom: 2px dotted #d82391;
  width: 100%;
  max-width: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li.text:after {
    display: none;
  }
}
.content_box .itworks .itworks_inner ul li.text.odd:after {
  display: none;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li.text.odd {
    display: none;
  }
}
.content_box .itworks .itworks_inner ul li.text_left {
  text-align: left;
  padding-left: 85px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li.text_left {
    order: 2;
    padding: 10px 0;
    max-width: 500px;
    text-align: center;
  }
}
.content_box .itworks .itworks_inner ul li.text_left:before {
  content: "";
  border-bottom: 2px dotted #d82391;
  width: 100%;
  max-width: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7px;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li.text_left:before {
    display: none;
  }
}
.content_box .itworks .itworks_inner ul li.text_left.even::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li.text_left.even {
    display: none;
  }
}
.content_box .itworks .itworks_inner ul li.text_left.image {
  padding-left: 0;
}
.content_box .itworks .itworks_inner ul li.text_left.image img {
  width: 100%;
  max-width: 280px;
  display: none;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .itworks_inner ul li.text_left.image img {
    display: none;
  }
}
.content_box .itworks .border_wrapp {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content_box .itworks .border_wrapp {
    display: none;
  }
}
.content_box .itworks .border_wrapp .border {
  height: 70px;
  margin-top: 0;
  margin-bottom: 0;
  border-right: 2px dotted #d82391;
  text-align: center;
  display: inline-block;
}
.content_box .itworks .img_bottom {
  text-align: center;
}
.content_box .itworks .img_bottom img {
  width: 100%;
  max-width: 490px;
}
.content_box .testimonial {
  width: 100%;
  max-width: 1145px;
  margin: 0 auto;
}
.content_box .testimonial p {
  font-size: 24px;
  max-width: 906px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .content_box .testimonial p {
    padding: 0 15px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .content_box .testimonial p {
    font-size: 16px;
  }
}
.content_box .testimonial .image_container {
  padding-top: 45px;
}
@media screen and (max-width: 991px) {
  .content_box .testimonial .image_container {
    padding-top: 20px;
    overflow-x: hidden;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.content_box .testimonial .image_container ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.content_box .testimonial .image_container ul li {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 3px;
  max-width: 264px;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .content_box .testimonial .image_container ul li {
    max-width: 100%;
  }
}
.content_box .testimonial .image_container ul li .image img {
  width: 100%;
  object-fit: cover;
  height: 316px;
  transition: all 0.3s cubic-bezier(0, 0.18, 0.75, 0.5);
}
@media screen and (max-width: 575px) {
  .content_box .testimonial .image_container ul li .image img {
    object-fit: cover;
  }
}
.content_box .testimonial .image_container ul li .image:last-child {
  margin-right: 0;
}
.content_box .testimonial .image_container ul li .image:hover img {
  transform: scale(1.06);
}
.content_box .testimonial .image_container ul li.big_img {
  max-width: 565px;
}
@media (max-width: 1100px) {
  .content_box .testimonial .image_container ul li.big_img {
    max-width: none;
  }
}
.content_box .testimonial .image_container ul li a {
  position: absolute;
  width: 100%;
  top: 100%;
  margin: 0 auto;
  text-align: center;
  transition: all 0.6s ease;
  z-index: 2;
}
.content_box .testimonial .image_container ul li a h4 {
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 10px;
}
.content_box .testimonial .image_container ul li a p {
  font-size: 16px;
  color: #fff;
  white-space: normal;
}
.content_box .testimonial .image_container ul li:hover {
  transition: all 0.6s ease;
}
.content_box .testimonial .image_container ul li:hover a {
  transform: translateY(-50%);
  top: 50%;
  height: 100vh;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  cursor: pointer;
}
.content_box .testimonial .image_container ul li:hover:after {
  transform: translateY(0);
  top: 0;
  border: 0;
  transition: all 0.6s ease;
}
.content_box .testimonial .image_container ul.slick-dots {
  display: block;
}
.content_box .testimonial .image_container ul.slick-dots li {
  width: auto;
  max-width: none;
}
.content_box .testimonial .image_container ul.slick-dots li::after {
  display: none;
}
.content_box .testimonial .image_container ul.slick-dots li button:before {
  background-color: #d82391;
  color: #d82391;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.content_box .brands ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.content_box .brands ul li {
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .content_box .brands ul li img {
    max-width: 80%;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .featured-section {
    padding: 15px 0;
  }
}
.footer {
  background-image: url("../image/footer.png");
  position: relative;
  color: #fff;
  z-index: 1;
  padding-top: 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 50px;
  }
}
.footer:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #d82391;
  width: 100%;
  height: 100%;
  opacity: 0.68;
  z-index: -1;
}
.footer .footer_content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer .footer_content {
    display: block;
    text-align: center;
  }
}
.footer .footer_content .footer_menu h3 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.footer .footer_content .footer_menu ul {
  padding-top: 10px;
  padding-bottom: 24px;
}
.footer .footer_content .footer_menu ul li {
  margin-bottom: 5px;
}
.footer .footer_content .footer_menu ul li a {
  font-size: 14px;
  color: #fff;
  padding: 5px 5px;
  display: block;
}
.footer .footer_content .footer_menu ul li a span {
  padding-left: 10px;
}
.footer .footer_content .footer_menu.social_icon ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer .footer_content .footer_menu.social_icon ul {
    justify-content: center;
  }
}
.footer .footer_content .footer_menu.social_icon ul li {
  margin: 5px;
}
.footer .footer_content .footer_menu.social_icon ul li a {
  background: #fff;
  color: #d82391;
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer .footer_content .footer_menu.social_icon ul li a {
    width: 40px;
    height: 40px;
  }
}
.footer .footer_content .footer_menu.social_icon ul li:hover a {
  background-color: #d82391;
  color: #fff;
}
.footer .copyright {
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  border-top: 2px solid #fff;
}
.footer .copyright p {
  color: #fff;
  margin-bottom: 0;
}

.registration .container {
  display: flex;
  justify-content: space-between;
}
.registration .image {
  width: 100%;
  max-width: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .registration .image {
    display: none;
  }
}
.registration .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.registration .image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.2;
  left: 0;
}
.registration .registraion_form {
  max-width: 50%;
  width: 100%;
  padding: 40px 35px;
  padding-top: 70px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media screen and (max-width: 767px) {
  .registration .registraion_form {
    padding: 20px 10px;
    max-width: 100%;
  }
}
.registration .registraion_form form .form-row {
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .registration .registraion_form form .form-row {
    flex-direction: column;
  }
}
.registration .registraion_form form .form-row input,
.registration .registraion_form form .form-row select {
  border-radius: 24px;
  min-height: 54px;
  padding: 10px 20px;
}
.registration .registraion_form form .form-row input::-webkit-input-placeholder,
.registration .registraion_form form .form-row select::-webkit-input-placeholder {
  text-transform: capitalize;
}
.registration .registraion_form form .form-row input[type=date] {
  text-transform: uppercase;
}
.registration .registraion_form form .form-row input[name=first_name],
.registration .registraion_form form .form-row input[name=last_name] {
  text-transform: capitalize;
}
.registration .registraion_form form .form-row .col {
  text-align: center;
}
.registration .registraion_form form .form-row .col a {
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .registration .registraion_form form .form-row .col:not(:last-child) {
    margin-bottom: 20px;
  }
}
.registration .registraion_form form .form-row.form_button {
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3411764706);
}
.registration .registraion_form form .form-row.form_button a {
  display: block;
  color: #fff;
  cursor: pointer;
}
.registration .registraion_form form .form-row.form_button .button {
  width: 100%;
  border: 0px solid #fff;
  margin-bottom: 10px;
  transition: 0.3s;
}
.registration .registraion_form form .form-row.form_button .button:hover {
  border-color: #d82391;
}
.registration .registraion_form form .form-row.form_button .button.google {
  background-color: #db4a39;
}
.registration .registraion_form form .form-row.form_button .button.google:hover {
  color: #fff;
  border-color: #fff;
}
.registration .registraion_form form .form-row.form_button .button.facebook {
  background-color: #4267B2;
}
.registration .registraion_form form .form-row.form_button .button.facebook:hover {
  color: #fff;
  border-color: #fff;
}
.registration .registraion_form form p {
  text-align: center;
}
.registration .registraion_form form .form-check {
  margin: 10px 0;
  font-size: 16px;
}
.registration .registraion_form form .form-check .form-check-input {
  position: static;
  margin: 0;
  padding: 0;
  margin-right: 5px;
}

.verification {
  padding: 0 17px !important;
}
.verification .modal-dialog {
  width: 100%;
  background-color: #F85F1B;
  border-radius: 48px;
  min-height: unset;
  max-height: 318px;
}
.verification .modal-dialog .close {
  z-index: 999;
}
.verification .modal-dialog .modal-content {
  background: transparent;
  border: none;
  text-align: center;
  max-width: 767px;
  margin: 0 auto;
  color: #fff;
  position: static;
}
.verification .modal-dialog .modal-content h2 {
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .verification .modal-dialog .modal-content h2 {
    padding: 0;
  }
}
.verification .modal-dialog .modal-content p {
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .verification .modal-dialog .modal-content p {
    margin: 0;
  }
}
.verification .modal-dialog .modal-content .otp_input {
  display: flex;
  width: 100%;
  justify-content: center;
}
.verification .modal-dialog .modal-content .otp_input input {
  display: block;
  width: 100%;
  max-width: 50px;
  height: 50px;
  padding: 5px;
  margin: 15px;
  outline: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .verification .modal-dialog .modal-content .otp_input input {
    max-width: 35px;
    height: 35px;
    margin: 5px;
  }
}
.verification .modal-dialog .modal-content .close {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 40px;
}
.verification .modal-dialog .modal-content .modal-footer {
  border-top: 0;
  padding-bottom: 25px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .verification .modal-dialog .modal-content .modal-footer {
    padding: 10px;
  }
}
.verification .modal-dialog .modal-content .modal-footer .button {
  border-radius: 0;
  background: #fff;
  color: #000;
  display: block;
  width: auto;
  padding: 14px 43px;
  outline: none;
  border: none;
}

.my_page .banner {
  background-size: cover;
  height: 130px;
  background-repeat: no-repeat;
  padding-top: 27%;
  background-color: #fff;
  position: relative;
}
.my_page .banner .banner_content {
  z-index: 3;
}
.my_page .banner .banner_content h3 {
  color: #fff;
  text-transform: capitalize;
}
.my_page .banner::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  top: 0;
  opacity: 0.1;
  z-index: 1;
}
.my_page .breadcrumbs {
  padding: 15px 0;
}
.my_page .breadcrumbs ul {
  display: flex;
}
.my_page .breadcrumbs ul li {
  margin: 0 5px;
}
.my_page .breadcrumbs ul li a {
  color: #000;
  font-size: 15px;
}
.my_page .breadcrumbs ul li a i {
  font-weight: 400;
}
.my_page .page_content_inner {
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  min-height: 415px;
  margin-bottom: 70px;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .my_page .page_content_inner {
    padding: 20px;
    margin-bottom: 40px;
  }
}
.my_page .page_content_inner .title {
  margin-bottom: 20px;
}
.my_page .page_content_inner .title h4 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .my_page .page_content_inner .title h4 {
    font-size: 26px;
  }
}
.my_page .page_content_inner .page_content_text pre {
  white-space: normal;
}
.my_page .faqs-section .accordion-item .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
}
.my_page .faqs-section .accordion-item .accordion-body {
  font-size: 14px;
}

.package_wrap {
  background-color: #e6e6ee;
  padding: 30px 0;
}

.package {
  font-size: 14px;
}
.package .box {
  padding: 15px 20px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
  border-radius: 5px;
  box-shadow: none;
  margin-bottom: 15px;
  padding-bottom: 25px;
}
.package .box p {
  margin: 0;
}
.package .box h4 {
  font-size: 25px;
  color: #000;
  color: #d82391;
  text-align: center;
  margin: 20px 0;
}
.package .box p {
  margin-bottom: 10px;
  text-align: center;
}
.package .box .card_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.package .box .card_wrap .card_in {
  width: 30%;
  padding: 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  margin: 5px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .package .box .card_wrap .card_in {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .package .box .card_wrap .card_in {
    max-width: 100%;
  }
}
.package .box .card_wrap .card_in .img {
  width: 100%;
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .package .box .card_wrap .card_in .img {
    max-width: 120px;
  }
}
@media screen and (max-width: 575px) {
  .package .box .card_wrap .card_in .img {
    max-width: 100px;
  }
}
.package .box .card_wrap .card_in .img img {
  width: 100%;
}
.package .box .card_wrap .card_in .card_body {
  padding: 10px 5px;
  text-align: center;
}
.package .box .card_wrap .card_in .card_body h5 {
  text-align: center;
  padding-bottom: 10px;
}
.package .box .package_discrintion .nav-pills {
  padding-bottom: 15px;
}
.package .box .package_discrintion .nav-pills li a.active {
  background-color: #d82391;
}
@media screen and (max-width: 575px) {
  .package .box .package_discrintion .nav-pills li a {
    padding-right: 8px;
    padding-left: 8px;
    border-bottom: 1px solid;
    border-radius: 0;
  }
}
.package .box .package_discrintion .tab-content > .active {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .package .box .package_discrintion .tab-content > .active {
    flex-direction: column;
  }
}
.package .box .package_discrintion .package_card {
  display: inline-block;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  width: 30%;
  min-height: 450px;
  padding: 10px 20px;
  border-radius: 10px;
  position: relative;
  margin: 10px;
}
.package .box .package_discrintion .package_card .badge {
  position: absolute;
  top: 0px;
  height: 20px;
  width: 87px;
  line-height: 1px;
  font-size: small;
  font-family: initial;
  right: 0px;
  background-color: #17a2b8;
  padding: 20px;
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 991px) {
  .package .box .package_discrintion .package_card {
    max-width: 45%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .package .box .package_discrintion .package_card {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 10px 15px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .package .box .package_discrintion .package_card {
    padding: 10px 10px;
    max-width: 100%;
    min-height: 300px;
    margin-bottom: 20px;
  }
}
.package .box .package_discrintion .card_name {
  height: 55px;
  opacity: 0.7;
  margin: 0.5rem 0;
  font-size: 1rem;
  letter-spacing: 0.01rem;
  font-weight: bold;
  display: block;
  text-align: center;
}
.package .box .package_discrintion .amount h5 {
  color: #452d6e;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1.5px solid rgba(69, 45, 110, 0.6);
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.package .box .package_discrintion .amount h5 sub {
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .package .box .package_discrintion .amount h5 {
    font-size: 35px;
  }
}
.package .box .package_discrintion .features {
  font-size: 16px;
  padding: 15px 10px;
}
@media screen and (max-width: 991px) {
  .package .box .package_discrintion .features {
    font-size: 14px;
    padding-right: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .package .box .package_discrintion .features {
    padding-left: 15px;
  }
}
@media screen and (max-width: 575px) {
  .package .box .package_discrintion .features {
    padding-left: 10px;
  }
}
.package .box .package_discrintion .features ul li {
  margin-bottom: 15px;
  padding-left: 5px;
}
.package .box .package_discrintion .features ul li::marker {
  content: "➽";
  color: orange;
}
.package .box .package_discrintion .features ul li i {
  font-weight: bold;
  padding-right: 10px;
  color: #000;
}
@media screen and (max-width: 991px) {
  .package .box .package_discrintion .features ul li i {
    padding-right: 5px;
  }
}
.package .box .package_discrintion .subscrib_button {
  text-align: center;
  margin: 10px 0;
  width: 100%;
  bottom: 5px;
}
.package .box .package_discrintion .subscrib_button a {
  display: inline-block;
}

/*# sourceMappingURL=style.css.map */
