@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
picture {
  display: block;
}
abbr,
address,
article,
aside,
audio,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
}
body,
html {
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #013e39 #000;
}
body {
  margin: 0;
  padding: 0;
  font: 400 14px "DM Sans", sans-serif;
  line-height: 20px;
  color: #020b1e;
  background-color: #ffffff;
  overflow-x: hidden;
}
div,
form,
h1,
h2,
h3,
h4,
h5,
h6,
img,
input,
label,
li,
ol,
option,
p,
select,
td,
textarea,
tr,
ul {
  padding: 0;
  margin: 0;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a {
  padding: 0;
  margin: 0;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  color: #444444;
}
a:hover {
  text-decoration: none;
}
img {
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  max-width: 100%;
  height: auto;
}
.clr,
.spacer {
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
}
.clearfix:after,
.clearfix::before {
  content: "";
  margin: 0;
  padding: 0;
  display: block;
  clear: both;
}
/* ===== commmon css starts from here ===== */
body {
  font: 400 17px "Open Sans", sans-serif;
}

.section-title h2::after {
  display: none;
}
.btn-get-started i {
  margin: 0 7px 0 0;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: #000;
}
.hero .btn-get-started:hover {
  color: #fff;
  background: #000;
  box-shadow: none;
}

/* =====  commmon css starts from here  ===== */

/*========== header and banner css starts from here ============*/
.header {
  padding: 10px 0px 0px 0px;
}
.header .logo img {
  max-height: 100%;
  margin-right: 0;
}
.navmenu a {
  font: 600 17px "Open Sans", sans-serif;
  line-height: 24px;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  background: #1e80c3;
  font-size: 17px;
  line-height: 24px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 0;
  transition: 0.3s;
  border-radius: 0px;
}
.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  color: #1e80c3;
}
.hero {
  padding: 0;
  min-height: 100%;
  background-color: #c8ecfc;
}
.hero h1 {
  font: 400 20px "Open Sans", sans-serif;
  line-height: 30px;
  text-align: left;
}
.hero h1 span {
  font: 700 45px "Open Sans", sans-serif;
  line-height: 52px;
  color: #000;
}
.med-grid {
  display: grid;
  grid-template-columns: 40% 50%;
  gap: 10px;
  position: relative;
}
.med-grid .left-side {
  padding: 100px 0 60px 0;
}
#hero.hero {
  display: block;
}
.leave-text {
  margin: 14px 0;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #fff;
  align-items: center;
  clip-path: polygon(0.31% 1%, 99.42% 6.77%, 94.29% 98.31%, 0% 98.31%);
}
.leave-text aside {
  padding: 10px 0 10px 15px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.leave-text aside:nth-child(2) {
  background: #d9d9d9;
  justify-content: center;
  align-items: center;
  clip-path: polygon(17.29% 4.39%, 98.84% 6.77%, 88.89% 100%, 3.86% 100%);
}
.leave-text h6 {
  font-size: 16px;
  font-weight: 600;
  color: #252525;
}

.hero p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #484848;
}
.hero .certificate {
  font-size: 30px;
  line-height: 45px;
}
.hero .certificate span {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 55px;
  position: relative;
  padding: 0 0 0 10px;
  display: block;
  overflow: hidden; /* Ensures the content is not revealed until the animation */

  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
.hero .certificate span::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 187px;
  bottom: 0;
  height: 50px;
  left: 0;
  z-index: -1;
}
.misc-text ul {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.misc-text li {
  position: relative;
  padding: 0 0 0 18px;
  color: #1c1c1c;
}
.misc-text li::after {
  position: absolute;
  content: "\f00c";
  font-family: "fontawesome";
  top: 0;
  left: -12px;
  border: 1px solid #1c1c1c;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
}
.hero .btn-get-started {
  color: #fff;
  background: #1e80c3;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  box-shadow: none;
  border-radius: 0;
}
.med-grid .right-side .banner {
  margin-right: calc(50% - 50vw);
  height: 100%;
  clip-path: polygon(10.84% 0px, 100% 0px, 100% 100%, 0.18% 100%);
}
.med-grid .right-side .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .featured {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 50%;
}
.hero .featured figure {
  width: 80px;
  display: inline-block;
  background: #f2f2f2;
  border: 10px solid #fff;
  height: 80px;
  line-height: 60px;
  position: absolute;
  top: -45px;
}
.hero .featured img {
  width: 65px;
  height: 42px;
}
.hero .featured aside {
  padding: 60px 20px 20px 20px;
  background: rgba(0, 0, 0, 0.3);
  text-align: left;
  backdrop-filter: blur(2px);
  height: 250px;
}
.hero .featured [class*="col-"] h6 {
  padding: 6px 12px;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  background: #1e80c3;
  display: inline-block;
}
.hero .featured [class*="col-"] h5 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 34px;
}
.hero .featured p {
  color: #fff;
  font-size: 13px;
  line-height: 16px;
  margin: 10px 0 0 0;
}
.bannerPart .feature-item h5 {
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  color: #000;
}
.bannerPart .feature-list .feature-item {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #c1c1c1;
  position: relative;
  padding-left: 25px;
}
.bannerPart .feature-list {
  margin-top: 15px;
  padding: 0 110px 0 0;
}
.bannerPart.hero p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #484848;
  line-height: 20px;
}
.bannerPart .feature-list .feature-item::after {
  position: absolute;
  content: "\f00c";
  font-family: "fontawesome";
  top: 4px;
  left: -1px;
  border: 1px solid #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 14px;
  text-align: center;
  font-size: 9px;
  color: #000;
}
.bannerpart .right-part .heading {
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
}
.bannerpart .right-part .heading span {
  display: block;
  font-size: 35px;
  line-height: 37px;
  padding: 17px 0 8px 0;
  color: #c2323f;
}
.bannerpart .right-part .heading em {
  display: block;
  font-size: 37px;
  line-height: 43px;
  color: #1e80c3;
}
.bannerpart .right-part .subheding {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 22px 0 0 0;
  border-left: 3px solid #c2323f;
  padding: 0 0 0 9px;
}
.bannerpart .right-part li {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d5d8dc;
  padding-left: 26px;
}
.bannerpart .right-part li:last-child {
  border-bottom: none;
}
.bannerpart .right-part li::after {
  position: absolute;
  content: "\f00c";
  font-family: "fontawesome";
  top: 4px;
  left: -1px;
  border: 1px solid #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 14px;
  text-align: center;
  font-size: 9px;
  color: #000;
}
.bannerpart .right-part .point-list {
  padding: 30px 0 10px 0;
}
.bannerpart .banner-content p {
  font-size: 15px;
  line-height: 22px;
}
.bannerpart .right-part {
  padding: 0 0 0 45px;
}
.bannerpart.section {
  padding: 100px 0 0px 0;
}
.bannerpart img {
  width: 100%;
}
.bannerpart {
  position: relative;
}
.bannerpart .btn-part {
  position: absolute;
  left: 4.9%;
  bottom: 97px;
}
.bannerpart .btn-part a {
  height: 48px;
  display: inline-block;
  line-height: 47px;
  background: #1e80c3;
  padding: 0 22px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}
