:root {
  --font_family_primary: "Neue Haas Grotesk Display Pro", sans-serif;
  --color_white: #fff !important;
  --color_black: #000 !important;
  --color_darkblue: #013a51 !important;
  --color_lightblue: #dce8ee !important;
  --color_red: #d14852 !important;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  font-size: 18px;
  line-height: 24px;
  font-style: normal;
  font-family: var(--font_family_primary);
  color: var(--color_darkblue);
  background-color: var(--color_white);
  overflow-x: hidden;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
img,
svg,
path,
a,
img:hover,
svg:hover,
a:hover,
button,
button:hover {
  transition: all 0.5s ease-in-out;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
/* Custome Animation */
.reveal,
.custom_fade_top,
.custom_fade_buttom,
.custom_fade_left,
.custom_fade_right,
.custom_zoom_in,
.custom_zoom,
.custom_zoom_in_bottom,
.custom_lightSpeedInLeft,
.custom_SpeedInright {
  position: relative;
  opacity: 0;
  transition: all 2s ease;
}
.reveal.active {
  opacity: 1;
  transition: all 2s ease;
}
.active.custom_fade_top {
  animation: custom_fade_top 2s ease;
  transition: all 2s ease;
}
.active.custom_fade_bottom {
  animation: custom_fade_bottom 2s ease;
  transition: all 2s ease;
}
.active.custom_fade_left {
  animation: custom_fade_left 2s ease;
  transition: all 2s ease;
}
.active.custom_fade_right {
  animation: custom_fade_right 2s ease;
  transition: all 2s ease;
}
.active.custom_zoom_in {
  animation: custom_zoom_in 2s ease;
  transition: all 2s ease;
}
.active.custom_zoom {
  animation: custom_zoom 2s ease;
  transition: all 2s ease;
}
.active.custom_zoom_in_bottom {
  animation: custom_zoom_in_bottom ease;
  transition: all 2s ease;
}
.active.custom_lightSpeedInLeft {
  animation: custom_lightSpeedInLeft 2s ease-out;
}
.active.custom_SpeedInright {
  animation: custom_SpeedInright 2s ease;
}
@keyframes custom_SpeedInright {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }

  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes custom_lightSpeedInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0) skewX(30deg);
    transform: translate3d(-20%, 0, 0) skewX(30deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes custom_fade_top {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes custom_fade_bottom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes custom_fade_left {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes custom_fade_right {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes custom_zoom_in {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes custom_zoom {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes custom_zoom_in_bottom {
  from {
    transform: translateZ(1);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
/* FONT-SIZE */
.heading_text_1 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
}
.heading_text_2 {
  font-size: 35px;
  line-height: normal;
  font-weight: 700;
}
.heading_text_3 {
  font-size: 25px;
  line-height: normal;
}
.heading_text_4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}
.heading_text_5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.heading_text_6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
p {
  font-size: 18px;
}
.text_16 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
/* COLOR-CLASS */
.color_white {
  color: var(--color_white);
}
.bg_white {
  background-color: var(--color_white);
}
.color_black {
  color: var(--color_black);
}
.bg_black {
  background-color: var(--color_black);
}
.color_darkblue {
  color: var(--color_darkblue);
}
.bg_darkblue {
  background-color: var(--color_darkblue);
}
.color_lightblue {
  color: var(--color_lightblue);
}
.bg_lightblue {
  background-color: var(--color_lightblue);
}
.color_red {
  color: var(--color_red);
}
.bg_red {
  background-color: var(--color_red);
}
.transparent_color {
  background-color: transparent;
}
/* FONT-WEIGHT */
.fw_100 {
  font-weight: 100 !important;
}
.fw_200 {
  font-weight: 200 !important;
}
.fw_300 {
  font-weight: 300 !important;
}
.fw_400 {
  font-weight: 400 !important;
}
.fw_500 {
  font-weight: 500 !important;
}
.fw_600 {
  font-weight: 600 !important;
}
.fw_700 {
  font-weight: 700 !important;
}
.fw_800 {
  font-weight: 800 !important;
}
.fw_900 {
  font-weight: 900 !important;
}
/* LINE-HEIGHT */
.line_height_normal {
  line-height: normal;
}
.line_height_35 {
  line-height: 35px;
}
.line_height_30 {
  line-height: 30px;
}
.line_height_25 {
  line-height: 25px;
}
.line_height_22 {
  line-height: 22px;
}
.website_content {
  overflow-x: hidden;
}

/* ========================= Buttons CSS ========================= */
.blue_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  gap: 12px;
  background: var(--color_darkblue);
  color: var(--color_white);
  border-radius: 27px;
  padding: 14px 15px;
}
.blue_btn:hover,
.white_btn:hover {
  background: var(--color_red);
}
.red_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 17px 20px;
  gap: 30px;
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  border-radius: 27px;
  color: var(--color_white);
  background: var(--color_red);
}
.red_btn:hover {
  background: var(--color_darkblue);
}
.white_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: var(--color_darkblue);
  background: var(--color_white);
  border-radius: 27px;
  padding: 12px 34px;
}
.white_btn:hover {
  color: var(--color_white);
}
/* ========================= Header CSS ========================= */
button.navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar_content .offcanvas button.btn-close {
  display: none;
}
div#header_sec {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  padding: 21px 0 13px;
  background-color: #fff;
  z-index: 999;
}
.header_sec.sticky {
  box-shadow: 0 0px 10px 6px rgb(0 0 0 / 26%);
}
.navbar_info {
  display: flex;
  align-items: center;
  width: -webkit-fill-available;
  justify-content: flex-end;
}
ul.navbar-nav {
  padding-right: 10px;
  position: relative;
}
ul.navbar-nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  width: 4px;
  background: #003a4f;
  margin: auto 0;
}
ul.navbar-nav a.nav-link {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #013a51;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 19px 19px !important;
}

.header_contact {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 30px;
}
.navbar-nav .dropdown-menu {
  padding: 0;
  border-color: #d74755;
  overflow: hidden;
  top: 50px;
  left: 15px;
}
li.nav-item.dropdown:hover ul.dropdown-menu {
  display: block;
}
.navbar-nav .dropdown-menu .dropdown-item:active,
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background: #f44336;
  color: #fff;
}
.navbar-nav .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding: 12px 19px;
}
a.login_btn {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  color: #003a4f;
}

