@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
  color: #000;
}

a,
a:hover {
  text-decoration: none;
}

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

p {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

label {
  margin-bottom: 0;
}

::selection {
  color: white;
  background: #ff7675;
}

::-webkit-selection {
  color: white;
  background: #ff7675;
}

::-moz-selection {
  color: white;
  background: #ff7675;
}

.scrolltotop {
  width: 40px;
  height: 40px;
  border-radius: 20px 20px 0 0;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  text-align: center;
  padding-top: 8px;
  font-size: 22px;
  color: #ffffff;
  position: fixed;
  right: 5px;
  bottom: 5px;
  display: none;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
  background: #000;
  color: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

/* -- header area start -- */

header {
  background-color: #fff;
  padding: 27px 0px;
  top: 0;
  left: 0;
  z-index: 99999;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_left a img {
  display: inline-block;
  width: 135px;
}

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

.header_right ul li {
  display: inline-block;
  margin: 0px 20px;
}

.header_right ul li a {
  display: inline-block;
  color: #000;
  transition: all 0.2s ease;
}

.header_right ul li a:hover {
  color: #3d9ae7;
}

.header_right_right ul li {
  margin: 0;
  margin-left: 20px;
}

.header_right_right ul li a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 15px;
  border: 1px solid rgba(41, 58, 70, 0.65);
  transition: all 0.2s ease;
}

.header_right_right ul li a:hover {
  background-color: #293a46;
  color: #fff;
}

.header_right_right ul li a.active_link {
  background-color: #293a46;
  color: #fff;
}

.bar {
  width: 32px;
  cursor: pointer;
}

.bar span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #293a46;
  border-radius: 10px;
  margin: 5px 0px;
}

.header_left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* -- header area end -- */

/* -- hero area start -- */
.hero_wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero_wrapper h1 {
  color: #293a46;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero_wrapper p {
  color: #000;
  font-size: 20px;
  font-weight: 275;
}

.hero_wrapper ul {
  margin-top: 35px;
}

.hero_wrapper > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.hero_wrapper > ul li a {
  display: inline-block;
  width: 216px;
  padding: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 15px;
  border: 1px solid rgba(41, 58, 70, 0.65);
  background-color: #293a46;
  transition: all 0.2s ease;
}

.hero_wrapper > ul li a:hover {
  opacity: 0.7;
}

.hero_wrapper > ul li:last-child a {
  background-color: transparent;
  color: #293a46;
}

.hero_wrapper > ul li:last-child a:hover {
  background-color: #293a46;
  color: #fff;
  opacity: 1;
}

.img_oval {
  max-width: 360px;
  margin: auto;
}

.img_oval ul li {
  display: inline-block;
}

.img_oval ul li img {
  width: 52px;
  margin-left: -20px;
}

.img_oval ul li:first-child img {
  margin-left: 0;
}

.img_oval p {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 275;
  margin-top: 25px;
}

.img_oval p strong {
  font-weight: 500;
}

#hero {
  margin-top: 60px;
}

.hero_img {
  margin-top: 40px;
}

.hero_img img {
  display: block;
  width: 100%;
}
/* -- hero area end -- */

/* -- fanel area start -- */
#fanel {
  margin-top: 120px;
}

.fanel_wrapper {
  display: flex;
  gap: 16px;
}

.fanel_left img {
  display: inline-block;
  width: 40px;
  margin-top: 9px;
}

.fanel_right h2 {
  color: #293a46;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
}

.fanel_right h5 {
  max-width: 510px;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.fanel_right p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

/* -- fanel area end -- */

/* -- videotab area start -- */
#videotab {
  background-image: url(../img/videobg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0px;
}

.video_element h5 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  min-height: 60px;
  padding-left: 120px;
  padding-right: 120px;
}

.video_element iframe {
  display: block;
  width: 100%;
  height: 430px;
  box-shadow: 0px 2.292px 9.167px 1.146px rgba(0, 0, 0, 0.25);
}

.video_tab_heading {
  margin-top: 55px;
}

.video_tab_heading ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.video_tab_heading ul li img {
  display: inline-block;
  width: 24px;
  margin-right: 5px;
  opacity: 0.6;
}

.video_tab_heading ul li {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  padding: 12px 20px;
  border: 1px solid rgba(0, 0, 0, 0.17);
  border-radius: 11px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.video_tab_heading ul li:hover img {
  opacity: 1;
}

.video_tab_heading ul li:hover {
  color: #000;
  background: #ededed;
  border-color: transparent;
}

.video_element {
  display: none;
}

.visible {
  display: block;
}

.active img {
  opacity: 1 !important;
}

.active {
  color: #000 !important;
  background: #ededed !important;
  border-color: transparent !important;
}
/* -- videotab area end -- */

/* -- feature area start -- */
.feature_heading .fanel_right h2 {
  max-width: 500px;
}

#feature {
  padding-top: 120px;
}

.feature_block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature_item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 7.7px 0px rgba(0, 0, 0, 0.15);
  padding: 12px;
  height: 224px;
}

.feature_item img {
  display: block;
  width: 27px !important;
  margin-bottom: 12px;
}

.feature_item h4 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

.feature_item p {
  color: rgba(0, 0, 0, 0.69);
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
}

.feature_block {
  margin-top: 40px;
}
/* -- feature area end -- */

/* -- explore area start -- */
.fanel_wrapper .fanel_right h2 {
  max-width: 540px;
}

.slick-arrow {
  display: none !important;
}

.explore_marque {
  margin-top: 55px;
}

#explore {
  padding-top: 120px;
}
/* -- explore area end -- */

/* -- int area start -- */
.int_logo ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 77px;
  row-gap: 50px;
}