.bannerpart .btn-part a:hover {
  background-color: #000;
  color: #fff;
}
.bannerpart .btn-part i {
  margin-right: 6px;
  font-size: 15px;
}


/*========== header and banner css ends here ============*/
/*========== header and banner css starts here ============*/
.bannerSection.section {
  padding: 100px 0 0px 0;
}
.bannerSection {
  position: relative;
}
.bannerSection .banner-text-wrap {
  display: grid;
  grid-template-columns: 4.2fr 2.5fr 3.5fr;
  position: relative;
  background: #ebf9ff;
}
.bannerSection .left-part {
  background: #c8ecfc;
  padding: 55px 0 55px 16px;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}
.bannerSection .right-part {
  background: #ebf9ff;
  padding: 76px 0 0 0;
}
.bannerSection .last-part {
  padding: 147px 0 0 0;
  background: #fff;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  align-content: end;
}
.bannerSection .heading {
  color: #252525;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
.bannerSection .heading span {
  color: #111111;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 39px;
  line-height: 49px;
  display: block;
  padding-bottom: 7px;
}
.bannerSection .cartificate-list {
  max-width: 346px;
}
.bannerSection .leave-list {
	position: relative;
	grid-template-columns: repeat(3, 1fr);
	display: grid;
	margin-bottom: 42px;
	height: 58px;
	background: #36adff;
  overflow: hidden;
}
/* .bannerSection .leave-list::before {
  background: url(../images/list1bg.png);
  width: 730px;
  height: 69px;
  content: "";
  position: absolute;
  left: 0px;
  top: 5px;
  background-size: 72%;
  background-repeat: no-repeat;
} */
.bannerSection .leave-list li {
	position: relative;
	color: #fff;
	font-weight: 600;
	z-index: 9;
	width: 128px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	position: relative;
}
.bannerSection .leave-list li::before {
	background: url(../images/slide.png);
	width: 40px;
	height: 67px;
	content: "";
	position: absolute;
	right: -44px;
	top: 1px;
	background-repeat: no-repeat;
	background-size: 84%;
}
.bannerSection .leave-list li:last-child:before {
  content: inherit;
} 
/* .bannerSection .leave-list li:nth-child(1) {
  left: -17px;
}
.bannerSection .leave-list li:nth-child(2) {
  left: -37px;
}
.bannerSection .leave-list li:nth-child(3) {
  left: -50px;
} */
.bannerSection .subheading {
  font-size: 28px;
  font-weight: 400;
  line-height: 46px;
}
.bannerSection .content p {
  font-size: 26px;
  font-weight: 800;
  line-height: 36px;
  color: #111111;
  max-width: 315px;
}
.bannerSection .cartificate-list li {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #074763;
  margin-bottom: 36px;
  position: relative;
  padding: 0 0 0 38px;
  position: relative;
}
.bannerSection .cartificate-list li::before {
  background: url(../images/tick1.png);
  width: 28px;
  height: 24px;
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  background-repeat: no-repeat;
}
.bannerSection .btn-part a {
  height: 48px;
  display: inline-block;
  line-height: 47px;
  background: #1e80c3;
  padding: 0 22px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 26px;
}
.bannerSection .btn-part i {
  margin-right: 6px;
  font-size: 15px;
}
.bannerSection .price {
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  color: #000;
  display: inline-block;
  padding: 12px 10px 9px 10px;
  margin: 7px 0 11px 0px;
}
.bannerSection .price span {
  font-size: 35px;
  font-weight: 800;
  line-height: 1px;
  color: #000;
  padding: 0 0 0 11px;
}
/*========== header and banner css ends here ============*/



/*========== Mobile banner css starts here ============*/

.mobileBannerSection.section{
  padding: 80px 0px 0px 0px;
}

.mobileBannerSection .mobileBannerContent{
  background-color: #C4DEEF;
  padding: 30px 0px;
}
.mobileBannerSection .mobileBannerContainer{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 10px;
}

.mobileBannerTextWrap, .mobileBannerImageWrap{
  flex: 1;
  width: 50%;
}

.mobileBannerSection .heading {
  color: #111111;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  padding: 0px 10px;
}


.mobileBannerContent .leave-list{
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.mobileBannerContent .leave-list li{
  font-size: 14px;
  color: #252525;
  font-weight: 700;
  text-wrap: nowrap;
}

.mobileBannerContent .leave-list li .divider{
  padding-left: 5px;
}

.mobileBannerTextWrap .subheading{
  padding: 0px 0px 10px 0px;
  font-size: 18px;
  color: #252525;
  font-weight: 400;
}

.mobileBannerTextWrap .subheadingContent{
  padding: 0px 0px 10px 0px;
  font-size: 18px;
  color: #252525;
  font-weight: 400;
}

.mobileBannerTextWrap .price {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #252525;
  display: inline-block;
  padding: 0px 0px 0px 10px;
}
.mobileBannerTextWrap .price span {
  font-size: 25px;
  font-weight: 800;
  line-height: 1px;
  color: #252525;
  padding: 0 0 0 11px;
}

.mobileBannerTextWrap .content{
  padding: 10px 0px;
  font-size: 18px;
  color: #252525;
  font-weight: 400;
}

.mobileBannerSection .mobileBannerBtnPart{
	text-align: center;
}

.mobileBannerSection .mobileBannerBtnPart a{
  height: 48px;
  display: inline-block;
  line-height: 47px;
  background: #1e80c3;
  padding: 0 22px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
}


.mobileBannerBottomPart{
  background: #ebf9ff;
  padding: 20px 10px 20px 10px;
}

.mobileBannerBottomPart .cartificate-list li {
  font-size: 16px;
  font-weight: 700;
  line-height: 33px;
  color: #074763;
  margin-bottom: 10px;
  position: relative;
  padding: 0 0 0 38px;
  position: relative;
}
.mobileBannerBottomPart .cartificate-list li::before {
  background: url(../images/tick1.png);
  width: 28px;
  height: 24px;
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  background-repeat: no-repeat;
}

.mobileBannerPointsContainer .subheading{
  padding: 0px 0px 10px 0px;
  font-size: 18px;
  color: #252525;
  font-weight: 400;
}

.mobileBannerPointsContainer{
  padding: 10px 10px 0px 10px;
}

.mobileBannerPointsContainer .mobileBannerPoints{
	max-width: 57%;
}

.mobileBannerPointsContainer .mobileBannerPoints .cartificate-list li {
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  color: #074763;
  margin-bottom: 10px;
  position: relative;
  padding: 0 0 0 38px;
  position: relative;
}
.mobileBannerPointsContainer .mobileBannerPoints .cartificate-list li::before {
  background: url(../images/tick2.png);
  width: 28px;
  height: 24px;
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  background-repeat: no-repeat;
}
/*========== Mobile banner css ends here ============*/


/*========== partners css starts here ============*/
.partners-title {
  font: 400 17px "Open Sans", sans-serif;
}
.partners .row {
  align-items: center;
}
.partners {
  background-color: #f6f6f7;
}
.partners.section {
  padding: 20px 0;
}
.partner_slider .item {
  display: flex;
  align-items: center;
}
.partner_slider figure {
	width: 220px;
	height: 100px;
	border: 1px solid #0b0d0f;
	padding: 10px;
	border-radius: 4px;
}
.partner_slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .custom-logo-link {
  max-width: 240px;
}
.header .container-fluid {
  justify-content: space-between;
}
.bannerpart .row {
  align-items: center;
}
/*========== partners css ends here ============*/


/*=========Baneer footer section ====== ====*/


.banner_footer_section{
   /*background-color: #f6f6f7;*/
   background-color: transparent;
   padding: 20px 0px; 
   margin-left: -59px;
}

.banner_footer_image_container{
	display: flex;
    flex-wrap: no-wrap;
  	gap: 20px;
  	justify-content: center;
  	align-items: center;
  
}

.banner_footer_image_wrapper{
  	
  	text-align: center;
	
}





/*========== Banner footer section end =======*/





/*==========  medical css starts here ============*/
.pricing .section-title {
  text-align: left;
  padding: 0;
}
.pricing .section-title h2 {
  font: 700 35px "Open Sans", sans-serif;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  color: #111111;
}
.pricing h3 {
  font: 500 22px "Open Sans", sans-serif;
  line-height: 28px;
  margin-bottom: 0;
  color: #494949;
}
.pricing .pricing-item {
  background-color: #fff;
  padding: 0;
  border-radius: 0;
  box-shadow: 1px 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.pricing-item figure {
	width: 100%;
	height: 241px;
	position: relative;
	overflow: hidden;
	transition: all 0.7s;
	text-align: center;
}
.pricing-item figure::after {
  content: inherit;
}
.pricing-item img {
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
  transform: scale(1, 1);
  transition: all 2s;
  /* width: 100%; */
}
.pricing-item aside {
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dddd;
}
.pricing-item:hover figure::after {
  width: auto;
  height: auto;
  margin: 0;
  transition: all 0.5s;
}
.pricing-item:hover img {
  transform: scale(1.2, 1.2);
  transition: all 2s;
}

.category_name h3 {
  color: #111111;
}
.category_name p {
	font: 400 20px "Open Sans", sans-serif;
	line-height: 24px;
	min-height: 50px;
}

.pricing .category_name .description{
	font-size: 17px;
}

.category_price h5 {
  font: 400 17px "Open Sans", sans-serif;
  color: #111111;
  text-align: right;
}
.category_price p {
  font: 600 17px "Open Sans", sans-serif;
  line-height: 26px;
  color: #111111;
}
.certificate-button {
  padding: 26px;
}
.pricing .cta-btn {
  background-color: #111111;
  color: var(--contrast-color);
  display: block;
  text-align: center;
  padding: 0;
  border-radius: 0;
  font: 500 16px "DM Sans", sans-serif;
  transition: 0.3s;
  margin-top: 0;
  margin-bottom: 0;
  width: 180px;
  line-height: 40px;
}
.pricing .cta-btn:hover {
  transition: 0.3s;
  background: #1e80c3;
  color: #fff;
}
/*========== medical css ends here ============*/

/*========== About css starts here ============*/
.about .content {
  text-align: center;
}
.about .content .who-we-are {
  text-transform: uppercase;
  margin: 0 auto 15px auto;
  color: #1e80c3;
  font: 500 20px "Open Sans", sans-serif;
}
.about .content h3 {
  font: 500 32px "Open Sans", sans-serif;
  width: 820px;
  margin: 0 auto;
  color: #111111;
  text-transform: capitalize;
}
.about .content p {
  font: 400 17px "Open Sans", sans-serif;
  line-height: 27px;
  color: #353535;
  width: 985px;
  margin: 30px auto;
}
.about {
  padding-bottom: 60px;
}
/*========== About css ends here ============*/

/*========== how it works css starts here ============*/
.features {
  background: #f5f5f5;
}
.features article h3 {
  font: 500 17px "Open Sans", sans-serif;
  line-height: 27px;
  color: #111111;
  margin: 0 0 5px 0;
}
.features article .sub_heading {
  font: 500 20px "Open Sans", sans-serif;
  line-height: 26px;
  color: #1a1a1a;
}
.features article h2 {
  color: #111111;
}
.features .how-it-count {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  font: 600 30px "Open Sans", sans-serif;
  display: inline-block;
  background-color: #1e80c3;
  color: #fff;
  line-height: 80px;
  margin: 0 0 30px 0;
  outline: 8px solid #c8ecfc;
  animation: glow 1s infinite alternate;
}
@keyframes glow {
  from {
    box-shadow: 0 0 15px -15px #c8fafc;
  }
  to {
    box-shadow: 0 0 15px 15px #c8ecfc;
  }
}
#howitworks aside figure {
  width: 200px;
  height: 200px;
  line-height: 197px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 15px;
}
#howitworks aside figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#howitworks aside .count {
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  font: 600 19px "Open Sans", sans-serif;
  background-color: #29b0ec;
  color: #fff;
  line-height: 48px;
  margin: 0 0 30px 0;
  outline: 8px solid #c8ecfc;
}
.features .how-it-title {
  font: 600 20px "Open Sans", sans-serif;
  line-height: 26px;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}
.features .how-it-content {
  font: 400 16px "Open Sans", sans-serif;
  line-height: 26px;
}
.features aside {
  margin: 100px 0 0 0;
}
.features aside ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  position: relative;
  z-index: 1;
}
.features aside ul::before {
  position: absolute;
  content: inherit;
  background: url(../images/Vector_arrow.png);
  top: -16%;
  left: 14%;
  width: 930px;
  height: 145px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100%;
}
.features aside ul li {
  background: transparent;
  position: relative;
}
.features aside ul li::before {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 31px;
  line-height: 37px;
  position: absolute;
  top: 40%;
  right: -14%;
  color: #29b0ec;
  transform: translateY(50%);
}
.features aside ul li:nth-child(3)::before {
  content: inherit;
}
.bounce-in {
  animation: bounce-in 2s ease infinite;
}
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/*==========  how it works css ends here ============*/