/* ========================= Footer  CSS ========================= */
.footer_upper_box ul,
.footer_upper_box a,
.footer_upper_box address {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: -0.07px;
  margin-top: 5px;
}
ul.footer_nav_list li a,
.footer_upper_box a {
  color: var(--color_white);
}
ul.footer_nav_list li a:hover,
.footer_upper_box a:hover,
.footer_bottom_area a:hover {
  color: var(--color_red);
}
.footer_midd_info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_midd_area {
  padding: 35px 0;
  margin: 80px 0;
  border-top: 1px solid #002d3f;
  border-bottom: 1px solid #002d3f;
}
.footer_bottom_area a {
  display: inline-flex;
  padding: 0 4px;
  line-height: normal;
  color: var(--color_white);
}
.footer_bottom_area span {
  margin: 0 24px;
}
.footer_upper_area > .row,
.footer_midd_area > .row {
  gap: 40px 0;
}
/* ========================= Banner CSS ========================= */
.banner_sec {
  background-image: url(../images/Home_banner.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 100vh;
  place-content: center;
  position: relative;
  z-index: 0;
  padding: 110px 0;
}
.banner_content {
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
a.scroll_btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color_darkblue);
  position: absolute;
  padding-right: 0;
  bottom: 100px;
  transform: rotate(90deg);
  z-index: 1;
}

