/*General*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Playfair+Display:wght@400;700;900&family=Galada&display=swap:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@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: "Barlow", sans-serif;
  color: #444444;
}

a {
  color: #1977cc;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #283672;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  transform: rotate(270deg);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #283672;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
}

#header .logo img {
  display: inline-block;
  position: relative;
  top: 5px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.3s;
  padding: 5px 2px;
  color: #ffffff;
}
.navbar a:hover {
  text-decoration: underline;
  color: #ffffff;
  opacity: 0.8;
}
.navbar .active,
.navbar .active:focus {
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 46px;
  cursor: pointer;
  display: none !important;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 28px;
  right: 12px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 90px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height: 240px;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 15px;
  color: #2c4964;
  border: none;
}
.navbar-mobile ul li a {
  padding: 10px 20px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ffffff;
}
.mobile-nav-toggle svg {
  fill: #283672;
  width: 20px;
  height: 20px;
}
.navbar-mobile a:hover svg,
.navbar-mobile .active svg,
.navbar-mobile li:hover > a svg {
  display: none;
}
.navbar-mobile a:hover svg.d-none,
.navbar-mobile .active svg.d-none,
.navbar-mobile li:hover > a svg.d-none {
  display: block !important;
  fill: #ffffff;
}

/*Header Section*/
.header-bnr {
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0px;
  right: 0px;
}
.header-bnr .btn-grp a {
  padding: 9px 22px;
  border-radius: 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.header-bnr .btn-grp a.bg {
  background-color: #ffffff;
  color: #283672;
}
.header-bnr .btn-grp .after-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-bnr .btn-grp .after-login a.dropdown-item {
  color: #283672;
}
.header-bnr .btn-grp .after-login .dropdown {
  background-color: transparent;
  border: none;
  margin-left: 10px;
}
.header-bnr .btn-grp .after-login .dropdown .dropdown-toggle {
  padding: 0px;
  display: inline-block;
}
.header-bnr .btn-grp .after-login .dropdown .dropdown-toggle img {
  width: 30px;
  border-radius: 100%;
  margin-right: 5px;
}
.header-bnr .btn-grp .after-login .dropdown .dropdown-menu a:hover {
  border-radius: 0px;
  background-color: #340871;
  color: #ffffff;
}
.header-bnr .btn-grp .after-login a.cart-icon {
  position: relative;
}
.header-bnr .btn-grp .after-login a.cart-icon svg {
  fill: #ffffff;
  width: 26px;
}
.header-bnr .btn-grp .after-login a.cart-icon span {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #340871;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 17px;
  top: -5px;
  right: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.top-sec {
  background: url("../img/home-top-bnr.png") no-repeat;
  background-size: cover;
  padding: 200px 0px 250px;
  position: relative;
  margin: 0px;
  background-position: right;
}
.top-sec::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(
    73deg,
    #283672 31.64%,
    rgba(40, 54, 114, 0) 84.58%
  );
  /*background: linear-gradient(100deg, #283672 4.36%, rgba(125, 35, 33, 0.50) 47.27%, rgba(226, 52, 52, 0.14) 76.98%, rgba(11, 29, 47, 0.20) 91.64%, rgba(0, 0, 0, 0.36) 99.58%);*/
}
.top-sec span {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.top-sec h1 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 76px;
  margin: 10px 0 20px 0;
}
.top-sec p {
  color: #ffffff;
  margin: 10px 0 50px 0;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.top-sec .row {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.our-services {
  padding: 80px 12px 0px;
}
.our-services {
  background: url("../img/services/bg.png") no-repeat center/cover;
}
/*.our-services .row .col-lg-3{*/
/*  background: url('../img/services/bg.png') no-repeat center/cover, linear-gradient(#313E76, #313E76);*/
/*}*/
/*.our-services .row .col-lg-3:nth-child(1){*/
/*  background: url('../img/services/bg.png') no-repeat center/cover, linear-gradient(#313E76, #7D2321);*/
/*}*/
.our-services .hdng-wrap h6 {
  color: #4e4d56;
  font-size: 26px;
  font-weight: 400;
}
.our-services .hdng-wrap {
  text-align: center;
}
.our-services .hdng-wrap h6 span {
  color: #ffffff;
  border-radius: 100px;
  background: #283672;
  display: inline-block;
  padding: 4px 8px;
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.our-services .hdng-wrap h2 {
  color: #283672;
  text-align: center;
  font-size: 61px;
  font-weight: 700;
  line-height: 83px;
  font-family: "Playfair Display", serif;
}
.our-services .wrap {
  text-align: center;
  padding: 50px 0px;
  margin-top: -100px;
  margin-bottom: 70px;
}
.our-services .wrap .img-wrap img {
  width: auto;
}
.our-services .img-wrap {
  text-align: center;
}
.our-services .wrap .content-wrap h6 {
  color: #283672;
  text-align: center;
  font-size: 28px;
  line-height: 32px;
  font-weight: 400;
  font-family: "Galada", cursive;
}
.our-services .wrap .content-wrap p {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.our-services .wrap .content-wrap a {
  display: flex;
  width: 147px;
  height: 40px;
  padding: 5px 27px;
  margin: auto;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 35px;
  background: #283672;
  box-shadow: 3px 3px 0px 0px #939a9f;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.our-events {
  padding: 100px 0px 80px;
  background: url("../img/events-bg.png");
  position: relative;
}
.our-events .hdng-wrap h6 {
  color: #4e4d56;
  font-size: 20px;
  font-weight: 400;
}
.our-events .hdng-wrap h6 span {
  color: #ffffff;
  border-radius: 100px;
  background: #283672;
  display: inline-block;
  padding: 4px 8px;
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.our-events .event-swiper {
  margin-top: 20px;
  margin-bottom: 50px;
}
.our-events .hdng-wrap h2 {
  color: rgba(59, 59, 59, 0.98);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0 30px;
}
.our-events .hdng-wrap a,
.our-events a.see-more {
  border-radius: 1000px;
  border: 2px solid #283672;
  padding: 12px;
  color: #283672;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.8px;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 193px;
  display: flex;
  justify-content: center;
}
.our-events .event {
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  /*-webkit-transform:scale(0.8);*/
  transform: scale(1);
  transition: 0.3s;
}
/*.our-events .event-swiper {*/
/*  padding: 180px 0px;*/
/*}*/
.our-events .event-swiper .swiper-slide {
  height: auto !important;
}
.our-events .event.swiper-slide-next,
.our-events .event.swiper-slide-prev {
  transform: scale(1.5);
  z-index: 10;
}
.our-events .event.swiper-slide-active {
  /*-webkit-transform:scale(1);*/
  /*-moz-transform:scale(1);*/
  transform: scale(2);
  z-index: 20;
}
.our-events .event::after {
  content: "";
  opacity: 0.8;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-radius: 0px 0px 50px 50px;
  background: linear-gradient(180deg, rgba(40, 54, 114, 0) 0%, #283672 100%);
}
.our-events .event.featured {
  height: 400px;
}
.our-events .event.featured::after {
  content: "";
  opacity: 0.8;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(
    180deg,
    rgba(50, 63, 118, 0.69) 0%,
    rgba(125, 35, 33, 0.69) 100%
  );
}
.our-events .event .content-wrap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
}
.our-events .event .content-wrap .arrow-right {
  position: absolute;
  right: 0px;
}
.our-events .event.featured .content-wrap {
  bottom: 40px;
  left: 40px;
}
.our-events .event .content-wrap span {
  display: block;
  color: #ffffff;
  /* font-family: Barlow; */
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08px;
}
.our-events .event .content-wrap span {
  display: block;
  color: #ffffff;
  /* font-family: Barlow; */
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08px;
  opacity: 0.6;
  margin-top: 5px;
}
.our-events .event .content-wrap a {
  color: #ffffff;
  margin: 15px 0px 0px;
  display: inline-block;
}
.our-events .event .content-wrap h6 {
  color: #ffffff;
  /* font-family: Barlow; */
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.24px;
}
.our-events .event.featured .content-wrap a:last-child {
  display: block;
  margin: 0px;
}
.our-events .event-swiper .event .img-wrap img {
  width: 100%;
}
.our-events .swiper-button-prev {
  left: -35px;
}
.our-events .swiper-button-next {
  right: -35px;
}
.our-events .swiper-button-prev,
.our-events .swiper-button-next {
  width: 80px;
  height: 80px;
  bottom: -30px;
  top: auto;
}
.our-events .swiper-button-prev::after {
  background: url("../img/next-icon.png") no-repeat;
  content: "";
  height: 80px;
  width: 80px;
  transform: rotate(180deg);
}
.our-events .swiper-button-next::after {
  background: url("../img/next-icon.png") no-repeat;
  height: 80px;
  width: 80px;
  content: "";
}
.our-events .swiper-pagination-bullet-active {
  background: #283672;
  width: 20px;
  border-radius: 10px;
}
.our-events .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px;
}

/*--------------------------------------------------------------
# Vidoes
--------------------------------------------------------------*/
.our-vidoes {
  padding-top: 40px;
}
.our-vidoes .video-wrap {
  border-radius: 30px 30px 0px 30px;
  overflow: hidden;
  position: relative;
}
.our-vidoes .content-wrap {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 455px;
  /*padding: 64px;*/
  padding: 35px 40px 75px 40px;
  border-radius: 30px;
  background: #051928;
}
.our-vidoes .content-wrap.no-img{
    position:static;
    width:100%;
}
.our-vidoes .content-wrap h6 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0px;
}
.our-vidoes .content-wrap span {
  color: #5d778c;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: underline;
}
.our-vidoes .content-wrap p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin: 20px 0px;
}
.our-vidoes .play-btn {
  margin: 0 auto;
  position: absolute;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  cursor: pointer;
}
.our-vidoes .content-wrap a {
  display: inline-block;
  padding: 14px 30px;
}
.img-wrap img.thumbnail {
  width: 100%;
  border-radius: 30px 30px 0px 0px;
}
.img-wrap iframe {
  width: 100%;
  border-radius: 30px 30px 0px 0px;
}
.our-vidoes .more-series .contnt-wrap {
  text-align: center;
  margin: 30px 0px;
  padding: 0px 30px;
  /*border-left:1px solid rgb(255 255 255 / 16%);*/
}
/*.our-vidoes .more-series .col-md-6:nth-child(1), .our-vidoes .more-series .col-md-6:nth-child(2){*/
/*  border-bottom:1px solid rgb(255 255 255 / 16%);*/
/*}*/
/*.our-vidoes .more-series .col-md-6:nth-child(3) .contnt-wrap, .our-vidoes .more-series .col-md-6:nth-child(1) .contnt-wrap{*/
/*  border-left:none;*/
/*}*/
.our-vidoes .more-series {
  /*padding: 110px 30px 120px;*/
  padding:130px 40px 120px;
  /*background: url('../img/more-vide-bg.png') no-repeat center/cover, linear-gradient(#313E76, #313E76);*/
  background: url("../img/video-bg.png") no-repeat;
  background-size: cover;
  /*margin-top: -150px;*/
  margin-top:-180px;
  position: relative;
}
.our-vidoes .more-series.no-img{
    margin-top:-150px;
}
.our-vidoes .more-series h3 {
  /* font-family: Barlow; */
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}
.our-vidoes .more-series p {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 16px 0px;
}
.our-vidoes .more-series a {
  color: #051928;
  display: inline-block;
  width: 125px;
  height: 35px;
  padding: 0px;
  font-size: 14px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Help
--------------------------------------------------------------*/
.help {
  padding: 80px 0px 40px;
  background: url("../img/events-bg.png") no-repeat;
}
.help .img-wrap {
  border-radius: 50px;
  background: #ebebeb;
  overflow: hidden;
  padding-left: 10px;
}
.help .img-wrap img {
  width: 100%;
}
.help .content-wrap span {
  color: #000000;
  /* font-family: Barlow; */
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
}
.help .content-wrap h3 {
  color: #2e2e2e;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 63.984px;
  margin: 0px;
  margin-bottom: 10px;
}
.help .content-wrap p {
  color: #808080;
  /* font-family: Barlow; */
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin: 0px;
}
.help .count-wrap {
  margin-top: 50px;
}
.help .count-wrap .wrap {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.help .count-wrap .wrap .icon-wrap {
  border-radius: 8px;
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 64px;
  background: rgba(49, 31, 255, 0.06);
}
.help .count-wrap .wrap h4 {
  color: #283672;
  text-align: center;
  /* font-family: Barlow; */
  font-size: 48px;
  font-weight: 700;
  line-height: 63.984px;
  margin: 0px 20px;
}
.help .count-wrap .wrap h6 {
  color: #2e2e2e;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  margin: 0px;
  margin-left: 5px;
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.ourClients {
  padding: 40px 0px 100px;
  background: url("../img/events-bg.png") no-repeat;
}
.ourClients .content-wrap {
  width: 510px;
  text-align: center;
  margin: auto;
  margin-bottom:50px;
}
.ourClients .content-wrap h3 {
  color: #2e2e2e;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 63.984px;
  margin: 0px;
  margin-bottom: 10px;
}
.ourClients .content-wrap p {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin: 0px;
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Get in Touch
--------------------------------------------------------------*/
.get-in-touch {
  padding: 40px 0px 100px;
  background: url("../img/events-bg.png");
}
.get-in-touch .content-wrap {
  width: 510px;
  text-align: center;
  margin: auto;
}
.get-in-touch .content-wrap h3 {
  color: #2e2e2e;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 63.984px;
  margin: 0px;
  margin-bottom: 10px;
}
.get-in-touch .content-wrap p {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin: 0px;
  margin-top: 10px;
}
.get-in-touch .form-group label {
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.get-in-touch .form-group .form-control {
  border: 1px solid #d2d2f9;
  font-size: 16px;
  padding: 14px 15px;
  color: #2e2e2e;
}
.get-in-touch .form {
  margin-top: 50px;
}
.get-in-touch .form-group {
  margin-bottom: 30px;
  text-align: left;
}
.get-in-touch button.btn-divine-bg-blue {
  margin: auto;
  margin-top: 20px;
  text-align: center;
  /*width: 180px;*/
  /*height: 55px;*/
  width: 200px;
  height: 65px;
  border: none;
  display: block;
  font-size: 20px;
  font-weight: 400;
}

footer {
  /*opacity: 0.95;*/
  padding-top: 30px;
  /*background: linear-gradient(180deg, #283672 0%, #7d2321 100%);*/
  background-color: #283672;
}
footer p {
  font-size: 15px;
  color: #cacaca;
}
footer h5 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0px 0px 15px;
}
footer ul li a {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #cacaca;
  margin-top: 15px;
  display: inline-block;
}
footer .social-wrap a {
  margin-right: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
footer .social-wrap a svg {
  fill: #cacaca;
}
footer ul li a:hover {
  color: #cacaca;
}
footer .form-control {
  margin-top: 15px;
}
footer form .form-control,
footer form .form-control:focus {
  background-color: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #bfbfbf;
  outline: none;
  box-shadow: none;
  border-color: #cacaca;
  padding: 12px 15px;
  border-radius: 50px;
}
footer form .form-control::placeholder {
  color: #bfbfbf;
}
footer form .btn-divine-bg-wht {
  border: none;
  margin-top: 15px;
  color: #051928;
  text-transform: uppercase;
  font-weight: 700;
}
footer form .btn-divine-bg-wht:hover {
  color: #051928;
}
footer .border-top {
  border-top: 1px solid rgb(255 255 255 / 16%) !important;
}
footer .border-bottom {
  border-bottom: 1px solid rgb(255 255 255 / 16%) !important;
}

/*--------------------------------------------------------------
# Become Speaker
--------------------------------------------------------------*/
.speaker-sec {
  padding: 50px 0px;
}
.speaker-top {
  background: url("../img/speaker-bg.png") no-repeat;
  background-size: cover;
  padding: 60px 0px;
  position: relative;
  text-align: center;
}
.speaker-top::after {
  background-color: rgba(125, 35, 33, 0.69);
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}
.speaker-top h1 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.speaker-top h1 b {
  font-weight: 900;
}
.speaker-top p {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  width: 50%;
  margin: auto;
}
.search-wrap {
  position: relative;
  margin-bottom: 35px;
}
.search-wrap .form-control {
  padding: 25px 26px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0px 4px 13px 0px rgba(153, 153, 153, 0.25);
  color: #999;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 400;
  border: none;
}
.search-wrap a {
  position: absolute;
  right: 25px;
  font-family: "Barlow", sans-serif;
  top: 11px;
  padding: 16px 32px;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.search-wrap a svg {
  fill: #ffffff;
  margin-left: 10px;
}
.card-list {
  margin-bottom: 30px;
}
.card-list .card {
  margin-top: 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 11px 0px rgba(153, 153, 153, 0.25);
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  border: none;
}
.card-list .card .img-wrap {
  border-radius: 5px;
}
.card-list .card h2 {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
}
.card-list .card span.custom-span {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  top: -12px;
  display: inline-block;
}
.card-list .card span.price {
  color: #283672;
  font-style: italic;
  font-weight: 600;
  margin-right: 10px;
  margin-top: 20px;
}
.card-list .card p {
  color: #666666;
  font-family: Barlow;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin: 0px;
  margin-top: 10px;
}
.card-list .speaker-detail {
  padding-left: 10px;
  width: 100%;
  position: relative;
}
.card-list .speaker-detail .view-wrap {
  position: absolute;
  right: 0;
  top: 0px;
}
.card-list .speaker-detail a.btn-divine-bg-blue {
  padding: 8px 35px;
}
.speaker-sec nav {
  display: flex;
  justify-content: end;
}
.speaker-sec .pagination {
  margin-top: 20px;
}
.speaker-sec .pagination .page-item {
  margin: 0px 5px;
}
.card-list .speaker-detail .location,
.card-list .speaker-detail .state {
  position: static;
  width: 100%;
}
.speaker-sec .pagination .page-item .page-link {
  border-radius: 10px;
  border: 1px solid #efefef;
  display: flex;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1e;
  line-height: 24px;
}
.speaker-sec .pagination .page-item .page-link svg {
  fill: #1c1c1e;
  width: 10px;
  height: 24px;
}
.speaker-sec .pagination .active > .page-link,
.speaker-sec .pagination .page-link.active {
  background-color: #283672;
  border-color: #283672;
  color: #ffffff;
}
.filter-wrap {
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  padding: 30px;
}
.filter-wrap .reset-fltr h3 {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}
.filter-wrap .reset-fltr a {
  color: #283672;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-decoration-line: underline;
}
.filter-wrap .reset-fltr {
  margin-bottom: 25px;
}
.filter-wrap .field-wrap .wrap {
  margin-bottom: 15px;
}
.filter-wrap .field-wrap .wrap .form-control,
.filter-wrap .field-wrap .wrap .form-select {
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #e5e5ea;
  color: #3a3a3c;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.filter-wrap .field-wrap .wrap .form-control:focus,
.filter-wrap .field-wrap .wrap .form-select:focus {
  outline: none;
  box-shadow: none;
}
.filter-wrap .field-wrap .price {
  margin-top: 22px;
}
.filter-wrap .field-wrap .price h6 {
  color: #1c1c1e;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.filter-wrap .field-wrap .price select {
  width: 45%;
}
.filter-wrap .field-wrap .btn-divine-bg-blue {
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  margin-top: 22px;
}
.speakerModal .card-list {
  margin-bottom: 0px;
}
.speakerModal .card {
  box-shadow: none;
  margin-top: 0px;
  padding: 0px;
}
.speakerModal .card-list .card span {
  position: static;
  margin-top: 0px;
  margin-right: 20px;
}
.speakerModal .card-list .speaker-detail {
  padding-left: 20px;
}
.ratings svg {
  width: 19px;
  height: 19px;
}
.ratings svg.filled {
  fill: #e39f1d;
}
.speakerModal .btn-close {
  width: 60px;
  height: 60px;
  background-color: #1d1e3c;
  position: absolute;
  top: -20px;
  right: -20px;
  border-radius: 100%;
  z-index: 1;
  opacity: 1;
}
.speakerModal .btn-close svg {
  fill: #ffffff;
  width: 20px;
}
.speakerModal .modal-body {
  padding: 30px;
}
.speakerModal .card-list .card h2 {
  font-size: 26px;
}
.speakerModal .services {
  margin-top: 30px;
  margin-bottom: 40px;
}
.speakerModal .services .info h4 {
  color: #000000;
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  line-height: 39px;
}
.speakerModal .services .info p {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0px;
}
.speakerModal .services .info .video-wrap {
  margin-top: 20px;
  margin-bottom: 5px;
}
.speakerModal .services .info .video-wrap .video {
  position: relative;
}
.speakerModal .services .info .video-wrap .video a {
  width: 45px;
  height: 45px;
  border-radius: 1000px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  transform: translateY(-50%);
  margin: 0 auto;
  line-height: 45px;
  text-align: center;
}
.speakerModal .services .info .video-wrap .video img {
  max-width: 100%;
}
.speakerModal .services .info .details-wrap .wrap {
  padding: 10px 0px;
  border-top: 1px solid #dddddd;
}
.speakerModal .services .info .details-wrap .wrap:nth-child(1) {
  border: none;
}
.speakerModal .services .info .details-wrap .wrap span {
  color: #000000;
  font-size: 16px;
  font-weight: 400; 
  line-height: 24px;
  font-family: 'barlow';
}
.speakerModal .services .info .details-wrap .wrap h5 {
  color: #3485FF;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  font-family: 'Times New Roman', Times, serif;
}
.services .availability {
  border-radius: 20px;
  border: 1px solid #dddddd;
  background: #ffffff;
}
.services .availability .hdr-wrap {
  background: linear-gradient(180deg, #283672 0%, #7d2321 100%);
  padding: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.services .availability .hdr-wrap h4 {
  color: #ffffff;
  font-size: 22px;
  /* font-style: italic; */
  font-weight: 600;
  line-height: 33px;
}
.services .availability .slots {
  border-radius: 20px;
  border: 1px solid #dddddd;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Adjust the gap between spans */
}
@media only screen and (min-width: 600px) {
  .services .availability .slots {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.services .availability .slots a.btn-divine-bg-blue {
  padding: 5px 30px;
}
.services .availability .slots span {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  text-align: center; 
}

.services .availability h5 {
  color: #283672;
  font-family: Barlow;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  margin: 20px 20px 0px;
  padding-bottom: 2px;
  border-bottom: 1px solid #283672;
  display: inline-block;
}
.services .availability .date-time {
  padding: 25px 20px 30px;
}
.services .availability .date-time h6 {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 10px;
}
.services .availability .date-time .time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.services .availability .date-time .time .form-select {
  color: #283672;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  padding: 14px 10px;
}
.services .availability .date-time .time span {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
.services .availability .date-time .form-control {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #dddddd;
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
.services .availability .date-time a.btn-divine-bg-blue {
  margin-top: 20px;
  font-size: 18px;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 0px;
}
.reviews-cont .add-review-wrap {
  margin-bottom: 30px;
}
.add-review-wrap h5 {
  color: #2e2e2e;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin: 0px 0px 10px;
}
.add-review-wrap h5 small {
  font-weight: 400;
  font-size: 13px;
}
.add-review-wrap h3 {
  color: #2e2e2e;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  margin: 0px 0px 2px;
}
.add-review-wrap .form-wrap {
  margin: 10px 0px;
}
.add-review-wrap .btn-divine-bg-blue {
  display: inline-block;
}
.add-review-wrap textarea {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 16px 20px;
}
.add-review-wrap textarea:focus {
  outline: none;
  box-shadow: none;
}
.reviews-cont h4 {
  color: #2e2e2e;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0px 0px 10px;
}
.reviews-cont .review {
  padding: 20px;
  border-top: 1px solid #dddddd;
  display: flex;
  align-items: start;
}
.reviews-cont .review .img-wrap {
  width: 64px;
  height: 64px;
  line-height: 64px;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 24px;
}
.reviews-cont .review .img-wrap img {
  max-width: 100%;
}
.reviews-cont .review .detail h6 {
  color: #2e2e2e;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0px;
}
.reviews-cont .review .detail span {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.reviews-cont .review .detail p {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0px;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# Booking a Speaker
--------------------------------------------------------------*/
.speaker-book-sec {
  padding: 100px 0px 50px;
  text-align: center;
  position: relative;
}
.step-loader {
  width: 60px;
  height: 60px;
  border: 1px solid #283672;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: left;
  align-items: end;

  position: absolute;
  top: 60px;
  left: 48%;
}
.step-loader:after {
  content: "";
  position: absolute;
  background-color: #340871;
  transition: 0.5s;
}
.step-loader.step-1:after {
  border-bottom-left-radius: 50px;
  width: 30px;
  height: 30px;
}
.step-loader.step-2:after {
  border-top-left-radius: 50px;
  width: 30px;
  height: 58px;
  border-bottom-left-radius: 50px;
}
.step-loader.step-3:after {
  right: 0px;
  border-top-right-radius: 50px;
  width: 30px;
  height: 35px;
  top: 0px;
}
.step-loader.step-4:after {
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
.speaker-book-sec h2 {
  color: #283672;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin: 30px 0px 20px;
}
.speaker-book-sec .form-wrap {
  margin-bottom: 30px;
}
.speaker-book-sec .form-wrap label {
  color: #000000;
  font-size: 22px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 12px;
}
.speaker-book-sec .steps .form-wrap .form-control,
.speaker-book-sec .form-wrap .form-select {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 16px 20px;
}
.speaker-book-sec .form-wrap .input-group .form-control {
  border-right: 0px;
}
.speaker-book-sec .form-wrap .input-group-text {
  background-color: transparent;
}
.speaker-book-sec .form-wrap .input-group-text svg {
  width: 25px;
  height: 25px;
  fill: #283672;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #283672;
}
.speaker-book-sec .timepicker-picker .btn-primary {
  background-color: #283672;
}
.select2-container--default .select2-selection--single {
  height: auto;
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
}
.select2-container--default .select2-selection--multiple {
  padding: 12px 10px;
  text-align: left;
}
.select2-container--default .select2-search--inline .select2-search__field {
  height: 30px;
  margin-top: 0px;
  line-height: 30px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  padding: 16px 20px;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #340871;
  color: #ffffff;
  padding: 3px 5px 5px 20px;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:hover,
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:focus {
  background-color: #340871;
  color: #ffffff !important;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #ffffff;
  border: none;
  font-size: 20px;
  left: 3px;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  margin-top: 0px;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #283672;
  color: #ffffff;
}
.spinner-border {
  color: #283672;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
}
.speaker-book-sec .steps .form-wrap .form-control:focus,
.speaker-book-sec .form-wrap .form-select:focus {
  outline: none;
  box-shadow: none;
}
.speaker-book-sec .steps .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.speaker-book-sec .steps .btns a {
  width: 48%;
}
.speaker-book-sec .steps .btn-divine-bg-blue,
.speaker-book-sec .steps .btn-divine-bg-wht {
  border-radius: 10px;
  justify-content: center;
  font-size: 20px;
  padding: 15px 10px;
}
.speaker-book-sec .steps .btn-divine-bg-wht {
  color: #283672;
  border: 1px solid #283672;
  height: auto;
  padding: 14px 10px;
}
.speaker-book-sec .steps p {
  color: #999999;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.speaker-book-sec .step.event .form-wrap {
  position: relative;
}
.speaker-book-sec .step.event .form-wrap .wrap {
  padding-right: 80px;
  margin-bottom: 20px;
}
.speaker-book-sec .step.event .form-wrap .wrap:first-child {
  margin-bottom: 0px;
}
.speaker-book-sec .steps .add-more {
  margin-left: 25px;
  position: absolute;
  right: 0px;
  /* top: 45px; */
}

.speaker-book-sec .steps .remove-item{
  margin-left: 25px;
  position: absolute;
  right: 0px;
  /* top: 45px; */
}
.speaker-book-sec .steps .add-more svg {
  fill: #283672;
  width: 55px;
}
.speaker-book-sec .steps .remove-item svg {
  fill: #283672;
  width: 55px;
}
.speaker-book-sec .steps .step {
  display: none;
}
.speaker-book-sec .steps .step.active {
  display: block;
}
.speaker-book-sec .steps .accommodation-wrap {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #283672;
  padding: 25px 30px 0px;
  flex-wrap: wrap;
}
.speaker-book-sec .steps .accommodation-wrap .form-check {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
.speaker-book-sec .steps .accommodation-wrap .form-check label {
  margin: 0px;
  margin-left: 12px;
  color: #283672;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.speaker-book-sec .steps .accommodation-wrap .form-check-input {
  width: 30px;
  height: 30px;
  border-color: #283672;
}
.speaker-book-sec .steps .accommodation-wrap .form-check-input:checked {
  background-color: #283672;
  border-color: #283672;
}

/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
.register-sec {
  padding: 50px 0px;
}
.register-top {
  background: url("../img/register-bnr.png") no-repeat;
  background-size: cover;
  padding: 60px 0px;
  position: relative;
  text-align: center;
}
.register-top::after {
  background-color: rgba(125, 35, 33, 0.69);
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}
.register-top h1 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.register-top h1 b {
  font-weight: 900;
}
.register-top p {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  width: 50%;
  margin: auto;
}
.register-sec {
  padding: 50px 0px;
  text-align: center;
}
.register-sec h2 {
  color: #000000;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  margin: 0px 0px 5px;
  font-family: "Playfair Display", serif;
}
.register-sec h2 ~ p {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0px;
}
.register-sec .register-wrap {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(153, 153, 153, 0.2);
  margin-top: 30px;
  padding: 30px;
}
.register-sec .register-wrap .form-wrap {
  text-align: left;
  margin-bottom: 20px;
}
.register-sec .register-wrap .form-wrap label {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 5px;
}
.register-sec .register-wrap .form-wrap .form-control,
.register-sec .register-wrap .form-wrap .form-select {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 16px 20px;
}
.register-sec .register-wrap .form-wrap .form-control:focus,
.register-sec .register-wrap .form-wrap .form-select:focus {
  outline: none;
  box-shadow: none;
}
.register-sec .register-wrap p {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.register-sec .register-wrap p a {
  text-decoration: underline;
  color: #000000;
  font-weight: 700;
}
.register-sec .register-wrap .btn-divine-bg-blue {
  display: inline-block;
  border: none;
  padding: 12px 36px;
  margin: 10px 0px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Sign in and Signup Option Modals
--------------------------------------------------------------*/
.signInModal .modal-content {
  border-radius: 20px;
  background: url("../img/services/bg.png") no-repeat center/cover,
    linear-gradient(#283672, #283672);
}
.signInModal .modal-content .modal-body {
  padding: 40px 30px;
}
.signInModal .form-control {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e5ea;
  color: #3a3a3c;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.signInModal .form-control:focus {
  outline: none;
  box-shadow: none;
}
.signInModal h1 {
  /* color: #ffffff; */
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 30px;
}
.signInModal .btn-divine-bg-wht {
  border: none;
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
}
.signInModal p {
  color: #ffffff;
  margin-top: 10px;
}
.signInModal p a {
  color: #ffffff;
}
.signInModal label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 5px;
}
.signInModal .btn-close {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  position: absolute;
  top: -13px;
  right: -13px;
  border-radius: 100%;
  z-index: 1;
  padding: 0px;
  opacity: 1;
  line-height: 14px;
  background-image: none;
}
.signInModal .btn-close svg {
  fill: #1d1e3c;
  width: 16px;
}
.signInModal h4 b {
  font-family: "Playfair Display", serif;
}
.signInModal h4 {
  margin-top: 30px;
  /* color: #ffffff; */
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 5px;
}
#signUpModal.signInModal .btn-divine-bg-wht {
  text-transform: capitalize;
  border-radius: 25px;
  justify-content: center;
  display: flex;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-sec {
  padding: 10px 0px 60px;
}
.checkout-sec h2 {
  color: #283672;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin: 30px 0px 20px;
}
.checkout-sec p {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  width: 50%;
  margin: auto;
}
.checkout-sec h4 {
  color: #283672 !important;
  font-size: 25px;
  font-weight: 700;
  line-height: 36px;
  margin: 10px 0px 10px;
}
.checkout-sec h5 {
  border-radius: 10px;
  background: #7d2321;
  color: #fff;
  text-align: center;
  padding: 13px 0px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin: 60px 0px 15px;
}
.checkout-sec h4 .badge {
  background-color: #000000 !important;
  color: #ffffff;
}
.checkout-sec .form-wrap .form-control,
.checkout-sec .form-wrap .form-select {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 16px 20px;
}
.checkout-sec .form-control:focus {
  outline: none;
  box-shadow: none;
}
.checkout-sec .form-wrap label {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px;
}
.checkout-sec .btn-divine-bg-blue {
  border-radius: 10px;
  justify-content: center;
  font-size: 20px;
}
.checkout-sec .form-check-input:checked {
  background-color: #283672;
  border-color: #283672;
}
.checkout-sec .item-list li {
  border-radius: 10px;
  background: #f9fcff;
  box-shadow: 0px 1px 16px -6px rgba(0, 0, 0, 0.25);
  margin-top: 10px;
  padding: 10px 0px;
  display: flex;
  justify-content: center;
}
.checkout-sec .item-list li:first-child {
  border-radius: 10px;
  background: linear-gradient(90deg, #7d2321 -8.27%, #283672 97.5%);
  box-shadow: none;
  margin-bottom: 20px;
  padding: 15px 0px;
}
.checkout-sec .item-list h6 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.checkout-sec .item-list li a.speaker {
  display: flex;
  align-items: center;
}
.checkout-sec .item-list li a.speaker p {
  color: #283672;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  width: auto;
}
.checkout-sec .item-list li a.speaker img {
  border: 4px solid #d9d9d9;
  width: 55px;
  height: 55px;
  margin-right: 10px;
}
.checkout-sec div.services {
  display: flex;
  flex-direction: column;
}
.checkout-sec div.services span {
  position: relative;
  padding: 2px 0px 2px 10px;
  margin: 0px;
  color: #4e4e4e;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  display: flex;
  align-items: center;
}
.checkout-sec div.services span:after {
  content: "";
  position: absolute;
  left: 0px;
  width: 4px;
  height: 4px;
  background-color: #4e4e4e;
  border-radius: 100%;
}
.checkout-sec .item-list li a.speaker span.maslk {
  color: #4e4e4e;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.checkout-sec .item-list li .day {
  color: #4e4e4e;
  font-size: 35px;
  font-weight: 275;
  line-height: 42px;
}
.checkout-sec .item-list li .date-box {
  display: flex;
  flex-direction: column;
}
.checkout-sec .item-list li .date-box span {
  color: #4e4e4e;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  opacity: 0.5;
}
.checkout-sec .item-list li .checkout-col {
  border-left: 1px solid #dcdcdc;
  justify-content: center;
  padding: 20px 20px;
  display: flex;
  align-items: center;
}
.checkout-sec .item-list li .checkout-col:first-child {
  border: none;
}
.checkout-sec .item-list li .date-box span:first-child {
  opacity: 1;
}
.checkout-sec .item-list li .price {
  position: relative;
  justify-content: start;
}
.checkout-sec .item-list li .price span {
  color: #4e4e4e;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
}
.checkout-sec .item-list li .price .actions {
  position: absolute;
  right: 0px;
  top: 0px;
}
.checkout-sec .item-list li .price .actions .view-details {
  color: #283672;
  font-size: 12px;
  font-weight: 500;
  line-height: 11px;
  text-decoration-line: underline;
}
.checkout-sec .item-list li .price .actions .remove {
  border-radius: 5px;
  border: 1px solid #e3ebff;
  background: #ffffff;
  padding: 5px 8px;
  line-height: 12px;
  margin: 0px 10px;
  display: inline-block;
}
.checkout-sec .item-list li .price .actions .remove svg {
  width: 10px;
  fill: #283672;
}
.checkout-top-sec {
  background: url("../img/checkout-bg.png") no-repeat;
  background-size: cover;
  padding: 60px 0px;
  position: relative;
  text-align: center;
}
.checkout-top-sec::after {
  background: linear-gradient(
    90deg,
    #7d2321 0%,
    rgba(125, 35, 33, 0.59) 50%,
    #7d2321 100%
  );
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}
.checkout-top-sec h1 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.checkout-top-sec h1 b {
  font-weight: 900;
}
.checkout-top-sec p {
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  width: 50%;
  margin: auto;
}
.payment-list {
  border-radius: 10px;
  border: 1px solid #e3ebff;
  background: #f9fcff;
  padding: 15px 15px;
}
.payment-list ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.payment-list span {
  color: #4e4e4e;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
}
.payment-list strong {
  color: #222;
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
}
.payment-list ul li {
  border-top: 1px solid #dcdcdc;
  padding: 10px 0px;
}
.payment-list ul li:first-child {
  border: none;
}
.payment-list .gross-total {
  margin-top: 40px;
  display: flex;
  padding: 15px 0px;
  border-top: 1px solid #dcdcdc;
  justify-content: space-between;
}
.payment-list .btn-divine-bg-blue {
  border-radius: 40px;
  box-shadow: 0px 11px 9px -10px rgba(0, 0, 0, 0.25);
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
}
.checkout-speaker-detail h2 {
  color: #283672;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 43px;
  padding: 12px 0px 10px;
  margin: 0px;
  border-bottom: 1px solid #d8cfcf;
}
.checkout-speaker-detail .speaker-detail {
  padding: 20px 40px;
  margin: 0px 40px 20px;
  border-bottom: 1px solid #d8cfcf;
}
.checkout-speaker-detail .speaker {
  display: flex;
  align-items: center;
}
.checkout-speaker-detail .speaker img {
  border: 4px solid #d9d9d9;
  width: 100px;
  height: 100px;
  margin-right: 10px;
  border-radius: 50%;
}
.checkout-speaker-detail .speaker p {
  color: #283672;
  font-size: 26px;
  line-height: 35px;
  font-weight: 500;
  width: auto;
  display: flex;
  flex-direction: column;
  margin: 0px;
}
.checkout-speaker-detail .speaker p span.maslk {
  color: #4e4e4e;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.checkout-speaker-detail h5 {
  color: #283672;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
}
.checkout-speaker-detail div.list-detail {
  display: flex;
  flex-direction: column;
}
.checkout-speaker-detail div.list-detail span,
.checkout-speaker-detail .list-detail p {
  position: relative;
  padding: 2px 0px 2px 10px;
  margin: 0px;
  color: #4e4e4e;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  display: flex;
  align-items: center;
}
.checkout-speaker-detail .list-detail span:after {
  content: "";
  position: absolute;
  left: 0px;
  width: 4px;
  height: 4px;
  background-color: #4e4e4e;
  border-radius: 100%;
}
.checkout-speaker-detail .list-detail p {
  padding: 0px;
}
.checkout-speaker-detail .checkout-col {
  border-left: 1px solid #dcdcdc;
  justify-content: center;
  padding: 20px 20px;
  align-items: center;
}
.checkout-speaker-detail .checkout-col:first-child {
  border: none;
}
.checkout-speaker-detail .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  color: #283672;
  border-radius: 5px;
  background: none;
  display: inline-block;
  padding: 0px;
  width: auto;
  height: auto;
  opacity: 1;
}
.checkout-speaker-detail .modal-body {
  padding: 0px;
}
.checkout-speaker-detail .speaker-content {
  padding: 0px 40px 40px;
}
.checkout-speaker-detail .speaker-content h4 {
  color: #283672;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin: 40px 0px 2px;
}
.checkout-speaker-detail .speaker-content p {
  color: #666;
  font-size: 16px;
  margin: 0px;
  font-weight: 400;
  line-height: 24px;
}
.checkout-speaker-detail .modal-content {
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Hiring/Career Modal
--------------------------------------------------------------*/
.hiringCareerModal .modal-content {
  border-radius: 20px;
  background-color: #f5f7ff;
}
.hiringCareerModal .btn-close {
  width: 30px;
  height: 30px;
  background-color: #d8d8d8;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 8px;
  z-index: 1;
  padding: 0px;
  opacity: 1;
  line-height: 14px;
  background-image: none;
}
.hiringCareerModal .btn-close svg {
  fill: #1d1e3c;
  width: 16px;
}
.hiringCareerModal .modal-content .modal-body {
  padding: 15px 10px;
}
.hiringCareerModal h1 {
  color: #283672;
  text-align: center;
  font-family: "Galada", cursive;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  padding-bottom: 15px;
  padding-top: 10px;
  border-bottom: 1px solid #d8cfcf;
}
.hiringCareerModal h4 {
  color: #283672;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin: 12px 0 8px;
}
.hiringCareerModal .selection {
  background-color: #ffffff;
  border: 2px solid #c8e4ff;
  border-radius: 15px;
  padding: 30px 10px;
  margin: 40px 15px 20px;
  text-align: center;
  position: relative;
}
.hiringCareerModal .form-check-inline {
  position: absolute;
  right: 10px;
  top: 10px;
  margin: 0;
  padding: 0;
}
.hiringCareerModal .form-check-inline .form-check-input {
  width: 1.5em;
  height: 1.5em;
  margin-top: 0;
}
.form-check-input:checked {
  background-color: #283672;
  border-color: #283672;
}
.hiringCareerModal a.btn-next {
  display: flex;
  width: 147px;
  height: 40px;
  padding: 5px 27px;
  margin: auto;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 35px;
  background: #283672;
  box-shadow: 3px 3px 0px 0px #939a9f;
}

/*--------------------------------------------------------------
# Hiring Register
--------------------------------------------------------------*/
.hiring-career h1 {
  margin-top: 60px;
}
.hiring-career p {
  font-size: 18px;
  margin-top: 10px;
}
.hiring-career {
  background-size: cover;
  background: url("../img/hiring/hiring-bnr.webp") no-repeat center;
  padding: 85px 0;
}
.hiring-career:after {
  display: none;
}
.hiring-career hr {
  height: 1px;
  width: 50%;
  opacity: 1;
  border: none;
  margin: 0 auto;
  background-color: #ffffff;
}
.hiring-career-btn-wrap {
  text-align: right;
}
.hiring-career-btn-wrap .btn-divine-bg-blue {
  font-size: 16px !important;
  text-transform: capitalize !important;
  border: 2px solid #283672 !important;
  padding: 7px 55px !important;
}
.hiring-career-btn-wrap .btn-divine-border-blue-btn {
  padding: 7px 55px;
  margin-right: 10px;
}
.findCandidateModal h1 {
  color: #283672;
  width: 80%;
  margin: 0 auto 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  padding-bottom: 15px;
  padding-top: 10px;
  border-bottom: 1px solid #a2a2a2;
}
.findCandidateModal p {
  color: #222222;
  font-size: 20px;
  text-align: center;
}
.findCandidateModal .btn-close {
  width: 30px;
  height: 30px;
  background-color: #d8d8d8;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 8px;
  z-index: 1;
  padding: 0px;
  opacity: 1;
  line-height: 14px;
  background-image: none;
}
.findCandidateModal .btn-close svg {
  fill: #1d1e3c;
  width: 16px;
}
.findCandidateModal .form-check label {
  color: #283672;
  font-weight: 500;
}
.findCandidateModal .form-check label span {
  color: #747474;
  font-size: 11px;
}
.findCandidateModal a.btn-next {
  display: flex;
  justify-content: center;
  width: 147px;
  height: 40px;
  padding: 5px 27px;
  margin: auto;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 35px;
  background: #283672;
  float: right;
  box-shadow: 3px 3px 0px 0px #939a9f;
}
.job-post .input-group .form-control {
  border-right: 0px;
}
.job-post .input-group-text {
  background-color: transparent;
}
.job-post .input-group-text svg {
  width: 25px;
  height: 25px;
  fill: #283672;
}
.subscription p {
  color: #666666 !important;
  font-size: 16px !important;
  font-weight: 400;
  width: 80%;
  margin: 0 auto;
}
.job-post .col-md-2 .input-group .form-control {
  border-left: 0;
  border-right: 1px solid #ced4da;
}
#dateTimeModal .dateTimePicker{
  background-color: #283672;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
}
#dateTimeModal .dateTimePicker .bootstrap-datetimepicker-widget table td.day:hover,
#dateTimeModal .dateTimePicker .bootstrap-datetimepicker-widget table td.hour:hover,
#dateTimeModal .dateTimePicker .bootstrap-datetimepicker-widget table td.minute:hover,
#dateTimeModal .dateTimePicker .bootstrap-datetimepicker-widget table td.second:hover,
#dateTimeModal .dateTimePicker .bootstrap-datetimepicker-widget table th.picker-switch:hover{
  background-color: #ffffff;
  color: #283672;
}
#dateTimeModal .dateTimePicker .bootstrap-datetimepicker-widget table td.day {
  height: 25px;
  line-height: 25px;
  width: 25px;
}
#dateTimeModal .dateTimePicker .bootstrap-datetimepicker-widget table th{
  padding-bottom:10px;
  padding-top:10px;
}
#dateTimeModal .bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new{
  color:#ffffff;
}
#dateTimeModal .time-slots{
  margin:10px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}
#dateTimeModal .time-slots .slot{
  border: 1px solid #283672;
  border-radius: 5px;
  padding: 5px 18px;
  color: #283672;
  font-size: 16px;
  width: 140px;
  text-align:center;
  display: flex;
}
#dateTimeModal h6{
  color:#283672;
  font-size:18px;
  margin:0;
  font-weight:700;
}
#dateTimeModal .time-slots .slot:hover,
#dateTimeModal .time-slots .slot.active{
  background-color: #283672;
  color: #ffffff;
  cursor:pointer;
}
.subscription .card-title {
  font-size: 36px;
  border-top: 3px solid #e3e5ff;
  padding-top: 15px;
  font-family: "Playfair Display", serif;
}
.subscription .card-title small {
  color: #666666;
  font-size: 22px;
}
.subscription .card {
  border: none;
  box-shadow: 0 7px 21px 0 rgba(153, 153, 153, 0.2) !important;
  margin-top: 40px;
}
.subscription .card.standard {
  box-shadow: none;
  border: 1px solid #27a96a;
}
.subscription .card-header {
  background-color: transparent;
  border: none;
}
.subscription .card-header h4 {
  color: #722828;
  font-size: 20px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  position: relative;
  padding-left: 35px;
}
.subscription .card-header h4:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 1px solid #722828;
  padding: 2px;
  background-color: #722828;
}
.subscription .standard .card-header h4:after {
  background-color: #27a96a;
  border-color: #27a96a;
}
.subscription .premium .card-header h4:after {
  background-color: #8552d9;
  border-color: #8552d9;
}
.subscription .card-body {
  padding-top: 0;
}
.subscription .card .card-body ul li::marker {
  color: #722828;
}
.subscription .standard.card .card-body ul li::marker {
  color: #27a96a;
}
.subscription .premium.card .card-body ul li::marker {
  color: #8552d9;
}
.subscription .card .card-body ul {
  padding-left: 0;
  margin-left: 20px;
}
.subscription .card .card-body ul li {
  color: #666666;
  font-size: 16px;
}
.subscription .btn-outline-primary {
  border-color: #283672;
  border-radius: 30px;
  color: #283672;
  font-size: 18px;
  font-weight: 500;
}
.subscription .btn-outline-primary:hover {
  background-color: #283672;
  color: #ffffff;
}

.subscription .standard .btn-outline-primary {
  background-color: #283672;
  color: #ffffff;
}
.review h3 {
  color: #283672;
  font-size: 28px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  border-bottom: 3px solid #e3e5ff;
  padding-bottom: 15px;
  text-align: left;
}
.review .job-review {
  padding: 30px 0px;
}
.job-review h6 {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px;
  text-align: left;
}
.job-review span {
  color: #666666;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: block;
}
.review.subscription .card-title {
  border-top: none;
  text-align: right;
  margin-top: -30px;
  padding-top: 0;
}
.review.subscription h4 {
  border-bottom: 3px solid #e3e5ff;
  padding-bottom: 15px;
}
.payment-wrap p {
  color: #666666 !important;
  font-size: 16px !important;
  font-weight: 400;
  width: 100%;
  margin: 0 auto;
}
.card-wrap {
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  padding: 20px 30px;
  margin-bottom: 20px;
}
.payment-wrap .alert {
  background-color: #f2f2ff;
  border-color: #f2f2ff;
  text-align: left;
  padding: 25px;
  border-radius: 10px;
}
.payment-wrap .alert span {
  font-size: 19px;
  font-weight: 500;
  color: #666666;
}
.payment-wrap .alert i {
  color: #283672;
  font-size: 30px;
  position: relative;
  top: 3px;
}
.payment-wrap .form-check-inline {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.payment-wrap .form-check-inline span {
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  padding: 2px;
  display: inline-block;
  margin: 0px 10px;
}
.payment-wrap .form-check-inline span i {
  font-size: 30px;
  line-height: 30px;
  color: #283672;
  display: flex;
}
.payment-wrap .form-check-inline label {
  color: #283672;
  font-size: 18px;
}
.review .hdng-wrap {
  background-color: #f2f2ff;
  border-radius: 10px;
  padding: 20px 0px;
}
.review .hdng-wrap h3 {
  padding: 0;
  margin: 0;
  text-align: center;
}
.review .summary {
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  margin: 20px 0;
  padding: 20px 15px;
}
.payment-summary {
  border-radius: 20px;
  box-shadow: 0px 0px 15px 0px rgba(153, 153, 153, 0.2);
  margin-top: -100px;
  padding: 40px 20px;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
}
.payment-summary i {
  color: #10c600;
  font-size: 55px;
}
.payment-summary h4 {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
  color: #10c600;
  font-family: "Playfair Display", serif;
}
.payment-summary p {
  font-size: 16px;
  color: #666666;
  width: 60%;
  margin: auto;
}

.declined {
  border-radius: 20px;
  box-shadow: 0px 0px 15px 0px rgba(153, 153, 153, 0.2);
  margin-top: -100px;
  padding: 40px 20px;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
}
.declined h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 15px 0 5px;
  font-family: "Playfair Display", serif;
}
.declined-bg {
  background: url(../img/hiring/decline-bg.webp) no-repeat top;
  background-size: cover;
}
.declined p {
  font-size: 16px;
  color: #666666;
  width: 60%;
  margin: auto;
}
.declined form {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.declined .form-check-inline {
  display: flex;
  justify-content: center;
  align-items: center;
}
.declined .form-check-inline label {
  font-size: 26px;
  color: #747474;
  font-weight: 500;
  margin-left: 8px;
}
.declined .form-check-input {
  width: 1.5rem;
  height: 1.5rem;
}
.declined .form-control {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 16px 20px;
}
.declined .btn-divine-bg-blue {
  margin-top: 30px;
  font-size: 16px !important;
  text-transform: capitalize !important;
  border: 2px solid #283672 !important;
  padding: 7px 55px !important;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
}
.review .article {
  text-align: left;
  margin-top: 20px;
}
.review .article h4 {
  color: #222222;
  font-size: 28px;
  font-weight: 700;
  border: none;
  margin-bottom: 0px;
}
.review .article p {
  color: #666666;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
}
.review .info-wrap,
.review .wrap {
  display: flex;
}
.review .info-wrap label {
  color: #666666;
  font-size: 18px;
  font-weight: 600;
}
.review .info-wrap input {
  border: none;
  border-bottom: 1px solid #666666;
  color: #666666;
}
.review .info-wrap input:focus {
  border: none;
  border-bottom: 1px solid #666666;
  outline: none;
}
.review .form-check-label {
  color: #666666;
  font-size: 18px;
  font-weight: 600;
}
.review .hiring-career-btn-wrap {
  text-align: center;
}
.payment-summary .btn-divine-bg-blue {
  display: inline-block;
  border: none;
  padding: 12px 36px;
  margin: 10px 0px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Careers Register
--------------------------------------------------------------*/
/*Moiz Code from here Start*/

/*Moiz Code from here End*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.divine-h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  color: #191919;
  margin-bottom: 50px;
}
.text-crafty-blue {
  color: #283672 !important;
}
.text-crafty-brown {
  color: #722828 !important;
}
.text-crafty-green {
  color: #27a96a !important;
}
.text-crafty-purple{
  color:#8552d9 !important;
}
.btn-divine-bg-wht {
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 6px 6px 32px 0px rgba(32, 119, 110, 0.21);
  display: flex;
  width: 154px;
  height: 48px;
  padding: 10px 25px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #283672;
  font-size: 16px;
  font-weight: 500;
}
.btn-divine-bg-blue {
  border-radius: 50px;
  background: #283672;
  box-shadow: 6px 6px 32px 0px rgba(32, 119, 110, 0.21);
  display: flex;
  padding: 16px 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.btn-divine-bg-brown{
  border:1px solid #722828 !important;
  background-color:transparent;
  display: inline-block;
  justify-content: center;
  padding: 5px 40px;
  margin: auto;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 35px;
}
.btn-divine-bg-wht:hover {
  background: #ffffff;
  color: #283672;
}
.btn-divine-bg-blue:hover {
  background: #283672;
  color: #ffffff;
}
.pr-0 {
  padding-right: 0 !important;
}
.-mt-100 {
  margin-top: -100px !important;
}
.z-index-10 {
  z-index: 10;
}
.btn-divine-border-blue-btn {
  border-radius: 1000px;
  border: 2px solid #283672;
  color: #283672;
  font-weight: 700;
  margin: 0 auto;
  display: inline-block;
  padding: 12px 36px;
  font-size: 16px;
  letter-spacing: 1px;
}
.btn-divine-border-brown-btn {
  border-radius: 1000px;
  border: 2px solid #722828;
  color: #722828;
  font-weight: 700;
  margin: 0 auto;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 7px 55px;
}
@media (max-width: 650px) {
  .get-in-touch .content-wrap {
    width: 100%;
  }
  .our-vidoes .content-wrap {
    position: static;
    width: 100%;
    border-radius: 0px;
    padding: 30px 30px;
  }
  .our-services {
    padding: 0xp;
  }
  .our-events .swiper-button-next,
  .our-events .swiper-button-prev {
    display: none;
  }
  .top-sec {
    margin: 0px;
    border-radius: 0px;
    background-position: top;
    padding: 70px 0px 70px;
  }
  .our-events {
    padding: 60px 0px;
  }
  .our-events .hdng-wrap {
    margin-bottom: 30px;
  }
  .our-events .hdng-wrap a {
    padding: 15px 30px;
  }
  .our-vidoes .col-md-10 {
    padding: 0 !important;
  }
  .our-vidoes .video-wrap {
    border-radius: 0px;
    overflow: auto;
  }
  .our-events .event.swiper-slide-active {
    transform: scale(1);
  }
  .our-events .event.swiper-slide-next,
  .our-events .event.swiper-slide-prev {
    transform: scale(1);
  }
  .our-events .event-swiper {
    padding: 0px;
  }
  .our-services .img-wrap img {
    width: 100%;
  }
  .our-services .wrap {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .img-wrap img.thumbnail,
  .our-vidoes .more-series {
    border-radius: 0px;
  }
  .our-vidoes .more-series {
    background: #313e76;
    margin-top: 0px;
    padding: 30px 30px;
  }
  .our-vidoes .play-btn {
    width: 50px;
  }
  .our-vidoes .more-series .col-md-6 {
    border: none;
    border-top: 1px solid rgb(255 255 255 / 16%);
  }
  .our-vidoes .more-series .col-md-6:nth-child(1),
  .our-vidoes .more-series .contnt-wrap {
    border: none;
  }
  .help {
    padding: 40px 0px;
  }
  .top-sec h1 {
    font-size: 42px;
    line-height: 52px;
  }
  .help .content-wrap h3,
  .get-in-touch .content-wrap h3,
  .our-vidoes .content-wrap h6,
  .our-events .hdng-wrap h2,
  .our-services .hdng-wrap h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .our-vidoes .more-series h3 {
    font-size: 26px;
    line-height: 36px;
  }
  footer .col-2,
  footer .col-6 {
    width: 100%;
  }
  footer ul.nav {
    margin-bottom: 30px !important;
  }
  footer ul.nav li a {
    margin-top: 8px;
  }
  footer h5 {
    margin-bottom: 0px;
  }
  footer .d-flex {
    flex-direction: column;
  }
  footer p.m-0 {
    text-align: center;
  }
  footer form .btn-divine-bg-wht {
    width: 100%;
  }
  .header-bnr .btn-grp a {
    font-size: 14px;
    padding: 5px 13px;
  }
  .btn-grp {
    position: absolute;
    right: 60px;
  }
}

/*--------------------------------------------------------------
# Job List Start
--------------------------------------------------------------*/
.jobPostBox {
  box-shadow: 0px 0px 15px 0px #99999933;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
  margin-bottom: 15px;
  background-color: #fff;
}

.jobPostBox .search {
  padding-bottom: 0px;
  border: none;
  color: #747474;
}
.jobPostBox .input-group input {
  background: #f0f0f0;
  outline: none;
  border: 0px;
  padding: 10px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #bcbcbc;
  font-weight: 400;
}
.jobPostBox .input-group input:focus {
  box-shadow: none;
}
.jobPostBox h3 {
  font-family: "Open Sans", sans-serif;
  color: #283672;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}
.jobPostBox .checkBoxes .form-check {
  margin-bottom: 8px;
}
.jobPostBox .checkBoxes .form-check > a {
  color: #283672;
  font-size: 16px;
  text-decoration: underline;
  text-align: right;
  display: block;
}
.checkBoxes .form-check-label {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.register-sec.job-post {
  margin-top: -100px;
}
.jobPostBox .details > p {
  font-family: "Barlow", sans-serif;
  max-width: 780px;
  width: 100%;
  line-height: 18px;
  color: #808080;
  font-size: 15px;
  margin: 10px 0px;
}

.jobPostBox .details .ApplyBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jobPostBox .jobTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  padding: 5px 0 10px 0;
}
.jobPostBox .jobTitle h3 {
  font-weight: 700;
  padding: 0px;
  border: none;
  margin-bottom: 0px;
}
.jobPostBox .jobTitle h5 {
  font-size: 13px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #747474;
  padding: 5px 0 0 0;
}
.jobPostBox .details .ApplyBox > div {
  display: flex;
  gap: 20px;
  color: #808080;
}
.jobPostBox .details .ApplyBox > div p {
  margin: 0px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
}

.btnApply {
  padding: 8px 0px;
  background: transparent;
  max-width: 155px;
  width: 100%;
  border-radius: 50px;
  border: 2px solid #283672;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #283672;
  text-align: center;
}

.btnApplyback {
  padding: 8px 0px;
  background: transparent;
  max-width: 155px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #283672;
  text-align: -moz-center;
}

.register-sec.job-post .pagination {
  justify-content: end;
  gap: 10px;
}

.register-sec.job-post .pagination .page-link {
  color: #1c1c1e;
  font-weight: 600;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  padding: 9px 17px;
  border-radius: 10px;
  margin-top: 15px;
}
.register-sec.job-post .pagination .page-link:hover {
  background: #283672;
  color: #fff;
}

/*--------------------------------------------------------------
# Job List End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Candidate Job POst START
--------------------------------------------------------------*/
.candidate .jobPostBox.left-side {
  position: relative;
  padding: 20px 28px;
  border-radius: 20px;
}

.candidate .jobPostBox.left-side .share-icon {
  position: absolute;
  right: 30px;
  top: 8px;
}

.candidate .jobPostBox.left-side .jobTitle h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.candidate .jobPostBox.left-side .jobTitle h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.candidate .jobPostBox.left-side .details {
  margin-top: 15px;
}

.candidate .jobPostBox.left-side .details > div {
  align-items: center;
}

.candidate .jobPostBox.left-side .details > div p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  color: #747474;
}

.candidate .jobPostBox.left-side .details > div .btns-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: start;
}

.loginApplyBtn {
  padding: 8px 22px;
  background: transparent;
  max-width: 186px;
  width: 100%;
  border-radius: 50px;
  border: 2px solid #1b8800;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-color: #1b8800;
  box-shadow: 3px 3px 0px 0px #939a9f;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.loginApplyBtn:hover {
  color: #fff;
}
.registerApplyBtn {
  padding: 8px 22px;
  background: transparent;
  max-width: 186px;
  width: 100%;
  border-radius: 50px;
  border: 2px solid #722828;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #722828;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  cursor: pointer;
}
.registerApplyBtn:hover {
  color: #722828;
}

.candidate .jobPostBox.left-side .jobExperience > div {
  gap: 14px 0px;
}

.candidate .jobPostBox.left-side .jobExperience p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #747474;
  margin-bottom: 3px;
}

.candidate .jobPostBox.left-side .jobExperience h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}

.candidate .jobPostBox.left-side .jobDescription {
  margin-top: 20px;
}

.candidate .jobPostBox.left-side .jobDescription h2 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  color: #283672;
  margin-bottom: 10px;
}

.candidate .jobPostBox.left-side .jobDescription h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  margin: 14px 0;
}

.candidate .jobPostBox.left-side .jobDescription p {
  font-family: "Barlow";
  font-size: 15px;
  font-weight: 400;
  color: #808080;
}

.candidate .jobPostBox.left-side .jobDescription h6 {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2db3ff;
}

.candidate .jobPostBox.left-side .jobDescription ul {
  font-family: "Barlow";
  font-size: 15px;
  font-weight: 400;
  color: #808080;
  margin: 10px 0;
}

.jobPostBox.right-side {
  border-radius: 20px;
}

.jobPostBox.right-side .jobTitle h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #283672;
}

.jobPostBox.right-side .details h5 {
  font-family: "Barlow";
  font-size: 15px;
  font-weight: 400;
  color: #222222;
  margin: 10px 0px;
}

.jobPostBox.right-side .details p {
  font-family: "Barlow";
  font-size: 15px;
  font-weight: 400;
  color: #808080;
}

.jobPostBox.right-side .similarJobs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}

.jobPostBox.right-side .similarJobs h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #283672;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.jobPostBox.right-side .similarJobs a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #283672;
  text-decoration: underline;
}

.jobPostBox.right-side .similarJobCard {
  border-radius: 10px;
  border: 1px solid #c3c3c3;
  margin-top: 12px;
  padding: 10px;
}

.jobPostBox.right-side .similarJobCard h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #283672;
}

.jobPostBox.right-side .similarJobCard h6 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #747474;
}

.jobPostBox.right-side .similarJobCard div {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.jobPostBox.right-side .similarJobCard div p {
  font-family: "Open Sans", sans-serif;
  font-size: 11.52px;
  font-weight: 400;
  color: #747474;
  margin-bottom: 0;
}
.loginApplyBtn.blue {
  background-color: #283672;
  border: 2px solid #283672;
  color: #fff;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
/* ========Login Modal======== */
.pta {
  width: fit-content !important;
}
.hiringCareerModal.loginmodal .modal-body {
  background: #fff;
  border-radius: 20px;
}

.hiringCareerModal.loginmodal .modal-body p {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #808080;
}

.Sociallogins a {
  color: #808080;
  font-size: 18px;
  background: #fff;
  padding: 10px;
  margin-right: 20px;
  box-shadow: 0px 4px 12.5px -8px #00000040;
  border-radius: 10px;
}
.Sociallogins a:last-of-type {
  margin-right: 0px;
}
.Sociallogins a img {
  margin-right: 8px;
}

.loginForm label {
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
}
.loginForm input {
  font-size: 15px;
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
}

.loginForm input::placeholder {
  color: #99999980;
}

.loginForm input:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #eeeeee;
}

.fPassword {
  display: block;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  color: #1877F2;
}

.headline p {
  display: flex;
  max-width: 410px;
  margin: 0 auto 1rem;
}
.headline p:before,
.headline p:after {
  color: white;
  content: "";
  flex: 1;
  border-bottom: 2px solid #d8cfcf;
  margin: auto 0.25rem;
  box-shadow: 0 -2px;
}

/* .seprator {
  border-bottom: 1px solid #D8CFCF;
  max-width: 360px;
  width: 100%;
  margin: -26px auto 0;
} */

/*--------------------------------------------------------------
# Candidate Job POst End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Login page Start
--------------------------------------------------------------*/
.register-sec.loginpage {
  margin-top: -350px;
  /* margin-top: 0px; */
  z-index: 9999;
}

.register-sec.loginpage .crow{
  padding: 0 30px;
}


.topbackground img{
  width: 100%;
}
.hiring-career.login {
  background-size: cover;
  background: url(../img/login-background.png) no-repeat center;
  padding: 260px 0;
  background-size: 100%;
  /* height: 510px; */
}
.register-sec.loginpage .col-xl-6 {
  padding: 0px;
}
.loginpageForm .modal-body {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0px 4px 39.5px -7px #00000026;
}
.register-sec.loginpage .letOrganizeSec {
  background: #fff;
  padding: 55px 37px 65px;
  text-align: left;
  box-shadow: 0px 4px 21.5px -7px #00000040;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.letOrganizeSec>div{
  position: relative;
  z-index: 9999;
}

.letOrganizeSec > img {
  position: absolute;
  top: 0px;
  right: 0px;
}

.register-sec.loginpage .letOrganizeSec h2 {
  color: #283672;
  font-family: "Galada", cursive;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  padding-bottom: 10px;
}

.register-sec.loginpage .letOrganizeSec p {
  font-size: 20px !important;
  max-width: 310px;
  width: 100%;
  margin-bottom: 24px;
  color: #808080;
}
.register-sec.loginpage .letOrganizeSec ul {
  list-style-type: none;
  padding: 0px;
  margin-bottom: 45px;
}
.register-sec.loginpage .letOrganizeSec ul > li > img {
  margin-right: 10px;
}
.register-sec.loginpage .letOrganizeSec ul > li {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Login page End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Wait for Approval Start
--------------------------------------------------------------*/
.payment-summary.loginPage {
  margin-top: 0px;
}
/*--------------------------------------------------------------
# Wait for Approval End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Information Start
--------------------------------------------------------------*/

.jobPostBox.left-side .contactFormWrapper h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #283672;
  border-bottom: 0;
}

.jobPostBox.left-side .contactFormWrapper .progressBarBox {
  width: 100%;
  max-width: 450px;
  height: 11px;
  background-color: #dbdbdb;
  overflow: hidden;
  border-radius: 5px;
}

.jobPostBox.left-side .contactFormWrapper {
  border-top: 1px solid #e3e3e3;
  padding-top: 15px;
  margin-top: 20px;
}

.jobPostBox.left-side .contactFormWrapper label {
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
  border-radius: 10px;
}

.jobPostBox.left-side .contactFormWrapper label span {
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: #b7b7b7;
}

.jobPostBox.left-side .contactFormWrapper input {
  font-size: 15px;
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
}

.jobPostBox.left-side .contactFormWrapper input:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #eeeeee;
}

.progress-width-1{
  width: 20%;
}

.progress-width-2{
  width: 50%;
}

.progress-width-3{
  width: 80%;
}


.jobPostBox.left-side .contactFormWrapper .progressBarBox .progressBarValue {
  height: 11px;
  /* width: 80px; */
  background-color: #283672;
}

.jobPostBox.left-side .contactFormWrapper .continue-btn {
  font-family: "Open Sans", sans-serif;
  padding: 8px 35px;
  margin: auto;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 35px;
  background: #283672;
  box-shadow: 3px 3px 0px 0px #939a9f;
  outline: none;
  border: none;
}

.jobPostBox.right-side.with-description {
  position: relative;
}

.jobPostBox.right-side.with-description .jobInformation h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #283672;
  border-bottom: none;
  padding-bottom: 0;
}

.jobPostBox.right-side.with-description .jobInformation h5 {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #222222;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}

.jobPostBox.right-side.with-description .organizationDetail > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jobPostBox.right-side.with-description .organizationDetail.close-height {
  max-height: 200px;
  overflow: hidden;
}

.jobPostBox.right-side.with-description .organizationDetail.open-height {
  max-height: 470px;
  overflow: auto;
}

.jobPostBox.right-side.with-description .organizationDetail > div div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.jobPostBox.right-side.with-description .organizationDetail > div h6 {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4b4b4b;
  margin-bottom: 0;
  min-width: 70px;
}

.jobPostBox.right-side.with-description .organizationDetail > div p {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 0;
}

.jobPostBox.right-side.with-description .organizationDetail > p {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 0;
  margin-top: 10px;
}

.jobPostBox.right-side.with-description .organizationDetail ul {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 25px;
  margin-top: 10px;
}

.jobPostBox.right-side.with-description .organizationDetail .view-all-description {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  max-width: 300px;
  width: 100%;
}
.jobPostBox.right-side.with-description
  .organizationDetail
  .view-all-description
  a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-align: center;
  color: #283672;
  margin-top: 10px;
}

.jobPostBox.right-side.with-description
  .organizationDetail
  .view-all-description
  a
  img {
  margin-left: 5px;
}

.jobPostBox.right-side.with-description .full-description-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(179deg, rgba(255, 255, 255, 0) 0%, #ffffff 68%);
  width: 100%;
  height: 80px;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Contact Information End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Enter A Post start
--------------------------------------------------------------*/
.buttonbox {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.buttonbox>div {
  display: flex;
  max-width: 340px;
  width: 100%;
}
/*--------------------------------------------------------------
# Enter A Post End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Registor and Apply start
--------------------------------------------------------------*/
.jobPostBox.left-side .contactFormWrapper form.registorApply {
  border-top: 0px;
}

form.registorApply .continue-btn{
  max-width: 174px;
  width: 100%;
}
/* === */
.radiobtn .button {
  float: left;
  margin: 0 12px 0 0;
  max-width: fit-content;
  position: relative;
  width: 100%;
}
.radiobtn.button label,
.radiobtn .button input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.radiobtn .button input[type="radio"] {
  opacity: 0.011;
  z-index: 100;
  margin-bottom: 0px !important;
}

.radiobtn .button input[type="radio"]:checked + label {
  background: #283672;
  border-radius: 4px;
  color: #fff;
  border-radius: 10px;
}

.radiobtn .button label {
  color:  #525252;
  cursor: pointer;
  z-index: 90;
  line-height: 1.8em;
  border: 1px solid #C1C1C1;
  padding: 9px 18px;
  font-size: 14px !important;
  font-weight: 400 !important;
  font-family: "Barlow", sans-serif;
  margin-bottom: 15px !important;
}
.tc-accept {
  margin: 42px 0 24px;
}
.tc-accept>input {
  padding: 8px !important;
  height: 10px;
  width: 10px;
  border-radius: 4px !important;
}
.tc-accept>label {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 400;
  font-size: 12px !important;
  color: #747474;
}

.tc-accept>label>a {
  color: #283672;
  text-decoration: underline;
}

.Sociallogins.registor {
  border: 1px solid #C1C1C1;
  border-radius: 20px;
  padding: 19px 30px;
  text-align: center;
}


.Sociallogins.registor>p:first-child  {
  font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #747474;
}

.Sociallogins.registor>p:last-child  {
  font-family: 'Open Sans', sans-serif;
    font-size: 9px;
    font-weight: 400;
    color: #747474;

}

.Sociallogins.registor a {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  box-shadow: 0px -1px 19.5px -8px #00000026;
  border-radius: 10px;
}

/* ========= */
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}
.upload-btn-wrapper .btn {
  color: gray;
  background-color: white;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  border: 2px dotted #283672;
  color: #7F7F7F;
}
.upload-btn-wrapper .btn img {
  margin-right: 5px;
}
.upload-btn-wrapper .btn span {
  color: #283672;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
}
.fileuploadinfo {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #747474;
  margin: 8px 0 0;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
}
/* ==================== */

.timeline-container {
  display: block;
  position: relative;
  padding: 10px 26px;
}
.timeline-container ul.tl{
    margin:20px 0;
    padding:0;
    display:inline-block;
}
.timeline-container ul.tl li {
    list-style: none;
    margin:auto;
    min-height:50px;
    border-left: 2px solid #CCCCCC;
    padding:0 0 50px 30px;
    position:relative;
    display: flex; 
    flex-direction: row;
}
.timeline-container.step2 ul.tl li {
  border-left: 2px solid #283672 !important;
}
.timeline-container ul.tl li.dashed {
    border-left:1px dashed #86D6FF;
} 
.timeline-container ul.tl li:last-child{ border-left:0;}
.timeline-container.step2 ul.tl li:last-child{ border-left:0 !important;}
.timeline-container ul.tl li .item-icon {
    position: absolute;
    left: -15px;
    top: 0px;
    content: url(../img/timeline-circle.jpg);
    height: 30px;
    width: 30px;
}

.timeline-container ul.tl li .item-icon.item-icon-grey {
  content: url(../img/list-icon-grey.png);
  left: -14px;
}


.timeline-container ul.tl li:hover::before{
    border-color:  #258CC7;
    transition: all 1000ms ease-in-out;
}
ul.tl li .item-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.item-title {
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #283672;
}
.item-title.item-title-grey {
  color: #747474;
}
.item-details {
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #747474;
}
.tl-item {
  padding: 0 0 0 30px !important;
}

/* =========page-2============== */
.register-sec .employeeQuestion h2 {
  color: #283672;
}
.employeeQuestion {
  border-bottom: 3px solid #E3E5FF;
  padding-bottom: 20px;
}
.employeeQuestion p {
  font-size: 14px !important;
  font-family: 'Open Sans', sans-serif;
}

.contactFormWrapper.employeeForm form.registorApply{
  border-top: none;
}

.jobPostBox.left-side .contactFormWrapper form select{
  font-size: 15px;
    margin-bottom: 15px;
    padding: 14px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    color: #212529;
}
.jobPostBox.left-side .contactFormWrapper form select:focus {
  box-shadow: none;
}
.continue-btn.completeBtn {
  width: 100%;
  max-width: 200px !important;
}

.dateRange select {
  font-size: 12px !important;
  padding: 14px 7px !important;
}

.dateBetween {
  margin-bottom: 15px;
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  text-align: center;
}

/* ====== */
.jq-keyword-input-area {
  border: 1px solid grey;
  cursor: text;
  padding: 18px 18px 5px 18px;
  width: 100%;
  border: 1px solid #C1C1C1;
  border-radius: 10px;
}
  .jq-keyword-input-area input[type=text]{
    border:none;
    outline:none;
  }
  .jq-keyword-keyword {
    background: #CCCCCC;
    border-radius: 5px;
    display: inline-block;
    margin: 0 14px 14px 0;
    padding: 7.5px 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #747474;
    border: 1px solid #283672;
    background: #f1f4ff;
    border-radius: 10px;
}
   .jq-keyword-keyword a.jq-keyword-delete{
      cursor: pointer;
      margin:0 2px;
    }
    input#txtKeyword {
      width: 100%;
      border: 0px;
      margin: 0px;
      font-size: 14px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      padding: 14px 0px;
  }

  .yearMonthBox .form-group {
    display: flex;
    align-items: center;
}
.yearMonthBox {
  margin-bottom: 15px;
}
.yearMonthBox .form-group p {
  max-width: 100px;
  width: 100%;
  margin-bottom: 0px !important;
  text-align: right;
  margin-right: 6px;
}
.yearMonthBox .form-group.selectbox {
  display: block;
  border: 0px;
}
.yearMonthBox .form-group {
  display: flex;
  align-items: center;
  border: 1px solid #eeeeee;
  border-radius: 10px;
}
.yearMonthBox .form-group .form-control {
  border: none !important;
  margin: 0 !important;
}
/*--------------------------------------------------------------
# Registor and Apply end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Add Resume Start
--------------------------------------------------------------*/
.file-upload.employeeResumeUpload .fileUploadbox {
  display: flex;
}

.filetypes {
  margin-bottom: 0px;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
  color: #999999;
}
.fileuploadedname{
  font-family: 'Open Sans', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #283672 !important;
}

.preview-container canvas{
  width: 100% !important;
}
/*--------------------------------------------------------------
# Add Resume end
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Review Application Start
--------------------------------------------------------------*/

.reviewApplication .edit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviewApplication .edit-box h3 {
  font-size: 17px !important;
  margin: 0px;
  padding: 0px;
}
.reviewApplication .edit-box a {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #283672;
  text-decoration: underline;
}
.contactInfo {
  border: 1px solid #EEEEEE;
  border-radius: 9px;
  padding: 11px 13px;
}

.contactInfo .contactBox {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #E3E3E3;
}

.contactInfo .contactBox h6 {
margin: 0;
}
.contactInfo .contactBox p {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  }
  .contactInfo .contactBox h6 {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 15px;
    max-width: 100px;
    width: 100%;
}
.contactInfo .contactBox:last-child {
  border-bottom: 0px;
}

.contactInfo .cv {
  display: flex;
  align-items: center;
}

.contactInfo .cv h3 {
  margin: 0;
  padding: 0;
  font-size: 18px !important;
}

.contactInfo .rExperience h3 {
  font-size: 20px !important;
  /* font-weight: 700; */
  padding: 0;
}
.contactInfo .rExperience h5 {
  font-size: 15px !important;
  font-weight: 400 !important;
  font-family: 'Barlow', sans-serif;
}
.review-tc ol>li>a {
  color: #283672;
  text-decoration: underline;
}
.review-tc p {
  border-top: 2px solid #E3E3E3;
  padding-top: 16px;
  color: #808080;
}
.review-tc ol {
  padding-left: 0px;
  list-style-type: none;
}
.review-tc ol li{
  color: #808080;
}
/*--------------------------------------------------------------
# Review Application end
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Media Queries Start
--------------------------------------------------------------*/

@media (max-width: 1200px) {
  .register-sec.loginpage .letOrganizeSec {
    border-radius: 20px;
}
.register-sec.loginpage {
  margin-top: -200px;
}

.topbackground {
  background: url(../img/login-background.png) no-repeat center;
  padding: 260px 0;
  background-size: cover;
  background-position: -150px 0px;
}

.topbackground img{
  display: none;
}
.Sociallogins.registor {
  margin-top: 30px;
}

}

/* ========================================= */
@media (max-width: 992px) {
.dateRange select {
  font-size: 11px !important;
}
}

/* ========================================= */
@media (max-width: 767px) {
  .buttonbox {
    flex-direction: column;
}
.buttonbox>div {
  width: 100%;
  flex-direction: column;
  max-width: 100%;
}
.buttonbox .btnApply{
  max-width: 100%;
  margin-bottom: 10px;
}
.buttonbox .continue-btn{
 width: 100%;
 margin-bottom: 10px !important;
}

.yearMonthBox .form-group {
  margin-bottom: 15px;
}

}
/* ========================================= */
@media (max-width: 576px) {

  .register-top p {
    width:90%;
  }

  .jobPostBox .details .ApplyBox {
    flex-direction: column;
    align-items: flex-start;
  }
  .jobPostBox .details .ApplyBox .btnApply {
    margin-top: 20px;
}
  .candidate .jobPostBox.left-side .details > div .btns-wrapper {
    flex-direction: column;
    align-items: self-start;
  }
  .registerApplyBtn{
    max-width: 100%;
  }
  .loginApplyBtn{
    max-width: 100%;
  }
  .jobPostBox.left-side .contactFormWrapper h3 {
    font-size: 22px;
}
.candidate .jobPostBox.left-side {
  padding: 20px 15px;
}

.jobPostBox.left-side .contactFormWrapper .continue-btn {
  width: 100%;
  max-width: 100%;
}
.jobPostBox.left-side .contactFormWrapper .btnApply {
  max-width: 100%;
  margin-bottom: 10px;
}
.file-upload {
  padding: 13px 0px;
}
.fileUploadbox img {
  max-width: 50px;
  width: 100%;
}
.fileuploadedname {
  font-size: 15px !important;
  max-width: 260px;
  width: 100%;
  display: block;
}
.filetypes {
  font-size: 12px !important;
  max-width: 260px;
  width: 100%;
}
.file-upload input[type='file'] {
  padding: 27px 0px !important;
}

.register-sec.loginpage .letOrganizeSec {
  padding: 35px 15px 35px;
}
.loginpageForm .modal-body {
  padding: 20px 15px;
}
.Sociallogins {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.Sociallogins a {
  max-width: 210px;
  width: 100%;
  margin-bottom: 5px;
  margin-right: 0px;
}
.topbackground {
  background-position: -250px 0px;
}
}
.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 2px;
  right: 0;
  bottom: 0;
  height: 20px;
  width: 20px;
  transition: all 0.15s ease-out 0s;
  background: #fff;
  border: 1px solid #999;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #e5e7eb;
}
.option-input:checked {
  border: 1px solid #fff;
  background-color: #283672;
    color: #ffffff;
    cursor: pointer;

}
.option-input:checked::before {
  color: #d9486d;
  height: 40px;
  width: 40px;
  position: absolute;
  content: "✔";
  display: inline-block;
  font-size: 12px;
  left: 4px;
  line-height: 20px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: "";
  display: block;
  position: relative;
  z-index: 100;
}

.option-input.radio {
  border-radius: 50%;
}
.option-input.radio::after {
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Media Queries End
--------------------------------------------------------------*/