#int {
  padding-top: 120px;
}

.int_logo {
  margin-top: 55px;
}
/* -- end area start -- */

/* -- pricing area start -- */
.pricing_tab_heading {
  text-align: center;
}

.pricing_tab_heading h4 {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.pricing_tab_heading p {
  color: #000;
  font-size: 20px;
  font-weight: 300;
}

.pricing_tab_heading ul {
  margin-top: 40px;
}

.pricing_tab_heading ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.08);
  padding: 2px;
}

.pricing_tab_heading ul li {
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-weight: 400;
  width: 140px;
  text-align: center;
  padding: 10px 0px;
  cursor: pointer;
}

.pricing_tab_heading ul li.active {
  color: #000 !important;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  border-radius: 15px;
  background: #fff !important;
}

.prcing_currency {
  text-align: right;
  margin-top: 20px;
}

.prcing_currency select {
  background-color: transparent;
  border: 0;
  outline: none;
  color: #293a46;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.pricing_table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
}

.pricing_tab_cnt {
  margin-top: 40px;
}

.pc_table {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.26);
  background: #fff;
  padding: 24px;
}

.pc_table_heading h5 {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.pc_table_heading h2 {
  color: #000;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.pc_table_heading p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
  font-weight: 275;
}

.pc_table_cnt p {
  margin-top: 32px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.pc_table_cnt ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}

.pc_table_cnt ul li img {
  display: inline-block;
  width: 24px;
}

.pc_table_link a {
  display: block;
  width: 100%;
  color: #293a46;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #293a46;
  background: #fff;
  transition: all 0.2s ease;
}

.pc_table_link {
  margin-top: 42px;
  padding: 0px 20px;
}

.pc_table_link a:hover {
  background: #293a46;
  color: #fff;
}

.pc_table_link a.active_link {
  background: #293a46;
  color: #fff;
}

.pc_active {
  border: 1px solid #ba4be5;
  background: #fff;
  box-shadow: 0px 0px 5.2px 4px rgba(186, 75, 229, 0.15);
}

#pricing {
  padding-top: 120px;
}

.pricing_table {
  display: none;
}

.pricing_table.visible {
  display: grid !important;
}

/* -- pricing area end -- */

/* -- loved area start -- */
.loved_video iframe {
  display: block;
  width: 100%;
  height: 430px;
  box-shadow: 0px 2.292px 9.167px 1.146px rgba(0, 0, 0, 0.25);
}

.loved_video {
  margin-top: 40px;
}

#loved {
  padding-top: 120px;
}
/* -- loved area end -- */

/* -- start area start -- */
#start {
  padding-top: 120px;
}

.start_wrapper {
  background-image: url(../img/startbg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}

.start_left_heading h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 127.492%;
  margin-bottom: 25px;
}

.start_left_heading p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 70px;
}

.start_left a {
  display: inline-block;
  color: #293a46;
  font-size: 16px;
  font-weight: 500;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 16px 55px;
  transition: all 0.2s ease;
}

.start_right img {
  display: block;
  width: 308px;
  margin-left: auto;
}

.start_left a:hover {
  opacity: 0.7;
}
/* -- start area end -- */

/* -- footer area start -- */
footer {
  padding-top: 120px;
  padding-bottom: 70px;
}

.footer_logo a img {
  display: inline-block;
  width: 135px;
}

.footer_logo {
  margin-bottom: 40px;
}

.footer_link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.footer_link ul li a {
  display: inline-block;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.footer_link ul li a:hover {
  opacity: 0.7;
}

.footer_copy {
  padding: 40px 0px;
}

.footer_copy p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.footer_social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer_social ul li img {
  display: inline-block;
  max-width: 100%;
}

.footer_social ul li a {
  display: inline-block;
  transition: all 0.2s ease;
}

.footer_social ul li a:hover {
  opacity: 0.5;
}

.header_right ul li.active {
  background-color: transparent !important;
  border-bottom: 1px solid #3d9ae7 !important;
}

.header_right ul li.active a {
  color: #3d9ae7 !important;
}

.footer_link ul li.active {
  background-color: transparent !important;
}

/* -- footer area end -- */

#gallery div {
  padding: 0 5px;
}

#gallery img {
  height: 550px;
  object-fit: cover;
  object-position: top;
}

.main_video video {
  width: 100%;
}

.owl-carousel .owl-item h4 img {
  width: auto !important;
  max-width: 85%;
}

.owl-carousel .active {
  color: auto !important;
  background: transparent !important;
  border-color: transparent !important;
}

.feature_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.feature_nav span {
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 0px 7.7px 0px rgba(0, 0, 0, 0.15);
}

.feature_nav span img {
  display: block;
  width: 10px;
}

.int_logo ul li img {
  max-width: 100% !important;
  display: block !important;
  margin: auto !important;
}

.sticky_header {
  position: sticky;
  background-color: #fdfdfd;
  box-shadow: 0px -6px 13px rgba(0, 0, 0, 0.4);
}

.dirone .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}

.dirtwo .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}

img.reduce1 {
  width: 70% !important;
}

img.reduce2 {
  width: 70% !important;
}

section#payment {
  margin-top: 60px;
}
section#payment .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
section#payment .safe {
  display: flex;
  gap: 15px;
  align-items: center;
}
section#payment .cards img {
  margin-right: 8px;
}
section#payment .secure-title {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}
section#payment .secure-description {
  font-weight: 300;
  font-size: 14px;
}
section#payment .divide {
  height: 30px;
  width: 0px;
  border-left: 1px solid #00000070;
}
@media (max-width: 768px) {
  section#payment {
    display: none;
  }
}