a.scroll_btn::after {
  content: "";
  position: absolute;
  left: 125%;
  top: 50%;
  width: 81px;
  height: 1px;
  background: var(--color_darkblue);
}
/* ========================= Event-type CSS ========================= */
.event_type_content > .row {
  gap: 30px;
}
.event_type_list > .row {
  gap: 30px 0;
}
.event_type_box {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 10px;
  color: var(--color_white);
  background-color: #dce8ee;
}
.event_type_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(238, 238, 238, 0) 36.47%,
    #013a51 100%
  );
  z-index: 0;
}
.event_type_info {
  position: absolute;
  bottom: 44px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  z-index: 1;
}
.event_type_box a.white_btn {
  transform: scale(0) translateY(45px);
  opacity: 0;
  height: 0;
  transition: 0.6s ease-in;
}
.event_type_box:hover a.white_btn {
  height: 100%;
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: 0.6s ease-out;
}
/* ========================= Event-type CSS ========================= */
.how_work_content_information {
  max-width: 460px;
  margin: 0 auto;
}
.how_work_tabs_content,
.how_work_content_tabs,
.how_work_tabs_img,
.how_work_tabs_img img {
  height: 100%;
}
ul.how_work_tabs {
  padding: 34px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

ul.how_work_tabs li {
  border: 1px solid #bfbfbf;
  border-left: 0;
  border-right: 0;
  padding: 20px 0 20px 36px;
}

ul.how_work_tabs li a {
  display: flex;
  align-items: center;
  color: var(--color_darkblue);
}

ul.how_work_tabs li a .tab_how_work_title {
  font-size: 50px;
  line-height: normal;
  font-weight: 700;
  border-right: 1px solid #bfbfbf;
  padding-right: 30px;
  margin-right: 30px;
}
.how_work_content_tabs {
  transform: scale(0.9);
  clip-path: circle(0% at 50% 50%);
  transition: 0.5s sopacity 1s, transform 1s, clip-path 1s;
}
.how_work_content_tabs.show {
  transform: scale(1);
  clip-path: circle(100% at 50% 50%);
}
.how_work_tabs_img img {
  border-radius: 10px;
}
/* ========================= Exclusion-list CSS ========================= */
.plan_img_arae {
  position: relative;
  z-index: 0;
}
.plan_img_content {
  margin: 0 0 -160px 0;
}
.plan_img {
  animation: plan_zoom 1.5s alternate infinite
    cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
@keyframes plan_zoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
}

.exclusion_title_area {
  max-width: 500px;
  margin: 0 auto;
}
.exclusion_list > .row {
  gap: 24px 0;
}
.exclusion_list_content > .row {
  gap: 56px;
}
.exclusion_list_box {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--color_white);
  border-radius: 10px;
  padding: 26px;
  height: 100%;
  overflow: hidden;
}
/* .exclusion_list_box::after {
  content: "";
  position: absolute;
  transform: scale(0);
  width: 100%;
  height: 100%;
  background: #013a51;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
}
.exclusion_list_box:hover {
  color: var(--color_white);
} 
.exclusion_list_box:hover::after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}
.exclusion_list_box:hover .exclusion_img svg path {
  fill: #fff;
}
.exclusion_list_box:hover .exclusion_img svg g.exclusion_list_round path {
  fill: #d14852;
}
  */