/*========== faq section starts here ============*/
.faq .faq-sub {
  font: 400 18px "Open Sans", sans-serif;
  color: #505050;
}
.faq .faq-head {
  font: 600 40px "Open Sans", sans-serif;
  color: #111111;
}

.faq .faq-container {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
  margin: -27px 0 0px 0px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  color: #111;
  width: 435px;
  padding: 0 0 0 50px;
}
.faq .faq-container .faq-item h3::after {
  position: absolute;
  content: "\2b";
  font-family: "fontawesome";
  top: 0;
  right: -50px;
  transition: 0.1s;
}
.faq .faq-container .faq-item.faq-active h3::after {
  position: absolute;
  content: "\f068";
  font-family: "fontawesome";
  transition: 0.1s;
}
.faq .faq-container .faq-item h3:hover {
  color: #111;
}
.faq .faq-container .faq-item.faq-active h3 {
  color: #1e80c3;
}
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.faq .faq-container .faq-item .content {
  display: flex;
  gap: 10px;
}
.faq .faq-container .faq-item span {
  font-size: 18px;
  width: 30px;
  height: 30px;
  background: #1e80c3;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
  color: #fff;
  display: block;
}
.faq .faq-container .faq-item .faq-content {
  transition: 0.4s;
  padding-left: 52px;
  height: 0;
}
.faq .faq-container .faq-item.faq-active .faq-content {
  transition: 0.4s;
  height: auto;
}
.faq .faq-container .faq-item .faq-content p {
  font-size: 14px;
  line-height: 20px;
  margin: 5px 0 0 0;
}
/*========== faq section ends here ============*/