.exclusion_bottom_contact p a {
  color: var(--color_darkblue);
}
.exclusion_bottom_contact p a:hover {
  color: var(--color_red);
}
.exclusion_bottom_contact {
  position: relative;
  z-index: 1;
}
/* ========================= Client-Say CSS ========================= */
.client_say_area {
  position: relative;
  z-index: 0;
  padding: 270px 0 220px;
}
.client_say_content > .row {
  gap: 40px;
}
.client_say_box {
  max-width: 620px;
  margin: 0 auto;
}
.client_say_box hr.client_say_hr {
  opacity: 1;
  height: 4px;
  width: 115px;
  margin: 24px auto;
  background: #d14852;
  border: 0;
}
.balloons_box {
  position: absolute;
}
.balloons_box.balloons1 {
  top: -15%;
  left: 20%;
  right: 0;
}
.balloons_box.balloons2 {
  top: 73px;
  left: 46%;
  right: 0;
}
.balloons_box.balloons3 {
  top: -25%;
  right: 10%;
}
.balloons_box.balloons4 {
  bottom: -30px;
  left: 15%;
  right: 0;
}
.balloons_box.balloons5 {
  right: 15%;
  bottom: -20%;
}
.balloons_img {
  animation: balloon_animi 1.5s ease-in-out alternate infinite;
}
@keyframes balloon_animi {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(20px);
  }
}
/* ========================= We-Cover CSS ========================= */
.we_cover_content > .row {
  justify-content: space-between;
  gap: 30px 0;
}
.we_cover_info a.red_btn:hover {
  background: var(--color_red);
}
/* ========================= Quick-Contact CSS ========================= */
.quick_contact_info {
  max-width: 530px;
  margin: 0 auto;
}
.quick_contact_img img {
  animation: tel_animi 1.5s alternate infinite linear;
}
@keyframes tel_animi {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
/* ========================= Signup-Contact CSS ========================= */
:focus-visible {
  outline: 0px;
}
.signup_contact_input {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 140px;
}
.signup_contact_content > .row {
  gap: 30px 0;
}
.signup_contact_input input {
  padding: 18px 20px;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: #013a51;
  border: 0;
  border-radius: 28px 0px 0px 28px;
}
.signup_contact_input button {
  border: 0;
  background: #013a51;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  border-radius: 0px 28px 28px 0px;
}
/* ========================= About Page ========================= */
.About_banner {
  background-image: url(../images/about_banner.jpg);
}
.approach_info {
  max-width: 380px;
  margin-left: auto;
  padding: 16px 0 30px;
}
.celebrate_img {
  position: absolute;
  transform: translate(25%, -40%);
  top: 0;
  right: 0;
  z-index: 0;
}
.approach_img img,
.wedding_points_img img {
  border-radius: 10px;
}
.wedding_points_box h3 {
  font-size: 24px;
}
.wedding_points {
  max-width: 480px;
}
.wedding_points > .row {
  gap: 50px 0;
}
.wedding_points_content > .row {
  gap: 100px;
}
.possible_plan_info {
  max-width: 460px;
  margin-left: auto;
}
.possible_plan_content > .row {
  gap: 30px 0;
}
/* ========================= Contact Page CSS ========================= */
.Contact_banner {
  background-image: url(../images/contact_banner.jpg);
}
.contact_form_content > .row {
  gap: 45px;
}
.contact_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.contact_box label {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
.contact_box input,
.contact_address_box textarea {
  padding: 21px 30px;
  border: 1px solid #d9d9d9;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #476672;
}
.contact_form .form-check .form-check-label {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #476672;
  margin: 8px 0 8px 40px;
  cursor: pointer;
}
.contact_box input::placeholder,
.contact_address_box textarea::placeholder {
  color: #476672;
}
.contact_address_box {
  margin: 50px 0 35px;
}
.contact_address_box textarea {
  padding: 30px;
  height: 300px;
}
.contact_form .form-check {
  min-height: 100%;
}
.contact_form .form-check > .form-check-input {
  width: 27px;
  height: 27px;
  border: 2px solid #c0c0c0;
  border-radius: 50%;
}
.contact_form .form-check .form-check-input:checked {
  background-color: transparent;
  background-image: url(../images/check_icon.svg);
  background-size: 60% 50%;
}
.form-check-input:focus {
  box-shadow: none;
}
.contact_box_btn {
  padding-top: 30px;
}
.get_touch_contact_info p {
  margin: 32px 0 18px;
}
.get_touch_contact_info a {
  line-height: 40px;
  color: var(--color_white);
}
.get_touch_contact_info a:hover {
  color: var(--color_red);
}
.get_touch_area {
  padding-bottom: 56px;
}
.get_touch_list > .row,
.contact_address_contant > .row {
  gap: 40px 0;
}
.contact_address_area {
  padding: 57px 0 115px;
}
/* ========================= General_Event Page CSS ========================= */
form.stepform_1 > .row,
form.stepform_2 > .row {
  gap: 30px 0;
}
.event_stepform_row_2.row {
  padding: 100px 0 130px;
}
.General_event_banner {
  background-image: url(../images/general_events_banner.jpg);
}
input::-webkit-calendar-picker-indicator {
  background-image: url(../images/date-calander.png);
}
input#hold_date::after {
  content: "";
  position: absolute;
  right: 75px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 50%;
  background: #d8d8d8;
  margin: auto;
}
.stepform_content_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  height: 100%;
}
.stepform_content_box label {
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  margin-left: 20px;
  cursor: pointer;
}
.stepform_content_box input,
.stepform_content_box select,
.event_helper_details_box textarea {
  border: 1px solid #ddd;
  border-radius: 35px;
  background: transparent;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}
.stepform_content_box select {
  appearance: none;
  background-image: url(../images/select_icon.png);
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-size: 12px;
}
.stepform_content_box label span.What_This_icon {
  display: inline-flex;
  width: 17px;
  height: 17px;
  vertical-align: sub;
  margin-left: 30px;
}
input.stepform_geneve {
  position: relative;
  display: block;
  color: transparent;
}
input.stepform_geneve:invalid::before {
  color: #476672;
  content: attr(placeholder);
  pointer-events: none;
  position: absolute;
  left: 30px;
}
.stepform_content_box input::placeholder,
.event_helper_details_box textarea::placeholder,
.stepform_content_box select,
.stepform_content_box select option,
input.stepform_geneve:valid,
input.stepform_geneve:focus,
input.stepform_geneve:active {
  color: #476672;
}
input.stepform_geneve:valid::before,
input.stepform_geneve:focus::before,
input.stepform_geneve:active::before {
  display: none;
}
.toggle_filedset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-radius: 35px;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 380px;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.toggle_filedset > input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.toggle_filedset label {
  margin: 0;
  padding: 20px;
  max-width: 200px;
  width: 100%;
  color: #013a51;
  font-weight: 500;
  z-index: 1;
  cursor: pointer;
}
span.switch {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background-color: #d14852;
  border-radius: 50em;
  transition: transform 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.toggle_filedset > input[type="radio"]:checked + label {
  color: #fff;
}
.toggle_filedset > input[type="radio"]:checked + label + span.switch {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  width: 50%;
}
.event_helper_details_box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.event_helper_details_box > .toggle_filedset {
  max-width: 275px;
  height: fit-content;
}
.event_helper_details_box > p {
  max-width: 585px;
}
.event_stepform_row_3.row {
  gap: 35px 0;
  padding-top: 47px;
}
.event_helper_details_box textarea {
  min-height: 175px;
}
.quote_value_box {
  padding: 30px 0;
}
.quote_value_box > p {
  font-size: 14px;
}
.step_insurance_quote_box {
  border: 1px solid #bfbfbf;
  border-left: 0;
  border-right: 0;
  padding: 64px 0;
  margin-top: 125px;
}
.stepform_content_box label > p {
  display: inline;
  font-size: 14px;
}
.event_stepform_row_6.row,
.event_stepform_row_8.row {
  padding: 80px 0 90px;
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  box-shadow: none;
}
.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-control.is-valid,
.was-validated .form-control:valid {
  padding-right: 40px;
  background-image: url(../images/notchecked-right.png);
  background-size: 30px;
  background-position: right 17px center;
  border-color: #bfbfbf;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: url(../images/checked-right.png);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.form-check-input.is-invalid,
.was-validated .form-check-input:invalid,
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus,
.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
  border-color: #bfbfbf;
  box-shadow: none;
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: var(--color_darkblue);
}
.genral_eventlist_box {
  padding: 60px 80px 40px;
  background: #dce8ee;
  border-radius: 2px;
}
.genral_eventlist_box ul.row {
  list-style: disc;
  padding: 0 20px;
  margin: 20px;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
}
.genral_eventlist_box ul.row li {
  padding: 0;
}
form.stepform_2 > .event_stepform_row_10.row {
  gap: 20px 0;
}
.event_stepform_row_10.row {
  max-width: 779px;
  margin: 0 auto;
  padding: 100px 0 50px;
}
.stepform_checkbox_policy_box .form-check-input {
  width: 27px;
  height: 27px;
  border-radius: 35px;
  border: 1px solid #c0c0c0;
  background-position: 0px;
}

.stepform_checkbox_policy_box label.form-check-label {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: #013a51;
  margin-left: 16px;
  vertical-align: -webkit-baseline-middle;
}
.stepform_1 button {
  padding: 16px 40px;
}
.genral_event_btn_grp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.gray_btn {
  color: #000;
  background: #f3f3f3;
  gap: 60px;
}
.gray_btn:hover {
  color: #fff;
}
.gray_btn:hover svg g path {
  fill: #fff;
}

/* ========================= Dashboard CSS ========================= */
.header_adminpenal_contact {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header_adminpenal_contact p {
  font-size: 16px;
  font-weight: 700;
  line-height: 45px;
}
.admin_bg_img {
  background-image: url(../images/admin_bg_img.jpg);
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 95px 0 0;
  position: relative;
  z-index: 0;
}
.admin_upper_header {
  background: #013a51;
  color: #fff;
}
.tab_design_one .nav-tabs,
.tab_design_one li.nav-item button {
  border: 0;
}
.tab_design_one li.nav-item button {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #fff;
  padding: 20px 45px;
  border-radius: 0;
}
.tab_design_one li.nav-item button.active {
  color: #013a51;
}
.admin_logins a.login_btn {
  color: #fff;
}
.admin_tabs_content_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.admin_tabs_content {
  padding: 76px 0 100px;
}
.admin_docs_box_list > .row {
  gap: 46px;
}
.admin_policy_title_area > .row {
  gap: 20px 0;
}
.export_data_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 16px 21px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #013a51;
  border: 1px solid #013a51;
  background: transparent;
  border-radius: 35px;
}
.export_data_btn:hover {
  background-color: #fff;
  border: 1px solid #fff;
}
.admin_data_table_area tr th:last-child {
  width: 80px;
}
td.admin_table_btn.dropdown .dropdown-toggle::after {
  all: unset;
}
td.admin_table_btn.dropdown ul.dropdown-menu {
  padding: 0;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  border-radius: 0;
  background: #ebeff3;
}
td.admin_table_btn.dropdown ul.dropdown-menu a.dropdown-item {
  padding: 16px 18px;
  color: #013a51;
}
td.admin_table_btn.dropdown ul.dropdown-menu a.dropdown-item.active,
td.admin_table_btn.dropdown ul.dropdown-menu a.dropdown-item:active,
td.admin_table_btn.dropdown ul.dropdown-menu a.dropdown-item:hover {
  background-color: #fff;
  text-decoration: underline;
}
.admin_data_table_area tr th:first-child,
.admin_data_table_area tbody tr td:first-child {
  padding-left: 30px;
}
.admin_data_table_area tr th:last-child,
.admin_data_table_area tbody tr td:last-child {
  padding-right: 30px;
}
tr.table_input_field_area {
  border-bottom: 1px solid #e0e7ed;
}
tr.table_input_field_area th {
  padding: 30px 10px;
}
tr.table_upper_head th {
  padding: 25px 10px;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  color: rgb(1 58 81 / 40%);
}
tr.table_content td {
  color: #013a51;
  font-weight: 500;
}
tr.table_content td {
  font-size: 14px;
  line-height: normal;
  color: #013a51;
  font-weight: 500;
  padding: 30px 10px;
  border-bottom: 1.5px solid #e0e7ed;
}
tr.table_content .admin_table_title {
  font-size: 16px;
}
td.admin_table_btn button {
  background: transparent;
}
.admin_input_filters select {
  appearance: none;
  background-image: url(../images/options.png);
  background-position: right 20px center;
  background-size: 8px;
  background-repeat: no-repeat;
  width: 193px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #013a51;
  background-color: #fff;
  border: 1px solid #e0e7ed;
  border-radius: 35px;
  position: relative;
  cursor: pointer;
}
.admin_input_filters input.input-search {
  display: flex;
  width: 270px;
  margin: 0 auto 0 19px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 16px 20px;
  color: #013a51;
  background-color: #fff;
  border: 1px solid #e0e7ed;
  border-radius: 35px;
  background-image: url(../images/search.png);
  background-position: right 20px center;
  background-size: 18px;
  background-repeat: no-repeat;
  appearance: none;
  cursor: pointer;
}
input[type="search"]::-webkit-search-cancel-button {
  display: none;
}
/* ========================= Responsive CSS ========================= */
@media (max-width: 1500px) {
  .balloons_box.balloons1 {
    left: 12%;
  }
  .balloons_box.balloons3 {
    right: 0;
  }
  .balloons_box.balloons4 {
    left: 5%;
  }
  .balloons_box.balloons5 {
    right: 5%;
  }
}
@media (max-width: 1199px) {
  .balloons_box.balloons1 {
    left: 5%;
  }
  .balloons_box.balloons3 {
    right: -10%;
  }
  .balloons_box.balloons4 {
    bottom: -12%;
  }
  .balloons_box.balloons5 {
    right: 0;
  }
}
@media (max-width: 992px) {
  /* Header CSS */
  .navbar_content .offcanvas button.btn-close {
    display: block;
  }
  .navbar_content .offcanvas button.btn-close {
    opacity: 1;
    --bs-btn-close-bg: unset;
    padding: 0;
    width: 32px;
    height: 32px;
    margin: 15px;
  }
  div#offcanvasDarkNavbar {
    align-items: flex-end;
  }
  .navbar_content span.navbar-toggler-icon {
    opacity: 1;
  }
  .navbar_content .offcanvas button.btn-close svg {
    width: 16px;
    height: 16px;
  }
  .navbar_info {
    height: -webkit-fill-available;
    justify-content: space-between;
    margin: 10px 0 30px;
    align-items: flex-start;
    flex-direction: column;
  }
  ul.navbar-nav {
    border: 0;
    padding: 0;
    width: 100%;
  }
  .header_contact {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px;
    gap: 15px;
  }
  ul.navbar-nav a.nav-link {
    padding: 12px !important;
  }
  li.nav-item.dropdown:hover ul.dropdown-menu {
    display: none;
  }
  .navbar-nav .dropdown-menu {
    width: 95%;
    margin: 0 auto;
    display: none;
  }
  .dropdown-menu.show {
    display: block !important;
  }
  ul.navbar-nav::after {
    all: unset;
  }
  /* Footer */
  .footer_midd_area {
    margin: 60px 0;
  }
  /* Banner CSS */
  .banner_content {
    text-align: center;
    margin: 0 auto;
    align-items: center;
  }
  a.scroll_btn {
    left: 45%;
  }
  /* How-Work CSS */
  .how_work_content_information,
  .approach_info {
    max-width: 100%;
    margin: 0;
  }
  /* ABOUT PAGE CSS */
  .approach_content > .row {
    gap: 30px;
  }
  .approach_info {
    padding: 0;
  }
  .wedding_points {
    margin: 0 auto;
  }
  .wedding_points_info_area > .row,
  .wedding_points_content > .row {
    gap: 40px;
  }
  /* Genral-Event Page CSS */
  .stepform_content_box label span.What_This_icon {
    margin-left: 10px;
  }
  .event_stepform_row_2.row,
  .step_insurance_quote_box,
  .event_stepform_row_6.row,
  .event_stepform_row_8.row,
  .event_stepform_row_10.row {
    padding: 60px 0;
  }
  .step_insurance_quote_box {
    margin-top: 80px;
  }
  .event_helper_details_box > p {
    max-width: 420px;
  }
  .stepform_content_box label > p {
    display: block;
  }
  .genral_eventlist_box {
    padding: 40px;
  }
}