/*========== contact css starts here ============*/
.contact_us_section{
  background-color: #36adff;
}
.contact_us_section .content {
  text-align: center;
}
.contact_us_section .content .contact_us_subheading {
  display: none;
  text-transform: uppercase;
  margin: 0 auto 15px auto;
  color: #FFFFFF;
  font: 500 20px "Open Sans", sans-serif;
}
.contact_us_section .content .contact_us_heading {
  display: none;
  font: 700 32px "Open Sans", sans-serif;
  max-width: 820px;
  margin: 0 auto;
  color: #FFFFFF;
  text-transform: capitalize;
}
.contact_us_section .content p, .content-wrap p {
  font: 600 17px "Open Sans", sans-serif;
  line-height: 27px;
  color: #FFFFFF;
  max-width: 985px;
  margin: 30px auto;
}

.contact_us_section .content a{
 color: #FFFFFF;
}

.contact_us_section .content .content-wrap{
  text-align: left;
  font: 600 17px "Open Sans", sans-serif;
  line-height: 27px;
  color: #FFFFFF;
  max-width: 985px;
  margin-top: 30px;
}

.contact_us_section .content .content-wrap h3 {
  font: 700 32px "Open Sans", sans-serif;
  margin: 0 auto;
  color: #FFFFFF;
  text-transform: capitalize;
}


.contact_us_section {
  padding-bottom: 60px;
}

/*========== contact css ends here ============*/

/*========== footer section starts here ============*/
.footer {
  background: #ddd;
  padding-bottom: 0;
}
.footer .credits {
  margin-top: 0px;
  color: #111111;
  font: 400 16px "Open Sans", sans-serif;
}
.footer .copyright p {
  margin-bottom: 0;
  color: #111111;
  font: 400 16px "Open Sans", sans-serif;
}
.footer .row {
  align-items: center;
}
/*========== footer section ends here ============*/

/*========== medi-leave certificte css starts ============*/
.certificates {
  padding: 50px 0;
  background: #f9f9f9;
}
.certificates .form_heading {
  font: 600 26px "Open Sans", sans-serif;
  line-height: 36px;
  color: #1966F4;
  margin: 20px 0 30px 0;
}
.certificates .form-row {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
}
.certificates .form-row article {
  padding: 10px 40px 40px 40px;
}
.certificates .form-top {
  padding: 30px 40px 0 40px;
  gap: 4px;
}
.certificates .form-top label {
  font: 700 16px "Open Sans", sans-serif;
  line-height: 30px;
}
.certificates .form-top input {
  border: 0;
  padding: 0 0 0 5px;
  background: #ffff;
  font: 600 16px "Open Sans", sans-serif;
  line-height: 30px;
  outline: none;
  width: 80%;
}
.certificates article .row {
  row-gap: 14px;
}
.certificates article input {
  outline: none;
  box-shadow: none;
  border-color: #ccc;
  width: 100%;
  padding: 10px 0px 10px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #5e5e5e !important;
}
.certificates article input#invalidCheckWork {
  border: 2px solid #1e80c3;
  border-radius: 3px !important;
}
.certificates article select {
  outline: none;
  box-shadow: none;
  border-color: #ccc;
  width: 100%;
  padding: 10px 0px 10px 10px;
  border: 1px solid #ccc !important;
  border-radius: 5px;
  color: #5e5e5e !important;
}
.certificates article .form-control:focus {
  box-shadow: none !important;
  border-color: #ccc !important;
}
.certificates article aside {
  padding: 25px 30px;
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
  margin: 0 0 26px 0;
}
.certificates article aside.qn_class input {
  max-width: auto;
  padding: 0;
  width: auto;
  height: 40px;
  padding: 0 10px;
}
.certificates article aside label {
  font: 700 16px "Open Sans", sans-serif;
  line-height: 26px;
  padding: 0 0 10px 0;
  position: relative;
}
.certificates article aside label.rq_fields {
  padding: 0 0 10px 22px;
}
.certificates article aside label.rq_fields::before {
  position: absolute;
  content: "\f101";
  font-family: "fontawesome";
  font-size: 16px;
  top: 0;
  left: 0px;
  color: #828282;
}
.certificates article aside.qn_class .form-check {
  position: relative;
  height: 35px;
  line-height: 35px;
  text-align: center;
  min-height: 100%;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  width: auto;
  /* padding: 0 20px; */
}
.certificates article aside.qn_class .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
  margin-left: 0 !important;
  margin-top: 0 !important;
}
.certificates article aside.qn_class .form-check.active label {
  background: #1e80c3;
  color: #fff;
  border: 1px solid #1e80c3;
  transition: all 0.5s;
}
.certificates article aside.qn_class .form-check label {
  width: 75px;
  height: 35px;
  display: block;
  color: #000;
  line-height: 32px;
  text-align: center;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  max-width: max-content;
  width: auto;
  padding: 0 15px;
}
.certificates article aside.qn_class .wrap {
	display: flex;
	column-gap: 14px;
	padding: 0 0 0 20px;
	flex-wrap: wrap;
	row-gap: 12px;
}
.certificates article .row.qn_class {
  row-gap: 30px;
  margin: 20px 0 0 0;
}
.certificates article .row.qn_class [class*="col-"] {
  padding: 0;
}
.certificates .form-row h6 {
  font-size: 14px;
}
.certificates .consent {
  margin: 20px 0 0 0;
  display:flex;
  flex-wrap:wrap;
}
.certificates .form-check h6 {
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 15px;
}
.certificates .consent p {
  font-size: 14px;
  padding: 0 0 17px 0px;
}
.certificates .consent p:empty {
  display: none;
}
.certificates .consent .form-check-input {
  width: 1em;
  padding: 0;
  box-shadow: none;
}
.certificates .consent .form-check {
  float: left;
}
.certificates .consent .btn_wrap {
  margin: 30px 0 0 0;
}
.certificates .consent .btn_wrap .btn {
  background: #1e80c3;
  border: 1px solid #1e80c3;
}
.certificates .consent .check-point {
  margin: 7px 0 20px 0;
}
.certificates .consent .check-point label {
  font-size: 14px;
  line-height: 22px;
}
.certificates .form-top span {
  font: 700 16px "Open Sans", sans-serif;
  line-height: 30px;
  color: #1966F4;
  padding: 0 0 0 6px;
}


#leaveForm #inputleavedate {
  max-width: 250px;
  padding: 10px;
  margin: 0 0 0 22px;
}
#leaveForm #inputStartday {
  max-width: 100%;
  padding: 10px;
}
#leaveForm #inputEndday {
  max-width: 100%;
  padding: 10px;
}

#leaveForm .form_message{
  font-size: 14px;
  display: flex;
  gap: 10px;
  padding: 20px 40px 20px 20px;
  background-color: #f2fbf1;
  max-width: fit-content;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