@media (max-width: 860px) {
  .balloons_box.balloons2 {
    top: 15px;
    left: 36%;
  }
  .balloons_box.balloons3 {
    top: -15%;
    right: 0%;
  }
  .balloons_img img {
    height: 267px;
  }
}
@media (max-width: 767px) {
  /* Conatct Page CSS */
  .contact_address_box {
    margin: 0;
  }
  .contact_box_btn {
    padding: 0;
  }
  form.row.contact_form {
    gap: 30px;
  }
  .contact_box {
    gap: 10px;
  }
  .contact_address_box textarea {
    height: 200px;
  }
  .contact_form .form-check {
    display: flex;
    align-items: center;
  }
  .contact_form .form-check .form-check-label {
    margin-left: 15px;
    width: fit-content;
  }
  .contact_address_area {
    padding: 57px 0;
  }
}
@media (max-width: 575px) {
  .heading_text_1 {
    font-size: 35px;
    line-height: 40px;
  }
  .heading_text_2 {
    font-size: 28px;
  }
  /* footer CSS */
  .footer_midd_area {
    margin: 40px 0;
  }
  .footer_bottom_area span {
    display: none;
  }

  /* How-Work CSS */
  .exclusion_list_content > .row,
  .wedding_points > .row {
    gap: 30px;
  }
  ul.how_work_tabs li {
    padding: 15px 0 15px 15px;
  }
  .exclusion_bottom_contact p {
    font-size: 20px;
    line-height: 24px;
  }
  .balloons_box.balloons3 {
    top: 56%;
    right: -10%;
    filter: blur(3px);
  }
  .balloons_box.balloons4 {
    bottom: -12%;
    filter: blur(3px);
  }
  .balloons_box.balloons5 {
    display: none;
  }
  /* Genral-Event Page CSS */
  .event_stepform_row_2.row,
  .step_insurance_quote_box,
  .event_stepform_row_6.row,
  .event_stepform_row_8.row,
  .event_stepform_row_10.row {
    padding: 30px 0;
  }
  .step_insurance_quote_box {
    margin-top: 40px;
  }

  .genral_eventlist_box ul.row {
    margin: 20px -12px 0;
    line-height: 25px;
    gap: 10px;
  }
  /* Admin CSS */
  .header_adminpenal_contact {
    gap: 0;
    flex-direction: column;
  }
  .admin_bg_img {
    padding-top: 130px;
    background-position: 95% 0px;
  }
  .tab_design_one li.nav-item button {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
  }
  .admin_tabs_content_area {
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: center;
    gap: 15px;
  }
}
@media (max-width: 350px) {
  /* Admin CSS */
  .header_adminpenal_contact p {
    font-size: 14px;
  }
  .tab_design_one li.nav-item button {
    width: 150px;
  }
}