#leaveForm .form_message i{
	color: #35b74b;
}

/*========== medi-leave certificte css ends ============*/

/* ======privacy policy page design starts here====== */
.privacySection h2 {
  font: 700 35px "Open Sans", sans-serif;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  color: #111111;
}
.privacySection {
  padding: 140px 0 0px 0;
}
.privacySection h4 {
  font: 700 19px "Open Sans", sans-serif;
  margin-bottom: 9px;
  padding-bottom: 0;
  position: relative;
  color: #111111;
  line-height: 30px;
}
.privacySection p {
  font: 400 15px "Open Sans", sans-serif;
  line-height: 24px;
  color: #353535;
  padding-bottom: 16px;
}
.privacySection ul li,
.privacySection ol li {
  font: 400 15px "Open Sans", sans-serif;
  line-height: 24px;
  color: #353535;
  padding-bottom: 8px;
}
.privacySection ul li {
  list-style: disc;
  position: relative;
}
.privacySection ul,
.privacySection ol {
  padding-left: 14px;
  margin-bottom: 10px;
}
.privacySection ol ol {
  padding-left: 40px;
}
.privacySection ol {
  list-style: decimal;
}
.privacySection p strong {
  color: #000;
  font-size: 15px;
}
.footer .footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  column-gap: 14px;
}
footer .footer-nav li a {
  font-weight: 600;
}
/* =====privacy policy page design starts here===== */
/* =====Thank you page design starts here===== */
.thankyouSection {
  /*height: 100vh;*/
  padding: 50px 0 100px 0;
}
.thankyouSection h1 {
  font: 500 32px "Open Sans", sans-serif;
  max-width: 820px;
  margin: 0 auto;
  color: #111111;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 20px;
}
.thankyouSection p {
  text-align: center;
  font: 400 17px "Open Sans", sans-serif;
  line-height: 27px;
  color: #353535;
  max-width: 1000px;
  margin: 17px auto;
}
.thankyouSection .ctn-btn .btn {
  color: white;
  background: #1966F4;
  font-size: 17px;
  line-height: 24px;
  padding: 0px 25px;
  /*margin: 0 0 0 30px;*/
  border-radius: 100px;
  transition: 0.3s;
  height: 45px;
  line-height: 41px;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
}
.thankyouSection .ctn-btn .btn:hover {
  background-color: #C7D943;
  color: black;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
}
.thankyouSection .ctn-btn {
  text-align: center;
  margin-top: 35px;
}
.thankyouSection figure {
  text-align: center;
  max-width: 100px;
  margin: 0 auto 18px auto;
}

.thankyouSection .twoDayContentWrap p{
  text-align: left !important;
  padding: 0px 20px;
}
/* =====Thank you page design ends here===== */
#leaveForm .form-check ul {
  padding: 0 0 17px 40px;
}
#leaveForm .form-check ul li {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 13px;
  list-style: disc;
}
#leaveForm .form-check a {
  color: #1e80c3;
}
.about .content-wrap p {
  text-align: justify;
}
/* ======Indrani Naskar 13/06/2024 css starts here===== */
.certificates .StripeElement {
  margin-bottom: 15px;
  height: 40px;
  line-height: 45px;
  border: 1px solid #bcbcbc;
  padding: 0 10px;
}
.certificates input#card_holder_name{
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
  font-size: 15px;
  height: 45px;
  padding: 0 10px;
}
.certificates .StripeElement .__PrivateStripeElement {
  position: relative;
  top: 8px;
}
.leave-form .wrap{
  position: relative;
}
.leave-form .wrap .certificate-error-msg {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	font-size: 13px;
	line-height: 16px;
	width: 100%;
}
.certificates article aside.qn_class .formactive .form-check {
	margin-bottom: 0 !important;
}
/* ======Indrani Naskar 13/06/2024 css ends here===== */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  /* banner starts */
  .hero .certificate span {
    font-size: 35px;
  }
  /* banner ends */
  /* ===== home-page css starts ====== */

  .features aside ul::before {
    top: -10%;
    background-size: 86%;
  }
  .faq .faq-container .faq-item h3 {
    font-size: 14px;
    width: 370px;
    padding: 0 0 0 50px;
    margin: -30px 0 0px 0px;
  }
  .faq .faq-container .faq-item h3::after {
    right: -40px;
  }
  /* ===== home-page css ends ====== */
}

/* 
Form 
Sourav Chatterjee
*/
.certificates article aside.qn_class .form-check.active label {
  background: #ffe600;
  color: #000;
  border: 1px solid #ffe600;
  transition: all 0.5s;
}

/*
Additional css for certificate form
*/


#leaveForm .anySymtomsList ol{
  padding-left: 30px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  padding-bottom: 10px;
  list-style: disc;
}




/* =====Leave Form Choose symptoms field css starts here===== */

#leaveForm .radio-work,
#leaveForm .radio-university,
#leaveForm .radio-carer,
#leaveForm .other-option-checkbox-wrapper,
#leaveForm .other-option-Ucheckbox-wrapper,
#leaveForm .minor-option-checkbox-wrapper,
#leaveForm .minor-option-Ucheckbox-wrapper{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
} 

#leaveForm .radio-work .form-check-label,
#leaveForm .radio-university .form-check-label,
#leaveForm .radio-carer .form-check-label,
#leaveForm .other-option-checkbox-wrapper label#other-option,
#leaveForm .other-option-Ucheckbox-wrapper label#other-option-university,
#leaveForm .minor-option-checkbox-wrapper label#minor-injury-option,
#leaveForm .minor-option-Ucheckbox-wrapper label#minor-injury-option-university{
  padding-bottom: 0px !important;
}

#leaveForm .radio-work .form-check-label,
#leaveForm .radio-university .form-check-label,
#leaveForm .radio-carer .form-check-label{ 
  max-width: 600px;
}

#leaveForm .radio-work input,
#leaveForm .radio-university input,
#leaveForm .radio-carer input,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption{
  height: 16px !important;
  width: 16px;
}


#leaveForm .radio-work input[type="radio"].symtoms-option,
#leaveForm .radio-work input[type="radio"].symtoms-option-dynamic,
#leaveForm .radio-work input[type="radio"].migraine-option,
#leaveForm .radio-carer input[type="radio"],
#leaveForm .radio-university input[type="radio"].symtoms-university-option,
#leaveForm .radio-university input[type="radio"].symtoms-university-dynamic,
#leaveForm .radio-university input[type="radio"].migraine-university-option,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption{
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  padding: 0.1rem;
  border: 2px solid #ccc;
  border-radius: 50%;
}

#leaveForm .radio-work input[type="radio"].symtoms-option::before,
#leaveForm .radio-work input[type="radio"].symtoms-option-dynamic::before
#leaveForm .radio-work input[type="radio"].migraine-option::before,
#leaveForm .radio-carer input[type="radio"]::before,
#leaveForm .radio-university input[type="radio"].symtoms-university-option::before,
#leaveForm .radio-university input[type="radio"].symtoms-university-dynamic::before,
#leaveForm .radio-university input[type="checkbox"].migraine-university-option::before,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption::before,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption::before,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption::before,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption::before{
  content: "";
}

#leaveForm .radio-work input[type="radio"].symtoms-option:checked,
#leaveForm .radio-work input[type="radio"].symtoms-option-dynamic:checked,
#leaveForm .radio-work input[type="radio"].migraine-option:checked,
#leaveForm .radio-carer input[type="radio"]:checked,
#leaveForm .radio-university input[type="radio"].symtoms-university-option:checked,
#leaveForm .radio-university input[type="radio"].symtoms-university-dynamic:checked,
#leaveForm .radio-university input[type="radio"].migraine-university-option:checked,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption:checked,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption:checked,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption:checked,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption:checked
{
  background-color: #0d6efd; 
  border-color: #0d6efd; 
}

#leaveForm .radio-work input[type="radio"].symtoms-option:checked::before,
#leaveForm .radio-work input[type="radio"].symtoms-option-dynamic:checked::before,
#leaveForm .radio-work input[type="radio"].migraine-option:checked::before,
#leaveForm .radio-carer input[type="radio"]:checked::before,
#leaveForm .radio-university input[type="radio"].symtoms-university-option:checked::before,
#leaveForm .radio-university input[type="radio"].symtoms-university-dynamic:checked::before,
#leaveForm .radio-university input[type="radio"].migraine-university-option:checked::before,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption:checked::before,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption:checked::before,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption:checked::before,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption:checked::before{
  content: "";
  line-height: 11px;
}

#leaveForm .radio-work,
#leaveForm .radio-school,
#leaveForm .radio-carer,
#leaveForm .other-option-checkbox-wrapper,
#leaveForm .other-option-Ucheckbox-wrapper,
#leaveForm .minor-option-checkbox-wrapper,
#leaveForm .minor-option-Ucheckbox-wrapper{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
} 

#leaveForm .radio-work .form-check-label,
#leaveForm .radio-school .form-check-label,
#leaveForm .radio-carer .form-check-label,
#leaveForm .other-option-checkbox-wrapper label#other-option,
#leaveForm .other-option-Ucheckbox-wrapper label#other-option-school,
#leaveForm .minor-option-checkbox-wrapper label#minor-injury-option,
#leaveForm .minor-option-Ucheckbox-wrapper label#minor-injury-option-school{
  padding-bottom: 0px !important;
}

#leaveForm .radio-work .form-check-label,
#leaveForm .radio-school .form-check-label,
#leaveForm .radio-carer .form-check-label{ 
  max-width: 600px;
}

#leaveForm .radio-work input,
#leaveForm .radio-school input,
#leaveForm .radio-carer input,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption{
  height: 16px !important;
  width: 16px;
}


#leaveForm .radio-work input[type="radio"].symtoms-option,
#leaveForm .radio-work input[type="radio"].symtoms-option-dynamic,
#leaveForm .radio-work input[type="radio"].migraine-option,
#leaveForm .radio-carer input[type="radio"],
#leaveForm .radio-school input[type="radio"].symtoms-school-option,
#leaveForm .radio-school input[type="radio"].symtoms-school-dynamic,
#leaveForm .radio-school input[type="radio"].migraine-school-option,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption{
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  padding: 0.1rem;
  border: 2px solid #ccc;
  border-radius: 50%;
}

#leaveForm .radio-work input[type="radio"].symtoms-option::before,
#leaveForm .radio-work input[type="radio"].symtoms-option-dynamic::before
#leaveForm .radio-work input[type="radio"].migraine-option::before,
#leaveForm .radio-carer input[type="radio"]::before,
#leaveForm .radio-school input[type="radio"].symtoms-school-option::before,
#leaveForm .radio-school input[type="radio"].symtoms-school-dynamic::before,
#leaveForm .radio-school input[type="checkbox"].migraine-school-option::before,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption::before,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption::before,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption::before,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption::before{
  content: "";
}

#leaveForm .radio-work input[type="radio"].symtoms-option:checked,
#leaveForm .radio-work input[type="radio"].symtoms-option-dynamic:checked,
#leaveForm .radio-work input[type="radio"].migraine-option:checked,
#leaveForm .radio-carer input[type="radio"]:checked,
#leaveForm .radio-school input[type="radio"].symtoms-school-option:checked,
#leaveForm .radio-school input[type="radio"].symtoms-school-dynamic:checked,
#leaveForm .radio-school input[type="radio"].migraine-school-option:checked,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption:checked,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption:checked,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption:checked,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption:checked
{
  background-color: #0d6efd; 
  border-color: #0d6efd; 
}

#leaveForm .radio-work input[type="radio"].symtoms-option:checked::before,
#leaveForm .radio-work input[type="radio"].symtoms-option-dynamic:checked::before,
#leaveForm .radio-work input[type="radio"].migraine-option:checked::before,
#leaveForm .radio-carer input[type="radio"]:checked::before,
#leaveForm .radio-school input[type="radio"].symtoms-school-option:checked::before,
#leaveForm .radio-school input[type="radio"].symtoms-school-dynamic:checked::before,
#leaveForm .radio-school input[type="radio"].migraine-school-option:checked::before,
#leaveForm .other-option-checkbox-wrapper input[type="radio"]#customOption:checked::before,
#leaveForm .other-option-Ucheckbox-wrapper input[type="radio"]#customUOption:checked::before,
#leaveForm .minor-option-checkbox-wrapper input[type="radio"]#customMinorOption:checked::before,
#leaveForm .minor-option-Ucheckbox-wrapper input[type="radio"]#customMinorUOption:checked::before{
  content: "";
  line-height: 11px;
}

/*
#leaveForm #other-option, 
#leaveForm #other-option-university, 
#leaveForm #minor-injury-option, 
#leaveForm #minor-injury-option-university{
  padding: 0px 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  background-color: #FFFFFF;
  border-radius: 5px;
  line-height: 32px;
}

#leaveForm #other-option: hover, 
#leaveForm #other-option-university: hover, 
#leaveForm #minor-injury-option: hover,
#leaveForm #minor-injury-option-university: hover{
 background-color: #FFE600;
}

#leaveForm #customInputUniversityWrapper input, 
#leaveForm #customInputWrapper input, 
#leaveForm #minorInjuryInputWrapper input,
#leaveForm #minorInjuryInputUniversityWrapper input{
  width: 100%;
} */

/* =====Leave Form Choose symptoms field css ends here===== */


/* =====Leave Form gender field css starts here===== */
.gender-dropdown {
	position: relative;
	display: inline-block;
}
.gender-dropdown select {
	padding-right: 2.5rem;
}
.gender-dropdown::after {
	content: "\f078"; /* Unicode for down arrow */
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	pointer-events: none;
  	font-size: 14px;
}      

/* =====Leave Form gender field css ends here===== */


/* =====Form Preview page design starts here===== */
.formPreviewSection {
  height: 100%;
  padding: 50px 50px 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.preview_wrapper{
  max-width: 1000px;
}

.preview_header{
  padding: 30px 0px;
}

.preview_header h1 {
  font: 500 32px "Open Sans", sans-serif;
  max-width: 820px;
  margin: 0 auto;
  color: #111111;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 10px;
}

.header_description p {
  text-align: center;
  font: 400 17px "Open Sans", sans-serif;
  line-height: 27px;
  color: #353535;
  max-width: 1000px;
}

.preview_content{
  background-color: #1966F4;
  padding: 20px;
  margin-bottom: 30px;
  color: white;
  border-radius: 5px;
}

.field_wrapper{
  padding-bottom: 20px;
}

.field_wrapper .question{
  font-weight: bold;
  padding-bottom: 5px;
}

.preview_wrapper .preview_btn_wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.preview_wrapper .preview_btn_wrapper .preview_submit_btn {
  background-color: #1966F4;
  color: white;
  padding: 10px 20px 10px 20px;
  border: 0px;
  border-radius: 100px;
}
.preview_wrapper .preview_btn_wrapper .preview_submit_btn:hover {
  background-color: #C7D943;
  color: black;
}

.preview_wrapper .preview_btn_wrapper .preview_back_btn {
  background-color: white;
  color: black;
  padding: 10px 20px 10px 20px;
  border: 1px solid #1E80C3;
  border-radius: 100px;
}

.formPreviewSection aside {
  padding: 25px 30px;
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
  margin: 0 0 26px 0;
}

.formPreviewSection .form_heading {
  font: 700 26px "Open Sans", sans-serif;
  line-height: 36px;
  color: #1966F4;
  margin: 20px 0 10px 0;
}

.formPreviewSection aside label {
    font: 700 16px "Open Sans", sans-serif;
    line-height: 26px;
    padding: 0 0 10px;
    position: relative;
}


.formPreviewSection aside input {
  outline: none;
  box-shadow: none;
  border-color: #ccc;
  width: 100%;
  padding: 10px 0px 10px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #5e5e5e !important;
}


.formPreviewSection aside input#card_holder_name, .formPreviewSection aside input#promo_code{
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
  font-size: 15px;
  height: 45px;
  padding: 0 10px;
}

.formPreviewSection aside input#promo_code{
	max-width: 200px;
}


.formPreviewSection aside .promo_code_wrapper{
  display: flex;
  gap: 10px;
}

.formPreviewSection aside  .promo_price_wrapper{
	font-size: 14px;
}

.formPreviewSection aside .promo_code_wrapper .promo_code_btn {
  min-width: 190px;
  background-color: #1966F4;
  color: white;
  padding: 10px 20px 10px 20px;
  border: 0px;
  border-radius: 5px;
}

.formPreviewSection .StripeElement {
  margin-bottom: 15px;
  height: 40px;
  line-height: 45px;
  border: 1px solid #bcbcbc;
  padding: 0 10px;
}

.formPreviewSection .StripeElement .__PrivateStripeElement {
  position: relative;
  top: 8px;
}

#carerFormSubmit:disabled {
    cursor: not-allowed;
    opacity: 0.6; 
}


/* =====Form Preview page design ends here===== */


