@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap");
@import url("pay-style.css");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --font1: "Merriweather", serif;
  --font2: "Roboto", sans-serif;
  --font3: "Work Sans", sans-serif;
  --font4: "Inter", sans-serif;
  --font5: "Bitter", serif;
  --color1: #292929;
  --color2: #0c4da2;
  --color3: #ffffff;
  --color4: #00b3ba;
  --color5: #000000;
}

body {
  font-family: var(--font1);
  font-size: 15px;
  font-weight: 400;
  background-color: var(--color3);
  line-height: 1.8;
}

/* -------preloader------------ */

#formloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75)
    url("https://thebankingacademy.com/public/images/loading.gif") no-repeat
    center center;
  z-index: 10000;
}

.body-preloader {
  height: 100%;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-flow: column;
  flex-flow: column;
}

.body-preloader .preloader-spinner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.body-preloader .preloader-spinner .spinner__ring {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
}

.body-preloader .preloader-spinner .spinner__ring:after {
  content: " ";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #212121;
  border-color: var(--color4) transparent #2158a2;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  25% {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
  }

  50% {
    -webkit-transform: rotate(250deg);
    transform: rotate(250deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  25% {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
  }

  50% {
    -webkit-transform: rotate(250deg);
    transform: rotate(250deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

a {
  color: var(--color1);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: var(--font3);
}

/* p:last-child {
	margin-bottom: 0;
    font-family: var(--font3);

} */

span {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul,
ol {
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

b,
strong {
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font1);
  font-weight: 600;
  font-style: normal;
}

a {
  color: var(--color1);
  font-family: var(--font2);
}

a:hover {
  color: var(--color1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color1);
  line-height: 1.1;
  font-family: var(--font1);
}

.top-header-bar .logo img {
  width: 300px;
}

.top-header-bar .social-icons {
  float: right;
}

.top-header-bar .social-icons span {
  font-size: 20px;
  /* padding: 6px 10px; */
  margin-right: 0px;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
}

.top-header-bar .following-heading {
  color: #000;
  font-family: "serif";
  transition: 0.3s;
  font-size: 17px;
  font-weight: normal;
  margin: 10px 0 5px;
}

.main-header {
  background-color: var(--color1);
}

.navbar-light .navbar-nav .nav-link {
  font-family: var(--font1);
  font-weight: 600;
  color: var(--color3);
}

.btn-search {
  padding-right: 30px;
  font-size: 20px;
  color: #00265e;
}

.navbar-light .navbar-nav .nav-link {
  font-family: var(--font4);
}

.dropdown-item {
  font-family: var(--font4);
  color: var(--color1);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--color1);
  color: var(--color3);
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover,
.dropdown-item:focus {
  border-radius: 0px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--color3);
}

.dropdown-menu h6 {
  font-family: var(--font4);
  font-weight: 800;
  color: var(--color1);
}

.d-none-desktop {
  display: none;
}

/* banner-slider-css START */
.slider-section {
  padding: 0px !important;
}

#home-slider .owl-prev {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
  left: 0.5%;
  margin: 0px;
  display: block !important;
  border: 0px;
  background-color: var(--color4);
  line-height: 53px;
  transition: 1s;
  border-radius: 0;
}

#home-slider .owl-next {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
  right: 0.5%;
  margin: 0px;
  display: block !important;
  border: 0px;
  background-color: var(--color4);
  line-height: 53px;
  transition: 1s;
  border-radius: 0;
}

#home-slider .owl-prev i,
#home-slider .owl-next i {
  font-size: 30px;
  color: var(--color3);
}

#home-slider .owl-dots {
  position: absolute;
  right: 50px;
  bottom: 15px;
  left: 50px;
}

#home-slider .owl-dot {
  width: 13px;
  height: 13px;
  margin-right: 8px;
  line-height: 13px;
  border: 1px solid var(--color4);
  border-radius: 30px;
  background-color: var(--color4);
  font-family: var(--font2);
  font-weight: 600;
}

#home-slider .owl-dot.active {
  border: 1px solid var(--color3);
  background-color: var(--color3);
}

/* banner-slider-css END*/
/* about-section-css START*/
.about-section {
  padding: 40px 0px;
  clear: both;
}

.heading_abouts h4 {
  font-family: var(--font3);
  font-weight: 500;
  font-size: 20px;
}

.heading_abouts .title {
  font-size: 36px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 10px;
}

.heading_abouts .title::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 0;
}

.text-para p {
  font-family: var(--font4);
  color: var(--color1);
  line-height: 26px;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 10px;
}

.about-img {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 70px;
}

.about-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 100%;
  border: 20px solid var(--color4);
  z-index: -1;
}

.mr-15 {
  margin-right: 10px;
}

.button-read {
  position: relative;
}

.button-read:after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 0px;
}

.button-text {
  font-family: var(--font4);
  font-weight: 700;
  font-size: 16px;
  position: relative;
  border: 0;
  background: transparent;
  border-bottom: 2px solid #00b3ba;
}

.button-text::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: var(--color4);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.button-text:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.key-section {
  padding: 60px 0px;
  clear: both;
  position: relative;
  background: #ecf4fe;
}

.key-section h4,
.key-section .title {
  color: var(--color1);
}

.key-section .card {
  padding: 15px;
  border-radius: 0px;
  /* overflow: hidden;
    position: relative; */
  transition: all ease 0.5s;
  /* margin: 15px 15px 15px 15px; */
  min-height: 235px;
}

.icon-box {
  background: var(--color4);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  /* overflow: hidden;
    position: absolute;
    top: 15px;
    left: 20px; */
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  -ms-transition: -ms-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
}

.icon-box img {
  width: 50px;
  height: 50px;
  margin: 24px auto;
  display: block;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  -ms-transition: -ms-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
}

.description h4 {
  margin-top: 10px;
  transition: all ease 0.5s;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--font3);
  font-weight: 700;
}

.key-section .card:hover {
  background-color: var(--color4);
  transition: all ease 0.5s;
}

.key-section .card:hover .icon-box {
  background-color: var(--color1);
}

.key-section .card:hover .description h4 {
  color: var(--color1);
  transition: all ease 0.5s;
}

.key-section .card:hover img {
  transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

/* key-section-css END*/
/* key-section-css START*/
.key-Features {
  padding: 60px 0px;
  clear: both;
  background-image: url("../images/about/transparent-back-1.png");
  background-position: top right;
  background-repeat: no-repeat;
}

.key_Features {
  border: 1px solid #ddd;
  padding: 20px;
  transition: all ease 0.5s;
  margin: 15px 0;
  min-height: 275px;
}

.key_feature_icon img {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  display: block;
}

.key_feature_description p {
  font-size: 18px;
  line-height: 24px;
  font-family: var(--font4);
  text-align: center;
  font-weight: 600;
  color: var(--color1);
}

.key_Features:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 8px 14px 0 rgb(0 0 0 / 15%);
}

/* key-section-css END*/

/* Study-course START */
.study-course {
  padding: 50px 0px;
}

.single-study {
  border: 0px solid #e8e8e8;
  padding: 20px;
  margin-bottom: 30px;
  min-height: 471px;
  overflow: hidden;
  background: #f5faff;
  position: relative;
  cursor: pointer;
  transition: all 500ms ease;
}

.single-study:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #00b3ba;
  transform: scale(0, 0);
  transition: all 500ms ease;
}

.single-study:hover:before {
  transform: scale(1, 1);
}

.single-study:hover {
  background: none;
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}

.style-img {
  padding: 0px;
  overflow: hidden;
}

.single-study-content {
  padding: 15px;
  position: relative;
}

.single-study-content h3 {
  font-size: 23px;
  margin: 10px 0 10px 0;
  font-family: var(--font3);
  font-weight: 700;
}

.single-study-content p {
  font-weight: 400 !important;
  font-family: var(--font4);
  line-height: 26px;
  color: var(--color1);
}

.single-study-content img {
  width: 30px;
  height: 30px;
  line-height: 1;
  display: inline-block;
  background-color: transparent;
  position: absolute;
  /* bottom: -50px; */
  right: 20px;
  margin-bottom: 0;
}

.cta-banner {
  padding: 60px 0px;
  background-color: #00b3ba;
  background-image: url("../images/about/pattern2.png");
}

.cta-heading h3 {
  font-size: 30px;
  font-family: var(--font3);
  font-weight: 600;
  text-align: center;
}

.cta-btn a {
  border: 2px solid var(--color1);
  padding: 12px 60px 12px 40px;
  background: var(--color1);
  color: var(--color3);
  font-family: var(--font3);
  font-size: 18px;
  font-weight: 600;
  position: relative;
  transition: all 0.5s ease;
}

/* .cta-btn a:hover{
	background: transparent;
	color: var(--color1);
	border: 2px solid var(--color1);
} */
.cta-btn a::after {
  content: "";
  width: 20px;
  height: 7px;
  display: inline-block;
  position: absolute;
  right: 23px;
  top: 20px;
  background-image: url("../images/blackarrow-white.png");
  background-repeat: no-repeat;
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}

.cta-btn a:hover::after {
  right: 20px;
  background-image: url("../images/blackarrow-white.png");
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}

.modal.fade .modal-dialog.modal-dialog-zoom {
  -webkit-transform: translate(0, 0) scale(0.5);
  transform: translate(0, 0) scale(0.5);
}

.modal.show .modal-dialog.modal-dialog-zoom {
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}

.form-title h5 {
  font-size: 24px;
  font-family: var(--font3);
  color: var(--color1);
  font-weight: 700;
  margin-bottom: 17px;
  text-align: left;
}

.registration-form .form-control,
.form-select {
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 0px;
  font-family: var(--font4);
  /* font-weight: 500; */
  color: var(--color1);
  border: 1px solid #ced4da;
}

.registration-form .form-control:focus,
.form-select:focus {
  border-color: var(--color4);
}

.checkbox a {
  color: var(--color2);
}

.registration-form .checkbox label {
  color: var(--color1);
  font-family: var(--font4);
  font-weight: 500;
  font-size: 14px;
}

.registration-form .form-check-input {
  color: var(--color1);
  font-family: var(--font4);
  font-weight: 500;
}

.registration-form .label a {
  color: var(--color2) !important;
  text-decoration: underline;
}

.registration-form .btn-submit {
  border: 1px solid var(--color1);
  background: var(--color1);
  color: var(--color3);
  font-weight: normal;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 0px;
  font-family: var(--font3);
}

.modal-close {
  background: var(--color4) none repeat scroll 0 0;
  cursor: pointer;
  height: 25px;
  opacity: 1;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 25px;
  z-index: 9999;
  color: #fff !important;
  outline: none;
  text-shadow: none;
  font-size: 15px;
  border-radius: 0;
  line-height: 25px;
}

.modal-close:hover {
  opacity: 1 !important;
}

.modal-close:active {
  box-shadow: none;
}

/* ---------------------------------------------------------- */

.services-section {
  position: relative;
  background-color: #00b3ba17;
}

.services-section .services-block {
  padding: 0px;
  float: left;
  /* z-index:1; */
}

.services-block {
  position: relative;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 40px 15px;
  margin: 0 auto;
}

.services-block .inner-box {
  position: relative;
  text-align: center;
  min-height: 180px;
  padding: 0px 37px 28px;
  margin: 50px 10px;
  background-color: #fff;
  /* background: -ms-linear-gradient(left, #EAEAED 0%, #ffffff 100%);
	background: -moz-linear-gradient(left, #EAEAED 0%, #ffffff 100%);
	background: -o-linear-gradient(left, #EAEAED 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0, #EAEAED), color-stop(100, #ffffff));
	background: -webkit-linear-gradient(left, #EAEAED 0%, #ffffff 100%);
	background: linear-gradient(to right, #EAEAED 0%, #ffffff 100%); */
}

/* .services-block .inner-box:hover{
	background: -ms-linear-gradient(left, #ffffff 0%, #EAEAED 100%);
	background: -moz-linear-gradient(left, #ffffff 0%, #EAEAED 100%);
	background: -o-linear-gradient(left, #ffffff 0%, #EAEAED 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0, #ffffff), color-stop(100, #EAEAED));
	background: -webkit-linear-gradient(left, #ffffff 0%, #EAEAED 100%);
	background: linear-gradient(to right, #ffffff 0%, #EAEAED 100%);
} */

.services-block .inner-box .icon-box {
  position: relative;
  width: 100px;
  height: 100px;
  color: #ffffff;
  font-size: 50px;
  text-align: center;
  line-height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  margin-top: -59px;
  display: inline-block;
  margin-bottom: 40px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  /* background: -ms-linear-gradient(top, #3140FC 0%, #0b1599 100%);
	background: -moz-linear-gradient(top, #3140FC 0%, #0b1599 100%);
	background: -o-linear-gradient(top, #3140FC 0%, #0b1599 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3140FC), color-stop(100, #0b1599));
	background: -webkit-linear-gradient(top, #3140FC 0%, #0b1599 100%); */
  background: var(--color4);
}

.services-block .inner-box .icon-box .icon {
  position: relative;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.services-block .inner-box:hover .icon-box {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.services-block .inner-box h5 {
  position: relative;
  font-weight: 600;
  line-height: 1.4em;
  margin-top: -25px;
  font-family: var(--font3);
}

.services-block .inner-box h5 a {
  position: relative;
  color: var(--color1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.services-block .inner-box:hover h5 a {
  color: #0076a7;
}

.services-block .inner-box .text {
  position: relative;
  font-size: 16px;
  color: #1a1e66;
  line-height: 1.7em;
  margin-bottom: 30px;
}

.services-block .inner-box .plus-box {
  position: relative;
  width: 40px;
  height: 40px;
  color: #000;
  font-size: 14px;
  text-align: left;
  border-radius: 50px;
  line-height: 38px;
  background-color: #00b3ba17;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  font-family: var(--font4);
  font-weight: 500;
}

.services-block .inner-box .plus-box1 {
  top: 50px;
}

.services-block .inner-box .plus-box2 {
  top: 25px;
}

.services-block .inner-box .plus-box .plus {
  position: absolute;
  right: 0px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  background-color: var(--color4);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.flaticon-plus-symbol:before {
  content: "\f141";
}

.services-block .inner-box .plus-box {
  width: 107px;
  padding: 0px 0px 0px 25px;
}

.logo img {
  width: 320px;
}

/* ------------------------------------- */

.services-section-key {
  position: relative;
  padding: 70px 0 0;
  background-color: #f0f4ff;
}

.services-block-key {
  position: relative;
}

.services-block-key .inner-box {
  position: relative;
  text-align: center;
  padding: 0px 25px 30px;
  min-height: 165px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  margin: 50px 0;
}

.services-block-key .inner-box:hover {
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
}

.services-block-key .inner-box:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 0px;
  height: 4px;
  background-color: var(--color4);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.services-block-key .inner-box:after {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  width: 0px;
  height: 4px;
  background-color: var(--color4);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.services-block-key .inner-box:hover::before,
.services-block-key .inner-box:hover::after {
  width: 100%;
}

.services-block-key .inner-box .icon-box {
  position: relative;
  width: 90px;
  height: 90px;
  color: #ffffff;
  font-size: 50px;
  text-align: center;
  line-height: 90px;
  margin: 0 auto;
  border-radius: 10%;
  margin-top: -59px;
  display: inline-block;
  margin-bottom: 20px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  background-color: var(--color4);
}

.services-block-key .inner-box h6 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 15px;
}

.services-block-key .inner-box h6 a {
  position: relative;
  color: #012068;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.services-block-key .inner-box .text {
  position: relative;
  font-size: 16px;
  color: #000;
  line-height: 1.7em;
  font-family: var(--font4);
  font-weight: 600;
}

.heading_service .title {
  font-size: 36px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 50px;
}

.heading_service .title::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
}

.heading_study .title {
  font-size: 36px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 50px;
}

.heading_study .title::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
}

.heading_key .title {
  font-size: 36px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 50px;
}

.heading_key .title::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
}

/* ---------------------------------------- */

.our-faculty {
  padding: 60px 0;
  /* background: #F8FBFF; */
}

.faculty-header h3 {
  position: relative;
  font-family: var(--font3);
  font-weight: 700;
  padding: 0px 0 15px;
  text-align: center;
  font-size: 36px;
}

.faculty-header h3::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
}

.faculty-text p {
  font-family: var(--font4);
  font-size: 16px;
  color: var(--color1);
  text-align: center;
  margin-bottom: 50px;
}

.faculty-box img {
  padding: 10px;
  border: 2px solid var(--color4);
  cursor: pointer;
}

.faculty-box p {
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  font-family: var(--font4);
  color: var(--color1);
  font-weight: 600;
}

.our-leading h5 {
  font-family: var(--font3);
  font-size: 35px;
  text-align: center;
  margin: 20px 0 30px;
  font-weight: 600;
}

.faculty-content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: -30px 175px 0px 40px;
  padding: 18px 0;
  background-color: #fff;
  border-bottom: 5px solid transparent;
  -webkit-transition: 0.5s cubic-bezier(0.3, 0.57, 0.55, 1);
  /* transition: .5s cubic-bezier(.3,.57,.55,1); */
  border-bottom: 4px solid #00b3ba;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
}

.faculty-content p {
  text-align: center;
  margin-bottom: 0;
  font-size: 17px;
  font-family: var(--font4);
  color: var(--color1);
  font-weight: 600;
}

.footer-area {
  background-color: #000;
  padding: 12px 0px;
}

.footer-logo img {
  padding: 40px 0;
  width: 250px;
}

.footer-logo p {
  font-family: var(--font4);
  font-size: 16px;
  color: #fff;
}

.footer-link {
  padding: 40px 0 30px;
}

.footer-link h3 {
  position: relative;
  color: var(--color3);
  font-family: var(--font3);
  font-size: 25px;
}

.footer-link h3::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
}

.link-text {
  padding-left: 22px;
}

.link-text ul li {
  list-style: none;
}

.link-text ul li a {
  color: var(--color3);
  font-size: 16px;
  font-family: var(--font4);
  position: relative;
}

.link-text ul li a::after {
  position: absolute;
  content: "\f178";
  font-family: "FontAwesome";
  right: auto;
  top: 2px;

  font-size: 12px;
  left: -20px;
}

.link-text ul li a:hover {
  color: var(--color4);
  position: relative;
  padding-left: 5px;
}

.footer-area-bottom {
  background: #000;
  padding: 12px 0;
  border-top: 1px solid #fff;
}

.copyright p {
  color: #ddd;
  font-family: var(--font4);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.copyright p a {
  color: var(--color3);
  font-family: var(--font4);
}

.social-icons-footer {
  padding-top: 30px;
}

.social-icons-footer span {
  font-size: 20px;
  /* padding: 6px 10px; */
  margin-right: 15px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  /* margin-left: 6px; */
  border-radius: 50%;
}

.hover-underline {
  display: inline-block;
  position: relative;
}

.hover-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color4);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline:hover::after {
  color: #00b3ba;
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* -------------------------- */


/* Whatsapp icon css */


 .whatsapp-float {
    position: fixed;
    bottom: 130px;
    right: 40px;
    z-index: 1000;
  }

  /* WhatsApp Icon Style */
  .whatsapp-float img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite;
  }

  /* Pulse Animation */
  @keyframes whatsapp-pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(140, 218, 168, 0.7);
    }
    70% {
      transform: scale(1.1);
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  /* Hover Effect */
  .whatsapp-float img:hover {
    animation: none;
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  }

  /* Optional Tooltip */
  .tooltip {
    position: absolute;
    right: 50px;
    bottom: 5px;
    background: #25d366;
    color: white;
    padding: 2px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.8s;
    font-size: 14px;
    font-family: var(--font3);
    line-height: 25px;
    cursor: pointer;
  }

  .whatsapp-float img:focus-visible{
    outline: 0;
  }

  .whatsapp-float:hover .tooltip {
    opacity: 1;
  }

/* Whatsapp icon css end */


.inhouse-section {
  padding: 50px 0;
}

.inhouse {
  background-image: url("../images/banner-white.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  /* margin-bottom: 40px; */
}

.inhouse-img img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.in-house h2 {
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 30px;
}

.in-house h2::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
}

.in-house p {
  color: var(--color1);
  font-family: var(--font4);
  font-size: 16px;
  font-weight: 500;
}

.faculty-btn a {
  color: var(--color1);
  font-family: var(--font4);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: var(--color1);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font1);
}

.hover-underline-animation:hover {
  color: var(--color1);
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color1);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
  color: var(--color1);
}

.app_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 25px 0 10px 0;
}

.app_btn a img {
  max-width: 100%;
  width: 160px;
  height: auto;
}

.app_btn a img:hover {
  filter: drop-shadow(2px 2px 8px #ffffff);
}

/* ---------------------------faculty page----------------------- */
.faculty-page {
  padding: 40px;
}

.faculty-page-box {
  border-radius: 5px;
  width: 68%;
  transition: all 1000ms ease;
  /* box-shadow: 0px 0px 15px rgb(0 0 0 / 15%); */
  background: #fff;
  margin: 45px auto;
}

.faculty-page-box img {
  padding: 10px;
}

.instructor-designation {
  font-family: var(--font4);
  color: var(--color4);
  font-size: 18px;
  font-weight: 600;
  padding: 0px 0 10px;
  line-height: 30px;
}

.faculty-page-text h2 {
  padding: 50px 0 0;
  font-family: var(--font3);
  color: var(--color1);
  font-size: 24px;
}

.faculty-page-text p {
  color: var(--color1);
  font-family: var(--font4);
  font-size: 16px;
  margin-bottom: 10px;
}

.tob-header {
  background: linear-gradient(
    90deg,
    #0076a7,
    #007fad,
    #0088b1,
    #0091b5,
    #0099b7,
    #00a2b9,
    #00abba,
    #00b3ba
  );
  padding: 2px;
}

.social-media-left ul {
  padding: 0;
  margin: 0;
}

.social-media-left ul li {
  list-style: none;
  display: inline-block;
  /* padding: 5px 0; */
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-right: 20px;
  padding-right: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font1);
}

.social-media-left ul li:last-child {
  border-right: 0px;
}

.social-media-left ul li i {
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}

.text-white {
  margin-right: 10px;
}

.social-icons {
  float: right;
}

.social-icons span {
  font-size: 12px;
  margin-right: 0px;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  margin-left: 6px;
  line-height: 21px;
  border-radius: 50%;
}

.courses-btn a {
  color: var(--color4);
  font-family: var(--font4);
  font-size: 15px;
  font-weight: 800;
}

.hover-underline-btn {
  display: inline-block;
  position: relative;
  color: var(--color1);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font1);
}

.hover-underline-btn:hover {
  color: var(--color1);
}

.hover-underline-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color1);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-btn:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
  color: var(--color1);
}

.faculty-page-area {
  background-image: url("../images/new-bg-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  position: relative;
  z-index: 999;
}

.breadcumb-overlay {
  position: absolute;
  background: rgb(10 27 40 / 50%) none repeat scroll 0 0;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  z-index: -1;
}

.faculty-section-headline h3 {
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 36px;
  font-family: var(--font3);
  /* text-transform: uppercase; */
  font-weight: 600;
  color: #fff;
}

.home-cum {
  padding: 170px 0;
}

.home-cum ul li {
  display: inline-block;
  color: #fff;
  padding: 0px 10px 0px 20px;
  position: relative;
  font-size: 16px;
  font-family: var(--font4);
  list-style: none;
}

.home-cum ul li.home-bread::after {
  position: absolute;
  content: "\f105";
  font-family: fontAwesome;
  right: -10px;
  top: 0;
}

.faculty-border-box {
  display: flex;
  border: 1px solid transparent;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
  margin-bottom: 50px;
  padding-bottom: 20px;
}

.shrink {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0 8px 21px rgb(52 52 51 / 13%);
  -webkit-box-shadow: 4px 4px 30px 0px rgba(42, 67, 113, 0.15);
  -moz-box-shadow: 4px 4px 30px 0px rgba(42, 67, 113, 0.15);
  box-shadow: 4px 4px 30px 0px rgba(42, 67, 113, 0.15);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Sticky Header */
.shrink {
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  -moz-transition: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@-webkit-keyframes stickySlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes stickySlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* search popup start  */
.td-search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
  width: 25%;
  z-index: 9999;
}

.td-search-popup .search-form {
  width: 35%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.td-search-popup .search-form .form-group .form-control {
  border: none;
  border-radius: 0px;
  height: 57.2px;
  padding: 0 75px 0 25px;
  background: #f7f9fb;
}

.td-search-popup .search-form .form-group .form-control:hover,
.td-search-popup .search-form .form-group .form-control:focus,
.td-search-popup .search-form .form-group .form-control:active {
  outline: 0;
  box-shadow: none;
}

.td-search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0px;
  width: 60px;
  height: 57px;
  border: 0;
  border-radius: 0px;
  transition: all 0.4s ease;
  padding: 0;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #0c4da2;
  font-size: 20px;
}

.td-search-popup .search-form .submit-btn:hover,
.td-search-popup .search-form .submit-btn:focus,
.td-search-popup .search-form .submit-btn:active {
  outline: 0;
  box-shadow: none;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 960px;
  display: block;
  background: rgb(0 0 0 / 92%);
  z-index: 999;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.97;
}

#close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  color: var(--color3);
  cursor: pointer;
  font-size: 25px;
  width: 40px;
  height: 40px;
  background: #0c4da2;
  text-align: center;
  line-height: 40px;
}

/* ---------------------------modal----------------------------- */

.faculty-modal {
  padding: 20px 0;
}

.faculty-modal img {
  border: 4px solid var(--color4);
  border-radius: 3px;
}

.event_modal .modal-dialog {
  margin-top: 3%;
  max-width: 50%;
}

.event_modal .modal-content {
  padding: 10px 10px 20px;
  /* padding-bottom: 0px; */
  box-shadow: 4px 4px 30px 0px rgb(42 67 113 / 15%);
}

.modal {
  z-index: 9999999999;
}

.modal-faculty-content h4 {
  padding: 20px 10px 0;
}

.modal-faculty-content p {
  font-family: var(--font4);
  color: var(--color4);
  font-size: 15px;
  font-weight: 600;
  padding: 0px 10px;
}

.popup-text p {
  font-family: var(--font4);
  color: var(--color1);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 2px;
}

.modal-dialog button.close {
  background: var(--color1) none repeat scroll 0 0;
  border: 0px solid transparent;
  border-radius: 0px;
  cursor: pointer;
  font-size: 22px;
  height: 35px;
  opacity: 1;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 35px;
  z-index: 9999;
  color: #fff;
  text-shadow: none;
  font-size: 20px;
  line-height: 35px;
}

.get-a-touch-modal .modal-content {
  background: #fff;
  border: none;
  border-radius: 0px;
  position: relative;
}

.get-a-touch-modal .modal-content:before {
  position: absolute;

  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ------------------------- */
.small-business-area {
  padding: 50px 0;
}

.business-img {
  position: relative;
  margin: 0 auto;
}

.business-img img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* .business-img::before{
	content: "";
    position: absolute;
    top: -60px;
    left: 115px;
    width: 500px;
    height: 480px;
    border: 10px solid var(--color4);
    z-index: -1;
} */
.small-heading h3 {
  position: relative;
  font-size: 30px;
  font-family: var(--font3);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.small-heading h3::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 11px;
  margin-left: 47%;
}

.business-list img {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: -40px;
}

.business-list ul li {
  list-style: none;
  font-family: var(--font4);
  color: var(--color1);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-left: 28px;
  list-style: square;
  margin-bottom: 10px;
}

.tab-title {
  margin-bottom: 15px;
  font-family: var(--font3);
  font-weight: 700;
  font-size: 25px;
}

/* .business-list ul li::before{
	content: "";
    display: block;
    position: absolute;
    left: -25px;
    top: 7px;
    width: 12px;
    height: 12px;
    border: 4px solid var(--color4);
    background: var(--color1);
    
    box-shadow: 0px 0px 0px 3px var(--color1) inset;
} */
.business-list-area {
  padding: 50px 0;
  /* background: #F3F7FE; */
}

/* .business-list-area .overlay {
    background: rgba(0,179,186,0.22);
    padding: 50px 0;
} */

.business-card {
  padding: 45px 30px 20px 70px;
  margin: 0 15px 30px 15px;
  position: relative;
  min-height: 175px;
  background: #fff;
  border-radius: 10px;
}

.business-card .pic {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 45px;
  left: -40px;
  transform: translateX(0%) rotateZ(313deg) scale(0.95);
  box-shadow: 0px 0px 40px rgb(0 179 186 / 17%) !important;
  border-radius: 10px;
  background: #fff;
  border: 3px solid rgb(0 179 186 / 44%);
}

.business-card .pic img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 12px;
  transform: translateX(0%) rotateZ(50deg) scale(0.95);
}

.business-card .description {
  font-size: 16px;
  /* font-style: italic; */
  color: var(--color1);
  font-family: var(--font4);
  margin-bottom: 0;
  font-weight: 500;
}

.business-card .title {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #d45113;
  margin: 0;
}

.business-card .post {
  display: inline-block;
  font-size: 17px;
  color: #d45113;
}

.training {
  /* box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.06); */
  padding: 45px 30px 20px 80px;
  margin: 0 15px 30px 15px;
  position: relative;
  min-height: 150px;
  background: #fff;
}

.business-training-area {
  padding: 50px 0;
  background: #f3f7fe5e;
}

.new-bg {
  background-color: rgba(38, 103, 255, 0.07);
  position: relative;
  z-index: 1;
  clear: both;
}

.triangle-pattern-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.triangle-pattern-right::before {
  background-image: url("../images/triangle-pattern-2.png");
  background-repeat: no-repeat;
  background-position: right center;
}

.feature-item {
  padding: 32px 32px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(2, 24, 95, 0.06);
  box-shadow: 0 10px 30px 0 rgba(2, 24, 95, 0.06);
  text-align: center;
  background: #fff;
  border-radius: 5px;
  min-height: 290px;
  margin-bottom: 30px;
}

.feature-item__icon {
  width: 90px;
  min-height: 90px;
  border-radius: 25px;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  align-content: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.feature-item__icon img {
  width: 60px;
  height: 60px;
  line-height: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.feature-item:hover .feature-item__icon img {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.feature-item__content p {
  line-height: 27px;
  color: #000;
  font-size: 16px;
  font-family: var(--font1);
  font-weight: 500;
}

.training .pic {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 35px;
  left: -40px;
  transform: translateX(0%) rotateZ(313deg) scale(0.95);
  box-shadow: 0px 0px 40px rgb(243 247 254) !important;
  border-radius: 10px;
}

.training .pic img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 12px;
  transform: translateX(0%) rotateZ(50deg) scale(0.95);
}

.feature-item__icon-1 {
  background-color: #37b546;
}

.feature-item__icon-2 {
  background-color: #423288;
}

.feature-item__icon-3 {
  background-color: #0084ff;
}

.feature-item__icon-4 {
  background-color: #fd4a36;
}

.feature-item__icon-5 {
  background-color: #0f418f;
}

.feature-item__icon-6 {
  background-color: #b33838;
}

.cta-banner-training {
  background: #0091b5;
  padding: 60px 0px;
  background-image: url("../images/about/pattern2.png");
}

.cta-heading-training h3 {
  font-size: 30px;
  font-family: var(--font3);
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.cta-btn-training a {
  border: 1px solid var(--color1);
  padding: 17px 60px 17px 40px;
  background: var(--color1);
  color: var(--color3);
  font-family: var(--font3);
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.cta-btn-training a::after {
  content: "";
  width: 20px;
  height: 7px;
  display: inline-block;
  position: absolute;
  right: 23px;
  top: 25px;
  background-image: url("../images/blackarrow-white.png");
  background-repeat: no-repeat;
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}

.cta-btn-training a:hover::after {
  right: 20px;
  background-image: url("../images/blackarrow-white.png");
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}

.key-question-area {
  background: #f3f7fe;
  padding: 50px 0;
}

.agenda {
  padding: 40px 0px;
  clear: both;
}

.tabs > ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #ccc;
  font-size: 0;
}

.tabs > ul .indicator {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 20%;
  background: #1e88e5;
  transform: translateZ(0) translateX(0);
  transition: all 0.3s ease;
}

.tabs > ul li {
  display: inline-block;
  font-size: 14px;
  width: 10%;
  border-radius: 0 !important;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tabs > ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 8px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  color: var(--color1);
  font-weight: bold;
  transition: all 0.3s ease 0.4s;
  font-size: 17px;
}

.tabs > ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  top: 0;
  background: var(--color4);
  transform: translateZ(0) translateY(100%);
  transition: all 0.3s ease 0.3s;
  z-index: -1;
}

.tabs > ul li a[aria-selected] {
  color: #fff;
}

.tabs > ul li a[aria-selected]:before {
  transform: translateZ(0) translateY(0);
}

.tabs > section[aria-hidden="true"] {
  display: none;
}

.tab-pane {
  padding: 30px 30px 10px;
  border: 1px solid #eff1f2;
  box-shadow:
    0 1px 3px rgb(0 0 0 / 12%),
    0 1px 2px rgb(0 0 0 / 24%);
  border-radius: 10px;
}

.tabs .nav-link {
  border-color: #eff1f2 #eff1f2 rgba(0, 0, 0, 0.1);
  isolation: isolate;
}

.tabs .nav-link:focus {
  color: var(--color1);
}

.tabs .nav-link:hover {
  color: var(--color1);
}

.modal.fade .modal-dialog.modal-dialog-zoom {
  -webkit-transform: translate(0, 0) scale(0.5);
  transform: translate(0, 0) scale(0.5);
}

.modal.show .modal-dialog.modal-dialog-zoom {
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}

/* --------------------------------------- */

.agenda-section {
  padding: 40px 0px;
}

.agenda-section .nav-tabs {
  border-top: 1px solid #00b3ba;
  border-bottom: 1px solid #00b3ba;
}

.agenda-section button.owl-prev {
  position: absolute;
  left: -15px;
  top: 40%;
  transform: translateY(-50%);
  background-color: #00b3ba !important;
  width: 30px;
  height: 30px;
  line-height: 25px !important;
  border-radius: 100% !important;
  color: #fff !important;
}

.agenda-section button.owl-prev span {
  font-size: 25px;
}

.agenda-section button.owl-next {
  position: absolute;
  right: -15px;
  top: 40%;
  transform: translateY(-50%);
  background-color: #00b3ba !important;
  width: 30px;
  height: 30px;
  line-height: 25px !important;
  border-radius: 100% !important;
  color: #fff !important;
}

.agenda-section button.owl-next span {
  font-size: 25px;
}

.agenda-section .owl-dots {
  display: none;
}

.agenda-section .item {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.agenda-section .item li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  background-color: #00b3ba;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  flex-wrap: wrap;
  text-align: center;
  font-size: 17px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    #0076a7,
    #007fad,
    #0088b1,
    #0091b5,
    #0099b7,
    #00a2b9,
    #00abba,
    #00b3ba
  );
}

.agenda-section .item li.active a {
  background: linear-gradient(
    90deg,
    #0076a7,
    #007fad,
    #0088b1,
    #0091b5,
    #0099b7,
    #00a2b9,
    #00abba,
    #00b3ba
  );
  color: #fff;
}

.agenda-section .tab-content {
  /* padding: 20px; */
  background-color: #fff;
  font-size: 17px;
  text-align: left;
  line-height: 25px;
  margin-top: 20px;
  border-radius: 19px;
}

.agenda-section .tab-content h3 {
  font-size: 40px;
  font-weight: bold;
}

.full-agenda {
  padding: 30px 0 0;
}

.full-agenda h4 {
  text-align: center;
  font-size: 24px;
  font-family: var(--font3);
  font-weight: 700;
  background-color: #0083af12;
  padding: 25px 0;
}

.cta-agenda h3 {
  font-size: 33px;
  font-family: var(--font3);
  font-weight: 700;
  text-align: center;
}

.class-faculty {
  /* background: #F3F7FE; */
  padding: 40px 0 60px;
}

/* .anchored-header{
    padding-top: 40px;
  } */
/* ---------------------------------------------------- */
.contact-area {
  background: #fbfcff;
}

.contact-section {
  padding: 50px 0;
}

.contact-section .card {
  border: 0px;
  background-color: #fff;
  padding: 35px 22px 20px;
  border-radius: 0px;
  box-shadow: 0px 7px 20px 0 rgb(36 41 66 / 15%);
}

.contact-heading h2 {
  position: relative;
  font-size: 36px;
  font-family: var(--font3);
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

.contact-heading h2::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 11px;
  margin-left: 44%;
}

.contact-text h4 {
  font-size: 22px;
  font-family: var(--font3);
  font-weight: 600;
  margin-bottom: 50px;
}

.contact-icon h5 {
  display: inline-block;
  margin-left: 30px;
  font-family: var(--font4);
  font-weight: 600;
  font-size: 18px;
}

.contact-number a {
  margin-left: 55px;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font4);
  text-decoration: none;
  color: var(--color1);
}

.contact-email {
  padding-top: 50px;
}

.contact-email h5 {
  display: inline-block;
  margin-left: 30px;
  font-family: var(--font4);
  font-weight: 600;
  font-size: 18px;
}

.contact-email-id a {
  margin-left: 55px;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font4);
  text-decoration: none;
  color: var(--color1);
}

.contact-social-icon h5 {
  display: inline-block;
  margin-left: 30px;
  font-family: var(--font4);
  font-weight: 600;
  font-size: 18px;
}

.contact-social-icon {
  padding-top: 50px;
  margin-bottom: 20px;
}

.contact-icon-social {
  padding: 10px 0 0 40px;
}

/* ------------------------------------------- */

.agenda-faq {
  padding: 50px 0;
  background: #f3f7fe;
}

.accordion-style-two .accordion .card {
  border: 1px solid #ccc !important;
  border-radius: 2px;
}

.accordion-style-two .accordion .card .card-header {
  padding: 0;
  background: none;
}

.accordion-style-two .accordion .card .card-header a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 1px solid var(--primary);
  margin: -1px;
  border-radius: 2px;
  padding: 13px 37px 13px 16px;
  z-index: 5;
  background-color: var(--color1);
  color: #fff;
}

.accordion-style-two .accordion .card .card-header a::before {
  position: absolute;
  content: "\f0d7";
  font-family: "FontAwesome" !important;
  right: 16px;
  top: 14px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-style-two .accordion .card .card-header a.collapsed {
  color: var(--black);
  border-color: var(--gray-4);
  background-color: transparent;
  font-size: 1rem;
  background: linear-gradient(
    90deg,
    #0076a7,
    #007fad,
    #0088b1,
    #0091b5,
    #0099b7,
    #00a2b9,
    #00abba,
    #00b3ba
  );
  color: #fff;
  border: 1px solid #ccc;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font4);
}

.accordion-style-two .accordion .card .card-header a.collapsed::before {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.accordion-style-two .accordion .card .card-body {
  padding: 16px;
}

.accordion-style-two .accordion .card .card-body .text {
  color: #000;
}

/* .inhouse-section{
	   padding: 136px 0;
   } */
/* .coming-heading h1{
	   font-family: var(--font3);
	   font-size: 50px;
	   color: var(--color1);
	   text-align: center;
   } */
.coming-heading h1 {
  font-family: var(--font3);
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(
    90deg,
    #0076a7,
    #007fad,
    #0088b1,
    #0091b5,
    #0099b7,
    #00a2b9,
    #00abba,
    #00b3ba
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-heading p {
  font-size: 19px;
  font-family: var(--font4);
  font-weight: 500;
  color: var(--color1);
}

.back-btn a i {
  margin-right: 10px;
}

.back-btn {
  padding: 30px 0;
}

.back-btn a {
  padding: 10px 20px;
  border: 2px solid var(--color1);
  background: var(--color1);
  color: #fff;
  border-radius: 0px;
  font-size: 19px;
  font-family: var(--font3);
  transition: all 0.5s ease;
}

.back-btn a:hover {
  background: transparent;
  color: var(--color1);
}

.comming-img img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.pt-55 {
  padding-top: 55px;
}

/* ----------------------------------- */

/* .pricing-container  {
	box-sizing:border-box;
	padding: 50px 0;
}

#pricing-cards {
	display: flex;
	font-size: 14px;
	justify-content: center;
	padding: 50px 0 0;
}

.pricing-container .price-card {
	background-color: #00b3ba2e;
	color:#333;
	font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
	display: block;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	transition: all 0.25s;
	position: relative;
	margin: 0 6px;
	flex-grow: 1;
	flex-shrink:1;
}

.pricing-container .price-card:hover {
	transform: translateY(-5px);
		box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
} */

/* - - - - - - - - - Header Section - - - */

/* .pricing-container .price-card--header {
	
	margin: 0;
	padding: 10px 0;
	text-align: center;
}

.pricing-container .price-card--header h4 {
	margin: 0;
	padding: 0;
	font-size: 28px;
	color: #fff;
	padding: 10px 0;
	font-family: var(--font3);
	background: #333;
  
}




.pricing-container .price-card--price {
	text-align: center;
	padding: 28px 0 6px 0;
}

.pricing-container .price-card--price-text {
	font-size: 48px;
}

.pricing-container .price-card--price-number {
	font-weight: 500;
	opacity: 0.89;
	
}

.odometer div {
	display: inline-block;
}

.pricing-container .price-card--price-number:before {
	content: "US$";
	font-size: 24px;
	top: -16px;
	display: inline-block;
	position: relative;
}

.pricing-container .price-card--price-number:after {
    content: "";
    font-size: 12px;
    display: inline-block;
    color: var(--color4);
    font-weight: 500;
    font-family: var(--font3);
}

.pricing-container .price-card--price-conditions {
    padding: 14px 0;
    color: var(--color4);
    line-height: 1.5;
    font-size: 17px;
    font-family: var(--font3);
    font-weight: 400;
}






.pricing-container .price-card--cta {
	padding: 0 20px 24px;
	text-align: center;
}

.pricing-container .price-card--cta--button.btn{
	min-width:20px;
	display:block;
	max-width:183px;
	margin:0 auto;
}







.pricing-container .price-card--features {

	padding: 16px 0 20px;
}

.pricing-container ul.price-card--features--list {
	padding: 0 5px 0 10px;
	list-style: none;
	margin: 0;
}
.pricing-container li.price-card--features--item {
    margin: 20px 10px;
    padding-left: 8px;
    line-height: 30px;
    font-size: 16px;
    padding: 0px 10px 20px;
    font-family: var(--font4);
    font-weight: 500;
    border-bottom: 1px solid #3333336b;
}
.pricing-container
	li.price-card--features--item:not(.features-disabled):before {
	content: "✓";
	color: #333;
	display: block;
	position: absolute;
	left: 10px;
}

.pricing-container li.price-card--features--item.features-disabled {
	opacity: 0.1;
	
}
.pricing-container .price-card--mobile-features-toggle {
	text-align: center;
	margin: 24px 0 0;
	padding: 16px 0;
	cursor: pointer;
	display: none;
	color: green;
}
.pricing-container .price-card--mobile-features-toggle:after {
	content: "Show All Features ▾";
}
.pricing-container .price-card--mobile-features-toggle.hideall:after {
	content: "Hide Features ▴";
}
.pricing-container .price-card--hero {
	margin: -38px 6px 0;
	
	z-index: 10;
}

.pricing-container .price-card--hero-text {
    background-color: linear-gradient(90deg, #0076a7, #007fad, #0088b1, #0091b5, #0099b7, #00a2b9, #00abba, #00b3ba);
    height: 38px;
    color: #fff;
    line-height: 38px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font3);
    font-size: 16px;
}
.pricing-container .only-yearly {
	position: relative;
}

.pricing-container .only-yearly .price-card--price-number {
	transition: opacity 0.2s;
}

.pricing-container .only-yearly .only-yearly--text {
	position: absolute;
	top: -0.2em;
	left: 0;
	right: 0;
	display: none;
}
.pricing-container .only-yearly .only-yearly--text span {
	font-size: 14px;
}

.pricing-container .only-yearly.if-monthly .price-card--price-number {
	opacity: 0;
}

.pricing-container .only-yearly.if-monthly .only-yearly--text {
	display: block;
}
.pricing-switch h2{
	margin: 40px auto 100px;
	text-align: center;
	line-height: 1.4;
	position: relative;
	max-width: 1280px;
}
.pricing-switch h2::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--color4);
    display: block;
    margin-top: 11px;
    margin-left: 47%;
}
.pricing-switch .switch-label {
	display: inline-block;
	width: 200px;
	text-align: center;
	opacity: 0.4;
	font-size: 16px;
	cursor: pointer;
	padding: 0 20px;
}

.pricing-switch .switch-label .save-money {
	color: #4caf50;
	font-style: italic;
	padding-left: 8px;
}
.pricing-switch .save-money--mobile {
	color: #4caf50;
	font-style: italic;
	padding-top: 22px;
	display: none;
}

.pricing-switch .switch-label.active {
	font-size: 18px;
	opacity: 1;
}
.pricing-switch .switch-label-monthly {
	text-align: right;
}
.pricing-switch .switch-label-yearly {
	text-align: left;
}

.pricing-switch .switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
	vertical-align: -50%;
	margin: 0;
}

.pricing-switch .switch input {
	display: none;
}

.pricing-switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, #0076a7, #007fad, #0088b1, #0091b5, #0099b7, #00a2b9, #00abba, #00b3ba);
	border-radius: 34px;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

.pricing-switch .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	border-radius: 50%;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

.pricing-btn .btn{
	width: 200px;
	height:45px;
	background: transparent;
	border:1px solid var(--color4);
	color:#fff;
	border-radius: 5px;
	cursor: pointer;
	margin:20px 90px;
	font-size: 17px;
    font-family: var(--font3);
	padding: 10px 15px;
	transition: all .5s ease;
	position: relative;
	
}
.pricing-btn .btn:hover{
	
	background: linear-gradient(90deg, #0076a7, #007fad, #0088b1, #0091b5, #0099b7, #00a2b9, #00abba, #00b3ba);
	color: #fff;
}
.pricing-btn-pro .pro-btn{
	width: 200px;
	height:45px;
	background: #333;
	border:2px solid #333;
	color:#fff;
	border-radius: 5px;
	cursor: pointer;
	margin:20px 110px;
	font-size: 19px;
    font-family: var(--font3);
	
	transition: all .5s ease;
	position: relative;
	
}
.pricing-btn-pro .pro-btn:hover{

	background: transparent;
	color: #333;
}

.pricing-switch .switch-label{
	color:#000;
}
.pricing-switch .active{
	color: var(--color4);
}
.pricing-switch strong{
	color:#fff;
} */

/* ------------------new price card ------------------------------------ */
.price-card-section {
  padding: 40px 0 50px;
  background: #f3f7fe;
  background-image: url("../images/about/effect-latest-news.svg");
  background-repeat: no-repeat;
  background-position: bottom;
}

.price-card-heading h3 {
  position: relative;
  font-size: 30px;
  font-family: var(--font3);
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

.price-card-heading h3::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 11px;
  margin-left: 42%;
}

.pricingboxes .title {
  font-family:
    "Lato", Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #333;
  padding: 12px 0;
  text-align: center;
  letter-spacing: 0.07em;
  color: #fff;
  font-weight: 700;
  font-family: var(--font3);
  font-size: 19px;
  margin-bottom: 15px;
  position: relative;
}

.pricingboxes .title:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(101, 69, 76, 0);
  border-top-color: #333;
  border-width: 8px;
  margin-left: -8px;
}

.pricing-table {
  border: 0;
  margin: 0;
  padding: 0;
}

.pricing-table .description {
  background: #00b3ba33;
  text-align: center;
  padding: 20px 0;
  color: #333;
  font-family: var(--font3);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  border-bottom: solid 1px #33333359;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.pricing-table .description strong {
  font-size: 40px;
}

.pricing-table li {
  position: relative;
  background: #00b3ba33;
  padding: 20px 20px 30px 125px;
  line-height: 24px;
  text-align: left;
  color: #333;
  font-size: 18px;
  list-style: none;
  font-weight: 500;
  font-family: var(--font4);
  border-bottom: solid 1px #33333359;
}

/* .pricing-table li:before{
content: '';
display: block;
position: absolute;
left: 25px;
top: 24px;
width: 9px;
height: 9px;
border-radius: 50%;
border-width: 0 2px 2px 0;
border-style: solid;
background: #333;
border-color: #333;
transform-origin: bottom left;
transform: rotate(45deg);
} */
.pricing-table .price {
  background: #00b3ba33;
  text-align: center;
  padding: 12px 0 18px;
  color: #333;
  font-weight: 900;
  font-size: 18px;
  font-family: var(--font4);
}

.pricing-table .cta-button {
  background: #00b3ba33;
  text-align: center;
  padding: 35px 0;
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pricing-table .cta-button p {
  padding: 14px 0 8px;
}

.cta-button a {
  border: 2px solid #333;
  padding: 10px 20px;
  border-radius: 5px;
  background: #333;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font4);
  transition: all 0.5s ease;
  margin: 30px 0;
}

.cta-button a:hover {
  border: 2px solid #333;
  background: transparent;
  color: #333;
}

.pricing-tables {
  margin: 0px;
  /* width:50%; */
  float: left;
}

.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #00b3ba33;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* -------------------------- */
/* / Chrome, Safari, Edge, Opera / */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* / Firefox / */
input[type="number"] {
  -moz-appearance: textfield;
}

.cta-banner-contact {
  padding: 40px 0px;
  background: var(--color4);
  /* background-image: url('../images/tba-cta.png');
    background-repeat: no-repeat;
    background-size: cover; */
}

.cta-banner-contact .cta-banner-heading h3 {
  font-size: 30px;
  font-family: var(--font2);
  font-weight: 600;
  margin-left: 20px;
  color: var(--color1);
}

.price-label {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  left: -3px;
}

.ribbon {
  font: bold 15px sans-serif;
  color: #333;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  position: relative;
  padding: 7px 0;
  top: 20px;
  left: -26px;
  width: 120px;
  background-color: #00b3ba;
  color: #fff;
  font-size: 12px;
}

.faculty-view-btn {
  padding: 50px 0 0;
  text-align: center;
  position: relative;
}

.faculty-view-btn a {
  border: 1px solid var(--color1);
  padding: 10px 50px 10px 20px;
  border-radius: 0px;
  background: var(--color1);
  color: #fff;
  font-size: 18px;
  font-family: var(--font3);
  transition: all 0.5s ease;
  position: relative;
}

.faculty-view-btn a:hover {
  background: var(--color4);
  color: #fff;
  border: 1px solid var(--color4);
}

.faculty-view-btn a::after {
  content: "";
  width: 20px;
  height: 7px;
  display: inline-block;
  position: absolute;
  right: 23px;
  top: 18px;
  background-image: url("../images/blackarrow-white.png");
  background-repeat: no-repeat;
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}

.faculty-view-btn a:hover::after {
  right: 20px;
  background-image: url("../images/blackarrow-white.png");
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}

/* ----------------------------------------------------- */
.readmore__toggle {
  border: none;
  background: #fff;
  color: var(--color4);
  font-size: 18px;
  margin: 0px 0px;
  text-decoration: none;
  cursor: pointer;
  padding-left: 0px;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  font-weight: 600;
  margin-bottom: 15px;
}

.hide-text {
  display: block;
}

.mob-text-show {
  display: none;
}

.all-back-btn {
  padding: 13px 0;
}

.all-back-btn a {
  padding: 5px 13px;
  border: 2px solid var(--color4);
  background: var(--color4);
  color: #fff;
  border-radius: 0px;
  font-size: 19px;
  font-family: var(--font3);
  transition: all 0.5s ease;
}

.all-back-btn a i {
  margin-right: 10px;
}

.inhouse-back-btn {
  padding: 1px 0;
}

.inhouse-back-btn a {
  padding: 5px 6px;
  border: 2px solid var(--color4);
  background: var(--color4);
  color: #fff;
  border-radius: 0px;
  font-size: 17px;
  font-family: var(--font3);
  transition: all 0.5s ease;
}

.inhouse-back-btn a i {
  margin-right: 10px;
}

.btn-slider {
  margin-right: 40px;
  background-color: #333 !important;
}

.buy-btn {
  position: relative;
  padding: 20px 40px 20px 20px !important;
  font-size: 18px;
  left: 26px;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff !important;
  letter-spacing: 1px !important;
  display: inline-block;
  border: none;
  text-decoration: none;
  margin-top: 30px;
  float: left;
  background: #00b3ba;
  border-radius: 0px;
  /* border-bottom: 3px #00B3BA solid; */
  transition: all 0s ease 0s;
  min-height: 0px;
  min-width: 0px;
  line-height: 0px;
  border-width: 0px 0px 3px;
  margin: 30px 0px 0px;
  padding: 20px 20px 20px;
  letter-spacing: 1px;
  font-size: 18px;
  border-radius: 0px;
  margin-right: 40px;
}

.buy-btn:hover {
  background-color: var(--color4);
  color: #fff;
}

.buy-btn::after {
  content: "";
  width: 20px;
  height: 7px;
  display: inline-block;
  position: absolute;
  right: 13px;
  top: 18px;
  background-image: url(../images/blackarrow-white.png);
  background-repeat: no-repeat;
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}

.buy-btn:hover::after {
  right: 10px;
  background-image: url("../images/blackarrow-white.png");
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
}

/* ---------------------------------------------- */

.andrew-box img {
  padding: 10px;
  border: 1px solid #cccccc6b;
  max-width: 100%;
  height: auto;
}

.andrew-name h3 {
  font-family: var(--font3);
  color: var(--color1);
  font-size: 22px;
  margin-top: 20px;
}

.andrew-designation {
  font-family: var(--font4);
  color: var(--color4);
  font-size: 16px;
  font-weight: 600;
  padding: 3px 0;
}

.andrew-text {
  color: var(--color1);
  font-family: var(--font4);
  font-size: 16px;
  margin-bottom: 10px;
}

.attend-text {
  vertical-align: middle;
  padding: 25px 0;
}

/* ------------------------Privacy Policy----------------------------------- */
.privacy-policy-area {
  padding: 40px 0;
}

.privacy-policy-text h2 {
  color: var(--color1);
  line-height: 28px;
  font-family: var(--font3);
  font-size: 30px;
  margin-bottom: 15px;
}

.privacy-policy-text h2::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 0;
}

.privacy-policy-text h3 {
  color: var(--color1);
  line-height: 28px;
  font-family: var(--font3);
  font-size: 20px;
}

.privacy-policy-text p {
  font-family: var(--font4);
  color: var(--color1);
  line-height: 26px;
  font-size: 15px;
  text-align: justify;
  margin-bottom: 10px;
}

.privacy-policy-text p a {
  color: var(--color2);
}

.privacy-policy-text ul li {
  margin-left: 25px;
  font-family: var(--font4);
  color: var(--color1);
  font-size: 14px;
}

/* ------------------------inhouse-------------------------------- */
/* .inhouse-area{
	padding: 50px 0;
} */
.inhouse-pd {
  padding: 50px 0;
}

.inhouse-text p {
  font-family: var(--font4);
  color: var(--color1);
  line-height: 26px;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 10px;
}

.inhouse-img {
  text-align: center;
}

.inhouse-img img {
  max-width: 100%;
  /* width: 170px; */
  border-radius: 5px;
  /* height: 170px; */
}

.business-point {
  position: relative;
  margin-left: 25px !important;
}

.business-point::before {
  content: "";
  background-image: url("../images/arrow-right-1.svg");
  position: absolute;
  left: -28px;
  top: 29px;
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  /* filter: brightness(0) invert(1); */
}

/* -------------------------------Agenda new---------------------------------------------------------- */

.agenda-new {
  padding: 50px 0 20px;
  background: #f8fbff;
}

.new-agenda-img img {
  max-width: 100%;
  height: auto;
  margin: auto 0;
}

/* .agenda-imgbox:hover .new-agenda-img img {
	transform: scale(1.1);
	transition: all .3s;
} */
.agenda-new-content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: -30px 10px 0px 10px;
  padding: 18px 0;
  background-color: #fff;
  border-bottom: 5px solid transparent;
  -webkit-transition: 0.5s cubic-bezier(0.3, 0.57, 0.55, 1);
  /* transition: .5s cubic-bezier(.3,.57,.55,1); */
  border-bottom: 4px solid var(--color4);
  /* box-shadow: 0px 0px 15px rgb(0 0 0 / 15%); */
  min-height: 158px;
  transition: all 0.5s ease-in;
}

.agenda-new-content p {
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-family: var(--font4);
  color: var(--color1);
  font-weight: 500;
  padding: 0 10px;
}

.agenda-imgbox:hover .agenda-new-content {
  background: var(--color4);
}

.agenda-imgbox:hover .agenda-new-content p {
  color: #fff;
}

.agenda-imgbox {
  margin-bottom: 60px;
}

/* --------------------------- */
.pricing-tables li img {
  max-width: 100%;
  width: 100px;
  height: auto;
  position: absolute;
  left: 15px;
  top: 9px;
}

.mb-40 {
  margin-top: 40px;
}

/* -------------------------------------------------------------- */
/* ------------------------------------- */
/* -----------------Invest section------------------------------- */
.invest-area {
  padding: 40px 0;
}

.price-card-heading h4 {
  text-align: center;
  font-size: 20px;
  font-family: var(--font3);
}

.invest-card {
  position: relative;
  display: inline-block;
  padding: 10px 21px;
  border: 1px solid #eef0f6;
  border-radius: 4px;
  background: #fff;
  width: 100%;
  margin-top: 30px;
  min-height: 140px;
  transition: all 0.5s ease-in;
}

.invest-card:hover {
  box-shadow: 4px 4px 30px 0px rgb(42 67 113 / 15%);
}

.invest-img {
  position: absolute;
  left: 0;
}

.invest-img img {
  max-width: 100%;
  width: 100px;
  height: auto;
  margin: auto;
  margin-left: 15px;
}

p.invest-text {
  margin-left: 105px;
  margin-top: 10px;
  vertical-align: middle;
  color: #333;
  font-family: var(--font4);
  font-weight: 500;
  font-size: 16px;
}

/* ------------------------------------- */

.banner-img img {
  width: 100%;
  height: auto;
}

/* -----------------about------------------------------ */
.about-text h1 {
  font-size: 34px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 10px;
}

.about-text h1::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 0;
}

.about-text p {
  font-family: var(--font4);
  color: var(--color1);
  line-height: 26px;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 10px;
}

.about-img-1 img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

/* #aboutP {
word-wrap: break-word;
} */
.moretext {
  display: none;
}

/* --------------------------------------------------- */
.attend-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.attend-img img {
  max-width: 100%;
  width: 165px;
  height: 165px;
  border-radius: 50%;
}

.attend-img {
  text-align: center;
}

.attend-text h2 {
  font-size: 30px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 10px;
  text-align: center;
}

.attend-text h2::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 8px;
  margin-left: 46%;
}

.attend-text p {
  font-family: var(--font4);
  color: var(--color1);
  line-height: 26px;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 10px;
}

/* ------------------------------------------------------------- */
.sectionP60 {
  padding: 50px 0;
}

.course-section {
  padding: 40px 0;
}

.course-heading h2 {
  font-size: 30px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 10px;
  text-align: center;
}

.course-heading h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 8px;
  margin-left: 45%;
}

.course-section .icon-box img {
  max-width: 100%;
  width: 60px;
  height: 60px;
  margin: 15px auto;
  display: block;
}

.course-section .services-section-key {
  position: relative;
  padding: 0;
  background-color: #f5faff;
}

.course-section .services-block-key {
  position: relative;
}

.course-section .services-block-key .inner-box {
  position: relative;
  text-align: center;
  padding: 0px 25px 30px;
  min-height: 215px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  margin: 50px 0;
}

.services-block-key .inner-box:hover {
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
}

.services-block-key .inner-box:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 0px;
  height: 4px;
  background-color: var(--color4);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.services-block-key .inner-box:after {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  width: 0px;
  height: 4px;
  background-color: var(--color4);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.services-block-key .inner-box:hover::before,
.services-block-key .inner-box:hover::after {
  width: 100%;
}

.services-block-key .inner-box .icon-box {
  position: relative;
  width: 90px;
  height: 90px;
  color: #ffffff;
  font-size: 50px;
  text-align: center;
  line-height: 90px;
  margin: 0 auto;
  border-radius: 10%;
  margin-top: -59px;
  display: inline-block;
  margin-bottom: 20px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  background-color: var(--color4);
}

.services-block-key .inner-box h6 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 15px;
}

.services-block-key .inner-box h6 a {
  position: relative;
  color: #012068;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.services-block-key .inner-box .text {
  position: relative;
  font-size: 15px;
  color: #000;
  line-height: 25px;
  font-family: var(--font4);
  font-weight: 500;
}

.heading_service .title {
  font-size: 36px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 50px;
}

.heading_service .title::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
}

.heading_study .title {
  font-size: 36px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 50px;
}

.heading_study .title::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
}

.heading_key .title {
  font-size: 36px;
  font-family: var(--font3);
  font-weight: 700;
  color: var(--color1);
  margin: 0 0 50px;
}

.heading_key .title::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
}

/****impact-investing section***/
.awsm-date {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #000 !important;
  font-family: var(--font2);
}

.awsm-timeline-content-inner h3 {
  font-weight: bolder !important;
  font-size: 15px;
  color: #000;
}

.awsm-timeline-content-inner p {
  color: #000 !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  text-align: left;
  margin-bottom: 10px;
  font-size: 17px !important;
  font-weight: 300;
  font-family: var(--font2);
}

.awsm-list ul {
  margin-top: 15px;
}

.awsm-list ul li {
  padding-left: 2rem;
  font-size: 16px !important;
  color: #000000 !important;
  list-style: none;
  font-family: var(--font4);
}

.awsm-list li:before {
  content: "\f192";
  font-family: "FontAwesome";
  float: left;
  margin-left: -1.5em;
  color: var(--color4);
  font-size: 15px;
}

.saaspik-icon-box-wrapper.style-six {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.saaspik-icon-box-wrapper.style-six .saaspik-icon-box-icon {
  height: 70px;
  width: 70px;
  text-align: center;
  -webkit-box-shadow: 0px 30px 40px 0px rgba(52, 27, 159, 0.1);
  box-shadow: 0px 30px 40px 0px rgba(52, 27, 159, 0.1);
  padding: 15px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-right: 30px;
  background: #fff;
}

.saaspik-icon-box-wrapper.style-six .pixsass-icon-box-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.saaspik-icon-box-wrapper.style-six
  .pixsass-icon-box-content
  .pixsass-icon-box-title {
  margin-bottom: 15px;
  font-weight: 400;
  margin: 0;
}

.saaspik-icon-box-wrapper.style-six
  .pixsass-icon-box-content
  .pixsass-icon-box-title
  a:hover {
  color: #7052fb;
}

.saaspik-icon-box-wrapper.style-six .pixsass-icon-box-content p {
  margin-bottom: 35px;
}

.saaspik-icon-box-wrapper.style-six .pixsass-icon-box-content .more-btn {
  color: #2b2350;
  font-weight: 500;
}

.saaspik-icon-box-wrapper.style-six .pixsass-icon-box-content .more-btn i {
  vertical-align: middle;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.saaspik-icon-box-wrapper.style-six .pixsass-icon-box-content .more-btn:hover {
  color: #7052fb;
}

.saaspik-icon-box-wrapper.style-six
  .pixsass-icon-box-content
  .more-btn:hover
  i {
  padding-left: 3px;
  color: #7052fb;
}

.featured-ten {
  padding: 50px 0 70px;
  /* background-color: #f9fafc !important; */
}

.saaspik-icon-box-wrapper.style-eleven {
  /* -webkit-box-shadow: 0 20px 50px 0 rgba(14, 3, 52, 0.1);
	box-shadow: 0 20px 50px 0 rgba(14, 3, 52, 0.1); */
  background: #fff;
  border-radius: 20px;
  padding: 15px 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-height: 250px;
}

.saaspik-icon-box-wrapper.style-eleven .saaspik-icon-box-icon {
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.saaspik-icon-box-wrapper.style-eleven
  .pixsass-icon-box-content
  .pixsass-icon-box-title {
  margin-bottom: 13px;
}

/* .saaspik-icon-box-wrapper.style-eleven:hover {
	background: #2c234d;
} */

.saaspik-icon-box-wrapper.style-eleven:hover
  .pixsass-icon-box-content
  .pixsass-icon-box-title {
  color: #fff;
}

.saaspik-icon-box-wrapper.style-eleven:hover
  .pixsass-icon-box-content
  .pixsass-icon-box-title:hover {
  color: #f98e47;
}

.saaspik-icon-box-wrapper.style-eleven:hover
  .pixsass-icon-box-content
  .pixsass-icon-box-title
  a {
  color: #fff;
}

.saaspik-icon-box-wrapper.style-eleven:hover
  .pixsass-icon-box-content
  .pixsass-icon-box-title
  a:hover {
  color: #f98e47;
}

.saaspik-icon-box-wrapper.style-eleven:hover .pixsass-icon-box-content p {
  color: #c3c0d0;
}

.featured-ten h2 {
  padding: 50px;
}

/******/
.icon-box-impact {
  /* background: var(--color4); */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  -ms-transition: -ms-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  /* padding-top: 4px; */
  text-align: center;
  /* margin-top: -50px; */
  margin-left: 34%;
}

.icon-box-impact img {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  margin: 0px auto;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  -ms-transition: -ms-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  /* margin-left: 16px; */
  /* text-align: center; */
}

.saaspik-icon-box-wrapper:hover img {
  transition: all ease 0.5s;
  transform: rotateY(180deg);
}

.saaspik-icon-box-wrapper img {
  transition: all ease 0.5s;
  transform: rotateY(360deg);
}

/* .saaspik-icon-box-wrapper:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 8px 14px 0 rgb(0 0 0 / 15%);
} */
.pixsass-icon-box-content p {
  font-size: 16px;
  font-family: var(--font4);
  color: #333 !important;
  margin-top: 10px;
  line-height: 27px;
  text-align: center;
  font-weight: 500;
}

.our-faculty-aw {
  padding: 40px 0 60px;
  background: #fff;
}

.button-text-new {
  font-family: var(--font4);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  background: transparent;
  color: #333;
  border: none;
}

.button-text-new::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: var(--color4);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.button-text-new:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.impact-page-area {
  background-image: url("../images/bg-banner-impact-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  position: relative;
  z-index: 9999999;
}

.impact-arrow {
  width: 20px !important;
  height: 7px !important;
  /* left: 0; */
  right: 30px !important;
  /* top: 175px; */
  bottom: -34px;
  transition: all 0.6s ease-in;
}

.single-study:hover .impact-arrow {
  right: 15px !important;
}

.impact-arrow-1 {
  width: 20px !important;
  height: 7px !important;
  /* left: 0; */
  right: 30px !important;
  /* top: 175px; */
  bottom: -60px;
  transition: all 0.5s ease-in;
}

.single-study:hover .impact-arrow-1 {
  right: 15px !important;
}

.impact-agenda {
  min-height: 108px;
}

/* -------------------------Blog section css------------------------------------- */
.blog-area {
  padding: 40px 0;
  background: #f7f9fa;
}

.blog-heading h3 {
  position: relative;
  font-family: var(--font3);
  font-weight: 700;
  text-align: center;
  font-size: 36px;
}

.blog-heading::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
  margin-bottom: 25px;
}

.blog-box {
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #eee;
  margin: 15px 0;
  transition: all 0.5s ease-in;
  overflow: hidden;
  height: 400px;
  box-shadow:
    0 1px 2px rgb(0 0 0 / 10%),
    0 2px 4px rgb(0 0 0 / 10%);
}

/* .blog-box:hover{
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 15%);
} */
.blog-img img {
  width: 100%;
  height: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  object-fit: cover;
}

.blog-title {
  padding: 18px;
}

.blog-title h4 {
  position: relative;
  font-family: var(--font3);
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-title p {
  font-family: var(--font4);
  font-size: 15px;
  color: var(--color1);
  line-height: 21px;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 63px;
  margin: 0 auto;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-btn {
  position: relative;
  margin-top: 5px;
}

.blog-btn a {
  position: relative;
  border: 2px solid transparent;
  border-radius: 5px;
  /* box-shadow: 0.3rem 0.3rem 0.6rem rgb(200 208 231 / 32%); */
  /* background: #74d1d566; */
  font-family: var(--font4);
  font-size: 16px;
  font-weight: 600;
  color: var(--color1);
  transition: all ease-in-out 0.2s;
}

.blog-btn a::before {
  background: var(--color1);
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  right: -41px;
  top: 10px;
  transition: all ease-in-out 0.2s;
  width: 30px;
}

.blog-box:hover .blog-btn a:before {
  right: -34px;
  background: var(--color4);
}

/* .blog-btn a:hover::after{
	left: 107px;
	background-image: url('../images/blog/arrow-1.png');
	width: 10px;
    height: 10px;
	background-repeat: no-repeat;
    background-size: cover;
	
} */

.blog-box:hover .blog-btn a {
  color: var(--color4);
  margin-top: 10px;
}

.iframe-video iframe {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
  height: 225px;
}

.blog-box:hover .blog-img img {
  transform: scale(1.1);
  transition: all 0.3s;
}

.blog-img {
  overflow: hidden;
  max-height: 220px;
}

#blog_slider .owl-next {
  position: absolute;
  right: -60px;
  top: 40%;
  width: 50px;
  height: 50px;
  /* border: 1px solid var(--color4); */
  background: var(--color4);
  border-radius: 10px;
}

#blog_slider .owl-next i,
#blog_slider .owl-prev i {
  font-size: 37px;
  color: #fff;
}

#blog_slider .owl-prev {
  position: absolute;
  left: -60px;
  top: 40%;
  width: 50px;
  height: 50px;
  /* border: 1px solid var(--color4); */
  background: var(--color4);
  border-radius: 10px;
}

/* -------------------------- */

.wrappers-adds {
  margin: 0 auto;
  display: block;
  text-align: center;
}

.wrappers-adds img {
  max-width: 100%;
  width: 1300px;
  height: auto;
  object-fit: cover;
}

.back-top {
  bottom: 80px;
  z-index: 99999;
}

.stickfooter {
  position: fixed;
  height: 70px;
  bottom: -5px;
  left: 0px;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
  padding-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: column; */
  color: #fff;
}

.description_text {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--font4);
  text-transform: capitalize;

  padding-left: 10px;
  color: var(--color1);
}

.enrool-nowbtn a {
  background: #00b3ba;
  color: #fff;
  font-family: var(--font3);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: all 0.5s ease;
  padding: 11px 30px;
  border-radius: 0px;
}

.tablink {
  text-decoration: underline;
  color: #00b3ba;
  font-weight: bold;
}

.footer_list {
  margin-top: 20px;
}

.footer_list ul li {
  list-style: none;
  color: #fff;
  display: inline-block;
  position: relative;
  font-weight: normal;
}

.footer_list ul li a {
  color: #fff;
  margin-right: 5px;
  margin-left: 5px;
  font-family: var(--font2);
  font-weight: 500;
}

.linkFtr ul > li > a:before {
  position: absolute;
  bottom: 0px;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background: #fff;
  content: "";
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  -o-transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition:
    transform 1s cubic-bezier(0.2, 1, 0.3, 1),
    -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}

.linkFtr ul > li > a::before {
  background-color: #fff;
  height: 2px;
}

.linkFtr ul > li.active > a::before,
.linkFtr ul > li:hover a::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

@media (min-width: 320px) and (max-width: 480px) {
  .wrappers-adds img {
    width: 100%;
  }

  .fofsummit2019banner {
    height: auto;
    width: 100%;
  }
}

/* ------------------------tabs css--------------------- */
.leadership-agenda .agenda-title h2,
.speaker-title h2,
.attend-title h2 {
  font-size: 35px;
  font-weight: 800;
  font-family: var(--font2);
  line-height: 35px;
  margin-bottom: 20px;
}

.leadership-agenda .agendaTbspils {
  border: 0px;
}

.leadership-agenda .agendaTbspils.agendaTbspils li {
  padding: 0px;
  margin-top: 20px;
  border-radius: 0;
  text-align: center;
}

.leadership-agenda .agendaTbspils li a {
  color: #000;
  padding: 5px 30px;
  display: block;
  border-radius: 0 !important;
  background: #e5e9ec !important;
  border-radius: 0;
  text-align: center;
  font-weight: 600;
  font-family: var(--font1);
  font-size: 18px;
}

.leadership-agenda .agendaTbspils.agendaTbspils li a:hover {
  color: var(--color4) !important;
}

.leadership-agenda .agendaTbspils li a.active {
  background: var(--color4) !important;
  color: #fff !important;
}

.leadership-agenda .agendaTbspils li a.active:hover {
  color: #fff !important;
}

.leadership-agenda .agenda_section .tab-pane {
  box-shadow: none;
  border-radius: 0px;
  border: 0px;
}

.learn-area .tab-pane {
  padding: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.learn-text p {
  font-size: 15px;
  font-family: var(--font2);
  font-weight: 500;
  margin-bottom: 7px;
  color: #1c1d1f;
}

.cousres_include h4 {
  font-size: 16px;
  font-family: var(--font1);
  font-weight: 600;
  margin: 15px 0;
}

.accordiontext p {
  font-size: 16px;
  font-family: var(--font2);
  color: #333;
  margin-bottom: 10px;
  margin-left: 0px;
}

.event-faculty h2 {
  font-size: 21px;
  font-family: var(--font1);
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 10px;
}

.event-faculty p {
  font-family: var(--font2);
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 26px;
  margin-bottom: 30px;
}

.event-faculty-content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: -30px 80px 0px;
  padding: 18px 5px;
  background-color: #fff;
  border-bottom: 5px solid transparent;
  -webkit-transition: 0.5s cubic-bezier(0.3, 0.57, 0.55, 1);
  border-bottom: 4px solid #00b3ba;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
}

.event-faculty-content p {
  text-align: center;
  margin-bottom: 5px;
  font-size: 16px;
  font-family: var(--font2);
  color: var(--color1);
  font-weight: 400;
  line-height: 25px;
}

.event-faculty-content .minheight {
  min-height: 51px;
}

.event-faculty-box img {
  padding: 10px;
  border: 2px solid var(--color4);
  cursor: pointer;
  max-width: 100%;
  width: 290px;
  margin: 0 auto;
  display: block;
  height: auto;
}

.event-faculty-box {
  margin-bottom: 30px;
}

.event-faculty-modal {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  position: relative;
  top: 20px;
  margin: auto;
  border: 5px solid var(--color4);
  cursor: pointer;
  background-color: #fff;
}

.event-faculty-modal img {
  max-width: 100%;
}

.modal-faculty-text {
  padding: 20px 0 0;
}

.modal-faculty-text h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font2);
  color: #000;
}

.popup-text-event p {
  color: #000;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 5px;
  font-size: 17px;
  font-family: var(--font2);
}

.popup-text-event p a:hover {
  color: var(--color4);
}

.leader-investarea-list li {
  font-size: 14px;
  font-family: var(--font2);
  color: #000;
  font-weight: 500;
  position: relative;
  list-style: none;
  left: 25px;
  margin-bottom: 10px;
  padding-right: 15px;
}

.leader-investarea-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: -25px;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #0091b5;
  background: #0091b5;
  box-shadow: 0px 0px 0px 3px #fff inset;
}

.inhouse_vision-new {
  background-image: url("../images/event-img/slider/tb-banner-event.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
}

.inhouse_vision_title h2 {
  font-size: 35px;
  font-weight: 800;
  font-family: var(--font2);
  line-height: 35px;
  margin-bottom: 20px;
}

.inhouse_content p {
  color: #000 !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  text-align: justify;
  margin-bottom: 5px;
  font-size: 17px !important;
  font-weight: 300;
  font-family: var(--font2);
}

.vision-btn {
  margin: 20px 0 0;
}

.vision-btn a {
  background: #0091b5;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font2);
  transition: all 0.5s ease-in-out;
}

.vision-btn a:hover {
  background: #1c1d1f;
}

/* -------------------color palate-------------- */

.color-palate {
  background: #fff none repeat scroll 0 0;
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  position: fixed;
  right: -200px;
  text-align: center;
  top: 40%;
  transition: all 0.5s ease 0s;
  width: 200px;
  z-index: 999;
}

.color-palate:hover {
  right: 0px !important;
}

.toggleIn-out {
  right: 0px !important;
}

.color-palate-head {
  background: #1a77b4 none repeat scroll 0 0;
  padding: 13.5px 0;
}

.color-palate-head h6,
.secondary-head h6 {
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  color: var(--color3);
  font-family: var(--font2);
}

.color-trigger {
  background: #196fa7 none repeat scroll 0 0;
  cursor: pointer;
  height: 50px;
  left: -46px;
  position: absolute;
  top: 0;
  width: 46px;
  padding-top: 6px;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 20px 0px 0px 20px;
  border-right: 1px solid #1a77b4;
}

.color-trigger:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 18px;
  line-height: 50px;
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  background-color: #1a77b4;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  font-weight: 900;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.color-trigger i {
  color: #ffffff;
  font-size: 18px;
  line-height: 40px;
}

.color-palate.visible-palate {
  left: 0px;
}

.color-palate.visible-palate .color-trigger {
  right: 0;
}

.color-palate.visible-palate .color-trigger:before {
  opacity: 1;
  visibility: visible;
}

.color-palate .option-box {
  position: relative;
  padding: 0 15px;
  margin-bottom: 10px;
}

.color-palate .option-box:after {
  display: table;
  content: "";
  clear: both;
}

.color-palate .option-box li {
  position: relative;
  float: left;
  width: 46%;
  margin: 0 2%;
  font-size: 14px;
  line-height: 20px;
  padding: 5px 18px;
  text-align: center;
  background-color: #1a77b4;
  color: #ffffff;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.color-palate .option-box li:last-child {
  margin-right: 0;
}

.color-palate .option-box li:hover {
  background-color: #222222;
}

.color-palate .purchase-btn {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 0px 10px;
  background-color: #000000;
  max-width: 150px;
  margin: 10px auto 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.color-palate .purchase-btn:hover {
  background-color: #1a77b4;
}

.eventcous .card {
  border: 0;
  border-radius: 0px;
}

.eventcous .p-1 {
  padding: 0rem !important;
}

.eventcous .event_register {
  border-radius: 0;
}

.my_profile_section {
  padding: 40px 0;
}

.my_profile_section .my_profile {
  box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
  border-radius: 3px;
}

.my_profile_section .my_profile .card-header {
  border-bottom: 1px solid #ccc;
}

.my_profile_section .my_profile h3 {
  margin-bottom: 0px;
  font-size: 22px;
  font-family: var(--font2);
  font-weight: 600;
  color: var(--color1);
}

.my_profile_section .rbt-profile-content {
  font-size: 15px;
  font-family: var(--font2);
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.my_profile_section .rbt-profile-register {
  font-size: 15px;
  font-family: var(--font2);
  font-weight: 500;
  color: var(--color1);
}

.avatarthumb img {
  vertical-align: middle;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* -------------copyright page css------------- */
.copyright-area {
  padding: 30px 0;
  background: #fcfdff;
}

.copyright-title h2 {
  font-family: var(--font3);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 10px;
  color: #333;
}

.copyright-text h3 {
  font-family: var(--font3);
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  color: #333;
}

.copyright-text p {
  font-family: var(--font4);
  font-size: 13px;
  color: #333;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 10px;
}

.copyright-text ul li {
  font-family: var(--font4);
  font-size: 13px;
  color: #333;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 10px;
  position: relative;
  list-style: none;
  padding-left: 13px;
}

.copyright-text ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: #262a33;
  border-radius: 50% !important;
}

.copybox {
  padding: 10px;
  border: 1px solid #eee;
}

.mt-copyright {
  margin: 10px 0;
}

.copyright-b {
  background: #eee;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}

.newsletterborder {
  padding: 10px;
  border: 1px solid #eee;
  width: 41%;
  margin: 10px 0;
}

.copy-detailtable {
  width: 100%;
  border: 1px solid #eee;
  margin: 20px 0;
}

.detail-tb th {
  padding: 10px;
  border: 1px solid #eee;
  font-family: var(--font4);
  font-size: 13px;
  color: #333;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}

.copy-detailtable td {
  padding: 10px;
  border: 1px solid #eee;
  font-family: var(--font4);
  font-size: 13px;
  color: #333;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}

.add_Section {
  padding: 20px 0;
  clear: both;
}

.add_Section img {
  border-radius: 5px;
}

/* ---------------upcoming event-------------- */
.upcomingevent {
  padding: 40px 0;
  background: #f8fbff;
}

.upcoming-heading h3 {
  position: relative;
  font-family: var(--font3);
  font-weight: 700;
  padding: 0px 0 15px;
  text-align: center;
  font-size: 36px;
}

.upcoming-heading h3::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--color4);
  display: block;
  margin-top: 15px;
  margin-left: 46%;
}

.upevent-card {
  box-shadow:
    0 1px 2px rgb(0 0 0 / 10%),
    0 2px 4px rgb(0 0 0 / 10%);
  border-radius: 5px;
  border: 1px solid #e6ecef;
  background: #fff;
  transition: all 0.5s ease;
  /* min-height: 360px; */
  margin-bottom: 25px;
}

.upevent-card .up-event-img {
  overflow: hidden;
}

.upevent-card .up-event-img img {
  border-radius: 5px;
  max-width: 100%;
  width: 100%;
  height: auto;
  transition: all 0.8s ease-in-out;
}

.upevent-card:hover .up-event-img img {
  transform: scale(1.1);
  transition: all 0.8s ease-in-out;
}

.upevent-text {
  margin: -24px 10px 0 10px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  padding: 24px 10px 10px 10px;
  text-align: center;
  min-height: 125px;
}

.upevent-text h6 {
  font-family: var(--font4);
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  margin: 0;
  color: #000;
}

.upevent-text h4 {
  font-family: var(--font4);
  font-weight: 700;
  font-size: 17px;
  line-height: 29px;
  color: #000;
}

.workshop_card .upevent-text h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

#registration .btn-close {
  background: var(--color4) !important;
}

.text_more {
  float: right;
  margin-right: 10px;
  color: var(--color4);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font4);
  line-height: 28px;
}

.text_more a {
  color: var(--color4);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font4);
  line-height: 28px;
  position: relative;
}

.text_more a:before {
  position: absolute;
  bottom: 0px;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background: var(--color4);
  content: "";
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  -o-transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition:
    transform 1s cubic-bezier(0.2, 1, 0.3, 1),
    -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}

.text_more a::before {
  background-color: var(--color4);
  height: 2px;
}

.text_more:hover a::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

/* ----------------------upcoming-program-area------------------------ */
.upcoming-program-area {
  padding: 50px 0;
  background: #f0f4ff;
}

.upcoming-program-box {
  border: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
  border-bottom: 3px solid #00b3ba;
  transition: all 0.5s ease-in-out;
}

.upcoming-program-box .imgicon img {
  width: 60px;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  transition: all ease 0.5s;
  transform: rotateY(360deg);
}

.upcoming-program-text {
  display: inline-block;
  margin-left: 15px;
}

.upcoming-program-text p {
  position: relative;
  font-weight: 600;
  font-family: var(--font3);
  font-size: 18px;
  color: #000;
  margin: 0;
}

.upcoming-program-text p a {
  color: #000;
  transition: all 0.5s ease-in-out;
}

.upcoming-program-text p a:hover {
  color: #0076a7;
}

.upcoming-program-box:hover {
  border-bottom: 3px solid #0076a7;
}

.upcoming-program-box:hover .imgicon img {
  transition: all ease 0.5s;
  transform: rotateY(180deg);
}

.mlrb-10 {
  margin: 0px 10px 10px 10px;
  background-color: #f0ecff;
}

.bg_blue_shade {
  height: 100%;
  margin: 0px 0 0 0;
  /* box-shadow: 0 2px 6px rgba(110,123,129,.1); */
  height: 446px;
  border-radius: 0px;
}

.bg_blue_shade .tab-wsmenu {
  padding: 10px 8px;
}

.bg_lightblue_shade {
  background-color: #ecf2ff;
}

.bg_orange_shade {
  background: #fcf3e3;
}

.bg_aqua_shade {
  background-color: #e9eff8;
}

.bg_red_shade {
  background-color: #e6fffa;
}

.tab_logo a img {
  margin-right: 10px;
  width: 130px;
}

.about_us_section {
  padding: 40px 0px;
  clear: both;
}

.owl-theme .owl-nav {
  margin-top: 0px;
}

#innovation_tours .owl-prev {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
  left: 0.5%;
  margin: 0px;
  display: block !important;
  border: 0px;
  background-color: var(--color4);
  line-height: 53px;
  transition: 1s;
  border-radius: 0;
}

#innovation_tours .owl-next {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
  right: 0.5%;
  margin: 0px;
  display: block !important;
  border: 0px;
  background-color: var(--color4);
  line-height: 53px;
  transition: 1s;
  border-radius: 0;
}

#innovation_tours .owl-prev i,
#innovation_tours .owl-next i {
  font-size: 20px;
  color: var(--color3);
}

#innovation_tours .owl-dots {
  position: absolute;
  right: 50px;
  bottom: 15px;
  left: 50px;
}

#innovation_tours .owl-dot {
  width: 13px;
  height: 13px;
  margin-right: 8px;
  line-height: 13px;
  border: 1px solid var(--color4);
  border-radius: 30px;
  background-color: var(--color4);
  font-family: var(--font2);
  font-weight: 600;
}

#innovation_tours .owl-dot.active {
  border: 1px solid var(--color3);
  background-color: var(--color3);
}

#seoul_event_slider .owl-prev {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
  left: 0.5%;
  margin: 0px;
  display: block !important;
  border: 0px;
  background-color: var(--color4);
  line-height: 53px;
  transition: 1s;
  border-radius: 0;
}

#seoul_event_slider .owl-next {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
  right: 0.5%;
  margin: 0px;
  display: block !important;
  border: 0px;
  background-color: var(--color4);
  line-height: 53px;
  transition: 1s;
  border-radius: 0;
}

#seoul_event_slider .owl-prev i,
#seoul_event_slider .owl-next i {
  font-size: 30px;
  color: var(--color3);
}

#africa_event_slider .owl-prev {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
  left: 0.5%;
  margin: 0px;
  display: block !important;
  border: 0px;
  background-color: var(--color4);
  line-height: 53px;
  transition: 1s;
  border-radius: 0;
}

#africa_event_slider .owl-next {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
  right: 0.5%;
  margin: 0px;
  display: block !important;
  border: 0px;
  background-color: var(--color4);
  line-height: 53px;
  transition: 1s;
  border-radius: 0;
}

#africa_event_slider .owl-prev i,
#africa_event_slider .owl-next i {
  font-size: 30px;
  color: var(--color3);
}

.sponsored_reports {
  padding: 40px 0px;
  clear: both;
}

.sponsored_reports .sponsored_reports_box {
  border: 2px solid #969a9d;
  /* padding: 10px; */
  border-radius: 5px;
  box-shadow: 0 0.125rem 0.3rem rgba(0, 0, 0, 0.095);
  background: #f7f9fa;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.sponsored_reports .sponsored_reports_box img {
  object-fit: contain;
  border-radius: 5px;
  transition: all 0.3s;
}

.sponsored_reports .sponsored_reports_box a {
  overflow: hidden;
  transition: all 0.3s;
}

.ttmboxviewoverlay {
  position: absolute;
  bottom: -30%;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 35, 51, 0.83);
}

.sponsored_reports_box:hover .ttmboxviewoverlay {
  opacity: 1;
  bottom: 0;
}

.sponsored_reports_box .ttmboxviewoverlay .download_reports a {
  display: inline-block;
  font-size: 18px;
  position: absolute;
  width: 80%;
  line-height: 43px;
  text-align: center;
  color: var(--color5);
  background-color: var(--color3);
  border-radius: 0;
  top: 50%;
  right: 10%;
  left: 10%;
  border-radius: 10px;
  font-family: var(--font1);
  font-size: 15px;
  font-weight: 600;
}

/* .sponsored_reports_box:hover  img {
    transform: scale(1.1);
	transition: all .3s;
} */

/* --------------Inhouse training css------------------ */

.inhouse-sub-box {
  background: #00b3ba;
  margin-top: 60px;
  border-radius: 5px;
  position: relative;
}

.inhouse-sub-list {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 13;
  top: 0;
  left: 0;
  right: 0;
}

/* .inhouse-sub-list ul {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
} */
.inhouse-sub-list ul {
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-image: url("../images/bg-shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.inhouse-sub-list ul li {
  list-style: none;
  width: 19.5%;
  display: inline-block;
  border-right: 1px solid #ccc;
}

.inhouse-sub-list ul li:last-child {
  border-right: 0;
}

.inhouse-sub-list ul li .inhouse-sub-img img {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  margin: 0 auto;
}

.inhouse-sub-list ul li .inhouse-sub-img p {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font2);
  text-align: center;
  margin: 10px 0 0;
}

.inhouse-sub-list ul li .inhouse-sub-img p a {
  color: #fff;
}

.apply_report_modal .modal-dialog {
  max-width: 700px;
}

.apply_download_form {
  background-image: url("../images/bg-1.svg");
  background-repeat: no-repeat;
  border: 0px;
  padding-bottom: 0;
}

.apply_download_form .reports_title h2 {
  color: #05264e;
  font-family: var(--font1);
  font-weight: 900;
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.apply_report_modal .btn-close {
  position: absolute;
  right: 5px;
  top: 0px;
  font-size: 17px;
  border-radius: 0;
  color: #333;
  padding: 10px;
  line-height: 10px;
  opacity: 1;
  font-weight: normal;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat !important;
}

.apply_download_form .reports_title span {
  font-family: var(--font1);
  color: #444 !important;
  font-weight: 500;
  font-size: 15px !important;
  line-height: 22px !important;
}

.apply_report_modal form .form-control,
.apply_report_modal form .form-select {
  /* background: #fff; */
  font-family: var(--font1);
  border: 1px solid #e0e6f6;
  height: 53px;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
  border-radius: 0.325rem;
}

.apply_report_modal .submit_btn button {
  color: #ffffff;
  background-color: #05264e;
  line-height: 26px;
  padding: 13px 25px;
  font-family: var(--font1);
  font-weight: 600;
  width: 100%;
}

.apply_report_modal .form-group .error {
  font-family: var(--font1);
  font-weight: 600;
  font-size: 13px;
  color: #ee0101 !important;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.apply_report_modal .form-group input.error {
  border-color: #ee0101 !important;
}

.awsm-timeline-content-inner ul li {
  line-height: 30px;
  text-align: left;
  margin-bottom: 0px;
  font-size: 17px;
  font-weight: 400;
  font-family: var(--font2);
  color: #000;
  list-style: none;
  margin-left: 23px;
}

.awsm-timeline-content-inner ul li:before {
  content: "\f192";
  font-family: "FontAwesome";
  float: left;
  margin-left: -1.5em;
  color: #0076a7;
  font-size: 15px;
}

.session_list li {
  margin-left: 0 !important;
}

li.name-list {
  position: relative;
  top: -8px;
}

.session_list li::before {
  display: none;
}

.video_desktop {
  display: none;
}

.video_mobile {
  display: block;
}

.securitycode-bg {
  /* background: #e4e4e4; */
  color: var(--color1);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font4);
  height: 52px;
  line-height: 26px;
  width: 100%;
}
.securitycode {
  border: 1px dashed #0078a6;
  color: #000;
}
.securitycode::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background: rgb(0 120 166 / 56%);
  top: 50%;
  left: -10%;
  transform: rotate(-10deg);
}
.securitycode::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#0078a6 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
  top: 0;
  left: 0;
  pointer-events: none;
}

.codeNew {
  height: 45px !important;
  top: -13px;
}

/* .video_mobile video {
        width: 100%;
        height: 330px;
        object-fit: cover;
    } */

/* -------Language button css start------------- */

.monaka-header-not-on-top .lang-btn li a {
  margin: 15px 10px 15px;
}

.lang-btn li a {
  border-radius: 5px;
  background: var(--color4);
  padding: 8px 15px !important;
  margin: 25px 10px 20px;
  color: #444;
}

.lang-btn li a .monaka-menu-arrow {
  color: #444;
  opacity: 1;
}

.lang-btn li a:hover {
  color: #444;
}

.lang-dropdown img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  position: relative;
  margin-right: 10px;
}

.lang-btn .lang-drop {
  width: 150px;
  border: 0;
  transition: all 0.5s ease-in-out;
}

.lang-drop li a {
  background: #fff;
  transition: all 0.5s ease-in-out;
  margin: 0;
}

.lang-drop li a:hover {
  color: #444;
  background: var(--color4);
}

.lang-btn .flag {
  width: 20px;
  height: 20px;
  object-fit: cover;
  margin-right: 10px;
}

.summit-header .monaka-menu-item a {
  padding: 10px 18px;
}

.monaka-header-not-on-top .lang-drop li a {
  margin: 0;
}

.all-tactical-workshop {
  background: #f0f4ff;
  /* padding: 20px; */
  border-radius: 20px;
  height: 400px;
  overflow-y: scroll;
  box-shadow: 0px 6px 34px rgb(240 244 255);
}

.all-tactical-workshop:last-child {
  margin-bottom: 0;
}

.all-tactical-workshop ul {
  padding: 0px;
  margin: 0px;
}

.all-tactical-workshop ul > li {
  list-style: none !important;
  font-size: 15px;
  font-family: var(--font4);
  font-weight: 500;
  border-bottom: 1px dashed #ddd;
  padding: 20px 20px 0;
  /* margin-bottom: 15px; */
}
.all-tactical-workshop ul > li.title-fxd{
  position: sticky;
    top: 0;
  background: #f0f4ff;
}

.all-tactical-workshop ul > li:last-child {
  border-bottom: 0px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e5e9ec;
}

/* blogs-css */

.all_articles {
  padding: 50px 0px;
}

.all_articles .title h3 {
  font-family: var(--font4);
  font-size: 24px;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0px;
}

.all_articles .blog-cover {
  box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
}

.all_articles .blog-cover .post-category {
  padding: 7px 9px 0px;
  top: 0;
  left: 0;
  height: 34px;
  width: 100%;
  background-color: #0076a7;
  color: var(--color3);
  font-weight: 600;
  border-radius: 5px 5px 0px 0px;
  font-family: var(--font4);
  font-size: 12px;
  z-index: 999;
}

.all_articles .blog-cover .img-figure img {
  max-height: 180px;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}

.blog-cover:hover .img-figure img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.all_articles .articel-content h3 {
  font-size: 17px;
  font-family: var(--font4);
  font-weight: bold;
  line-height: 25px;
  margin: 0px 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 50px;
  color: var(--bs-blue);
}

.all_articles .articel-content h3 a:hover {
  color: #0076a7 !important;
}

.all_articles .articel-content p {
  font-family: var(--font4);
  font-size: 14px;
  color: var(--color5);
  text-align: left;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;
  line-height: 27px;
  min-height: 100px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.all_articles .articel-content .views-count {
  font: 500 14px/1.5 var(--font4);
}

/* blog-details */

.blog-details {
  padding: 50px 0px;
  clear: both;
}
.blog-details .blog_title h2 {
  font: 700 40px/50px var(--font5);
  color: var(--color1);
  margin-bottom: 20px;
}
.blog-details .author_name span {
  font-weight: normal;
  color: var(--color1);
}
.blog-details .post-author .author-info {
  padding-left: 60px;
}
.blog-details .post-author .author-info .postdate ul {
  margin-bottom: 0;
}
.blog-details .post-author .author-info .thumb {
  max-width: 55px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-details .author_name {
  font-size: 14px;
  font-family: var(--font4);
}
.blog-details .author_name a {
  font-weight: bold;
  color: var(--color4);
  font-family: var(--font4);
}
.blog-details .postdate ul > li {
  list-style: none;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  font: 600 13px/1.5 var(--font4);
  color: var(--color1);
}
.blog-details .postdate ul li:not(:last-child)::after {
  position: absolute;
  content: "";
  height: 12px;
  width: 2px;
  background: #b9bcbf;
  right: -7px;
  top: 50%;
  margin-top: -6px;
}

.blog-details .articel_short_content {
  background: #eff1fa;
  padding: 10px 15px 7px 15px;
  border-radius: 5px;
  border-left: 5px solid var(--color4);
}
.blog-details .articel_short_content p {
  font-size: 16px;
  font-family: var(--font1);
  line-height: 32px;
  font-style: italic;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color1);
}
.video_article iframe {
  width: 100%;
  height: 470px;
  border-radius: 10px;
}
.articel-content p {
  font: 500 16px/36px var(--font1);
  color: var(--color1);
  margin-bottom: 10px;
  text-align: justify;
}
.articel-content ul,
.articel-content .mediafeed-news ul,
.articel-content ol {
  margin: 0px 0px 10px 0px;
  padding-left: 1.5rem;
}
.articel-content ol li,
.articel-content ul li {
  font-family: var(--font1);
  color: var(--color1);
  font-size: 15px;
  line-height: 35px;
  font-weight: 500;
  margin-bottom: 10px;
}

.articel-content img[style*="float: right"] {
  margin-left: 15px;
}

.articel-content img[style*="float: left"] {
  margin-right: 15px;
}
.blog-details .tagline-list ul {
  padding: 0px;
  margin: 0px;
}
.blog-details .tagline-list ul li {
  list-style: none;
  display: inline-block;
  font-size: 15px;
  font-family: var(--font1);
  font-weight: 500;
  position: relative;
}
.blog-details .tagline-list ul li {
  list-style: none;
  display: inline-block;
  font-size: 15px;
  font-family: var(--font1);
  font-weight: 500;
  position: relative;
}
.blog-details .tagline-list ul .tag-name {
  font-family: var(--font1);
  font-weight: 600;
  font-size: 15px;
  color: var(--color1);
  padding-right: 5px;
}
.blog-details .tagline-list ul li a {
  color: var(--color2);
  font-family: var(--font1);
  padding-right: 6px;
  font-size: 15px;
}
.blog-details .tagline-list ul li:not(:last-child)::after {
  content: ",";
  color: var(--color2);
}

.attent_our_next_event {
  padding: 0px 20px 10px 20px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
  background-color: var(--color3);
  border-radius: 8px;
}
.attent_title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid #666;
  min-height: 1.9375rem;
  position: relative;
}
.attent_our_next_event h2 a {
  padding: 6px 0px 5px;
  text-transform: capitalize;
  margin-right: auto;
  min-height: 1.8125rem;
  display: inline-block;
  margin: 0;
  font: 700 16px / 28px var(--font2);
  color: var(--color1);
}
.attent_our_next_event .title_link {
  color: var(--color2);
  font: 600 14px/1.5 var(--font4);
}
.attent_our_next_event {
  position: sticky;
  top: 100px;
  width: 100%;
}
.recent_articels .articels_img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}
.recent_articels .articel_text h4 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.recent_articels .articel_text h4 a {
  font-size: 16px;
  font-family: var(--font5);
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
  margin-top: 0px;
  color: var(--color1);
  display: inline;
  padding-bottom: 0;
  -webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-image: -o-linear-gradient(top, currentColor 0%, currentColor 98%);
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(currentColor),
    color-stop(98%, currentColor)
  );
  background-image: linear-gradient(
    to bottom,
    currentColor 0%,
    currentColor 98%
  );
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
}
.recent_articels .articel_text:hover h4 a {
  background-size: 0 2px;
  color: var(--color2);
}
.article_details .articel_text:hover h4 a {
  background-size: 100% 2px;
  color: var(--color2);
}
.recent_articels:last-child {
  border-bottom: 0px;
}

.recent_articels {
  overflow: hidden;
  position: relative;
  padding: 10px 0 10px 0px;
  border-bottom: 1px dashed #dbdada;
}
.wigget-list ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.wigget-list ul li {
  display: inline-block;
  list-style: none;
  margin-right: 20px;
}
.wigget-list ul li:last-child {
  margin-right: 0px;
}
.wigget-list ul li a {
  background-color: #e2e2e2;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
}
.wigget-list ul li a i {
  font-size: 1.4rem;
}
.view-count .count {
  max-width: max-content;
  min-height: 20px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  pointer-events: none;
  line-height: 24px;
  min-width: 30px;
  position: absolute;
  top: -40px;
  left: calc(100% + -11px);
  transform: translateX(-50%);
  background-color: #007dab;
  color: white;
  padding: 2px 8px;
  border-radius: 15px;
  min-width: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.view-count .count::after {
  content: "";
  position: absolute;
  border-width: 6px;
  border-style: solid;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-color: #0b7cab transparent transparent transparent;
}
.share_modal .btn-close {
  right: 10px;
  top: 5px;
  font-size: 30px;
  position: absolute;
  line-height: 30px;
  background-color: transparent;
}
.share_modal .modal-title {
  font: 700 1.1rem / 1.5 var(--font4);
  color: var(--color1);
}
.share-item .share-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.share-item .share-icon-box a img {
  width: 55px;
  height: 55px;
  text-align: center;
  margin-bottom: 5px;
}
.share-item .share-icon-box a {
  padding: 10px 6px;
  border-radius: 6px;
  background-color: transparent;
}
.share-item .share-icon-box a:focus {
  background-color: #e5e5e5;
}
.share-item .share-icon-box a span {
  text-transform: capitalize;
  font-size: 13px;
  color: var(--color1);
  font-family: var(--font4);
  font-weight: 600;
  text-align: center;
  display: block;
}
.copy-url-btn .btn {
  cursor: pointer;
  border: 0;
  background: #0b7cab;
  padding: 10px 20px;
  border-radius: 13px;
  color: var(--color3);
  font-family: var(--font4);
  font-weight: 500;
  font-size: 15px;
  border-radius: 10px;
}
#shareModal_Slider .owl-prev {
  --boxshadow: 0 1px 2px rgb(0 0 0 / 10%);
  position: absolute;
  left: -25px;
  top: 15px;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  border: 0;
  line-height: 47px;
  background: var(--color3);
  color: var(--color1);
  -webkit-box-shadow: var(--boxshadow);
  box-shadow: var(--boxshadow);
}

#shareModal_Slider .owl-next {
  --boxshadow: 0 1px 2px rgb(0 0 0 / 10%);
  position: absolute;
  right: -25px;
  top: 15px;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  border: 0;
  line-height: 47px;
  background: var(--color3);
  color: var(--color1);
  -webkit-box-shadow: var(--boxshadow);
  box-shadow: var(--boxshadow);
}

#shareModal_Slider .owl-next i,
#shareModal_Slider .owl-prev i {
  font-size: 28px;
  color: var(--color1);
}

#shareModal_Slider .owl-nav .owl-prev.disabled,
#shareModal_Slider .owl-nav .owl-next.disabled {
  visibility: hidden;
}

.headline h3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.share-bar {
  position: fixed;
  top: 70px;
  width: 100%;
  background: #f1f1f1;
  display: none;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.share-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 6px;
  border-radius: 8px;
  background: #e0e0e0;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}

.share-bar .social-icons a:hover {
  transform: scale(1.1);
}

/* --------article-popup--------- */

.article-popup {
  background: #fff;
  box-shadow:
    0 1px 2px rgb(0 0 0 / 10%),
    0 2px 4px rgb(0 0 0 / 10%);
  border-radius: 7px;
  cursor: pointer;
  margin-bottom: 30px;
}

.article-popup img {
  max-width: 100%;
  width: 100%;
  height: 254px;
  margin: 0 auto;
  object-fit: cover;
  object-position: top;
}
.article-popup h4 {
  padding: 15px 15px 0px;
  font-size: 17px;
  font-weight: 700;
  line-height: 27px;
  font-family: var(--font2);
  margin-bottom: 3px;
}
.article-popup p {
  padding: 0 15px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  font-family: var(--font1);
  text-align: left;
  min-height: 140px;
  color: #000;
}
.article-popup a {
  text-decoration: none;
  color: #fff;
  background: #0076a7;
  padding: 8px 15px;
  text-align: center;
  display: inline-block;
  margin: 0 15px 15px;
  width: 89%;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  font-family: var(--font1);
}

.article-modal-img img {
  max-width: 100%;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* .aside_bar ul li{
	margin-bottom:10px;
} */

.aside_bar ul li a {
  font: 600 15px/1.5 var(--font4);
  color: #001e2b;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.aside_bar ul li a > svg {
  width: 20px;
  height: 20px;
  color: #001e2b;
}
.aside_bar .nav-link:hover {
  background-color: #f0f3f2;
  color: #001e2b;
}
.aside_bar .nav-link.active {
  background-color: #001e2b;
  color: var(--color3);
}
.aside_bar .nav-link.active svg {
  color: var(--color3);
}
.user_profile_content h4 {
  font: 600 16px/1.5 var(--font4);
  color: #001e2b;
}
.user_profile_content p {
  font: 500 14px/1.5 var(--font4);
  margin-bottom: 0px;
}
.user_profile_content .form-group .form-control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--font4);
  color: #21313c;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  border: 1.5px solid #dfe2e1;
  border-radius: 0.5rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.user_profile_content .form-group .form-control:focus {
  border-color: #001e2b;
}
.user_profile_content .form-group textarea {
  height: 90px !important;
  resize: vertical;
}
.user_profile_content .wp-profile .iti__selected-dial-code {
  font-family: var(--font4);
  font-weight: 600;
  color: #001e2b;
}

.user_profile_content .update-btn button,
.change-password-form .btn-changes {
  border: 1px solid #001e2b;
  background-color: #001e2b;
  color: #fff;
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: var(--font4);
}
.change-password-form .btn-reset {
  font: 500 15px/1.5 var(--font4);
}

.user-profile .profile-wrapper img {
  width: 100px;
  height: 100px;
  border: 2px solid #eff1f2;
  padding: 5px;
}
.profile-wrapper .upload-icon {
  position: absolute;
  bottom: 10px;
  right: 70px;
  background: #001e2b;
  color: var(--color3);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* font-size: 16px; */
  border: 2px solid var(--color3);
}
.profile-wrapper .upload-icon svg {
  width: 20px;
  height: 20px;
}

.upload-btn .upload-img {
  border: 1px solid #001e2b;
  /* background-color: #001e2b; */
  color: #001e2b;
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: var(--font4);
}
.user_profile_content table thead {
  background-color: #001e2b;
  color: var(--color3);
  border: 0px;
}

.user_profile_content table thead tr th,
.user_profile_content table thead tr td,
.user_profile_content table tbody tr td,
.user_profile_content table tbody tr th {
  font: 600 15px/1.5 var(--font4);
  color: #001e2b;
  padding: 10px;
  text-align: left;
  border-bottom: 0px solid #dfe2e1;
}

.user_profile_content table thead tr th {
  color: var(--color3);
}
.user_profile_content table tbody tr td span {
  color: #00a63f;
}
.change-password-form .form-group input.error-label,
.profile-form .form-group input.error-label {
  border-color: #ee0101;
}
.change-password-form .error-label,
.profile-form .error-label {
  color: #e7000b;
  font: 500 13px / 1.5 var(--font4);
  margin-top: 5px;
}
.user_profile_content .table-responsive {
  border: 1px solid #001e2b;
  border-radius: 10px;
  margin-top: 20px;
}
.non-member .icon-wrapper {
  background-color: #001e2b;
  width: 50px;
  height: 50px;
}
.non-member a {
  border-color: #001e2b !important;
  color: #001e2b;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font4);
}
.non-member a:hover {
  background-color: #001e2b;
  color: var(--color3);
  border-color: #001e2b !important;
}

.change-password-form .form-group svg {
  right: 20px;
  top: 14px;
  width: 20px;
  height: 20px;
}

/* ------------------------------------ */
.articel-content {
  margin-bottom: 70px;
}

.bg-fade {
  background: linear-gradient(
    to bottom,
    rgb(255 253 253 / 77%) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgb(247 247 247) 60%
  );
  position: absolute;
  bottom: 220px;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  height: 260px;
  padding: 70px 15px 0px 15px;
  z-index: 99;
}
.text_fade h3 {
  font-family: var(--font2);
  font-weight: 600;
  font-size: 23px;
  color: #0076a7;
  margin-top: 15px;
  margin-bottom: 5px;
}
.text_fade h5 {
  margin-top: 10px;
  font-family: var(--font2);
  font-weight: 600;
  font-size: 18px;
  color: #0076a7;
  line-height: 35px;
}
.text_fade a {
  color: var(--color1);
}

.bg-fade .divisionor {
  float: none;
  margin: 15px auto 18px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}

.bg-fade .divisionor .line.l {
  left: 0;
}

.bg-fade .divisionor .line.r {
  right: 0;
}

.bg-fade .divisionor .line {
  border-top: 1px solid #dfdfdf;
  position: absolute;
  top: 15px;
  width: 45%;
}
.article-read-btn {
  padding: 4px 20px;
  font-size: 16px;
  font-family: var(--font8);
  border: 0;
  background: #0076a7;
  font-weight: 700;
  margin-top: 5px;
  color: #fff;
  border-radius: 5px;
}

/* -----------accept cookies policy css--------------------  */

.cookies .cookies-text {
  font-size: 13px;
  font-weight: 500;
}
.cookies .cookies-text {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font4);
}

.cookies .btn-primary {
  background-color: #00b3ba;
  border-color: #00b3ba;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-family: var(--font4);
}
.cookies .btn-primary:hover {
  background-color: #0a969b;
  border-color: #0a969b;
}

/* contact section css */
.contact-us {
    padding: 50px 0px;
    scroll-margin-top: 50px;
}
.bg-contact {
    background-image: url(../images/contact-bg-new.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    padding: 50px 50px;
    border-radius: 0.8rem;
}

.contact-us .card-body h2::before {
    background-color: #000;
    content: "";
    height: .25rem;
    left: 0%;
    position: absolute;
    top: -10px;
    width: 3.125rem;
    text-align: center;
}

.sub-m-title {
    font: 700 52px / 1.3 var(--font4);
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info ul li .call_icon{
  background-color: var(--color4);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-us .quote-btn:hover{
  color: #fff;
    background-color: #00b3ba;
    border-color: #00b3ba;
}

.btn-bg-pink {
    padding: 13px 25px !important;
    background-color: #fff;
    height: auto !important;
    color: #000;
    border-radius: 5px;
    font-family: var(--font4);
    font-weight: 600;
}

.border-white {
    border: 1px solid #fff !important;
    color: #fff !important;
}

.btn-bg-pink {
    padding: 13px 25px !important;
    background-color: #fff;
    height: auto !important;
    color: #000;
    border-radius: 5px;
    font-family: var(--font4);
    font-weight: 600;
}
.contact-us .card {
    border-radius: 0rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 40px;
}
.contact-us .card-body h2 {
    font-family: var(--font4);
    font-size: 25px;
    color: #000;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    margin-top: 0px;
}

.contact-us .card-body h3 {
    font: 700 17px / 1.5 var(--font4);
    color: #111827;
    margin-bottom: 20px;
}

.contact-us .card-body h3 a {
    color: var(--color4);
    text-decoration: underline !important;
}

.contact-info ul li {
    font: 500 15px / 1.5 var(--font1);
    color: #111827;
    margin-bottom: 10px;
    float: left;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    font-size: 20px;
    margin-right: 6px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    color: var(--color4);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: 0.8s ease-in-out;
    float: left;
}

.contact-info ul li a {
    font: 500 15px / 1.5 var(--font4);
    color: #111827;
    float: left;
    display: flex;
    align-items: center;
}

.contact-info ul li .whatsapp-icon {
    background-color: #25D366;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* contact section css end */

/* contact modal start */
.contact-us-modal .modal-content{
	background-color: #10092f;
    border-radius: 10px;
    border: 2px solid #fcb316;
    padding: 5px;
}
.contact-form-title h2 {
    font: 700 29px/1.3 var(--font4);
    color: #fff;
    margin-bottom: 30px;
}
.contact-form-box .form-group label {
	font: 500 14px / 1.5 var(--font4);
	color: #fff;
	margin-bottom: 0px;
}
.contact-neww .checkbox-1 a {
    color: #fcb316;
}
.contact-form-box .form-group .form-control,
.contact-form-box .form-group textarea ,
.contact-form-box .form-group select {
	font: 500 14px / 1.5 var(--font4);
    color: #fff;   
    border: 2px solid #fff;
    border-radius: 0px;
    /* padding: 10px 15px; */
    outline: none;
    transition: border-color 0.3s ease;
    height: 50px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background-color: transparent;
    resize: none;
}

.contact-neww .theme-form-one input, .theme-form-one .form-control {
    width: 100%;
    border: none;
    /* border-bottom: 1px solid #dfdfdf!important; */
    border-radius: 0;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    padding: 0 0 12px 0;
    margin-bottom: 35px;
    background: none;
    color: #fff;
}

.contact-neww .iti__selected-dial-code{
  color: #fff;
}

.contact-neww .iti__arrow{
  border-top: 4px solid #ffffff;
}

.contact-neww .theme-form-one textarea {
    width: 100%;
    max-width: 100%;
    height: 110px;
    max-height: 110px;
    resize: none;
    border: none;
    border-bottom: 1px solid #dfdfdf!important;
    font-size: 16px;
    padding: 0 0 10px 0;
    margin-bottom: 32px;
    background: none;
    color: #fff;
}
 
.contact-neww label{
  color: #fff;
  font: 500 14px / 1.5 var(--font4);
  margin-bottom: 0;
}

.contact-neww .securitycode{
  color: #fff;
  border: 1px dashed #f5c400;
  font-size: 20px;
}

.contact-neww .securitycode::before{
  background: #f5c4007e;
}

.contact-neww .securitycode::after{
  background-image: radial-gradient(#f5c4007e 1px, transparent 1px);
}

.contact-neww .checkbox-1 input {
    border: none;
    border-bottom: 1px solid #dfdfdf;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    font-size: 21px;
    padding: 0;
    margin-bottom: 0;
    width: auto;
    position: absolute;
    top: 6px;
    left: -21px;
    font-family: var(--font4);
    
}

.contact-neww .theme-button-one {
  width: auto!important;
  background-color: #fcb316!important;
    color: #000!important;
    border-color: #fcb316!important;
    font-family: var(--font4)!important;
    line-height: 1.5;
    border-radius: 8px!important;
    /* font-size: 20px;
    font-weight: 700;
    color: #fff;
    border-radius: 0px;
    padding: 0 15px;
    transition: 2s;
    background: linear-gradient(to right, #00b3ba, #00a6bf, #0097c1, #0088bf, #0978b9)!important;
    padding-bottom: 0!important; */
}

.contact-neww input::placeholder,
.contact-neww textarea::placeholder {
  font: 500 14px / 1.5 var(--font4);
    color: #fff;
    
}

.contact-neww label a:hover{
  color: #f5c400!important;
}

.contact-form-box .form-group .form-control:focus,
.contact-form-box .form-group textarea:focus ,
.contact-form-box .form-group select:focus {
	border-color: #00b3ba;
	box-shadow: none;
} 
.contact-form-box  .form-group .btn-primary{
    background-color: #00b3ba;
    color: #fff;
    border-color: #00b3ba;
    font-family: var(--font4);
}
.contact-form-box .terms_and_conditions a{
	color: #00b3ba;
}
.contact-form-box .form-check-input:checked{
    background-color: #00b3ba;
    border-color: #00b3ba !important;
}
.contact-form-box .form-group select option {
   background-color: #111;
  color: #fff;
  border-color: #f5c400;
  padding-left: 10px;
}
.contact-form-box .error {
    color: #f2545b !important;
    font-size: 15px;
    display: block;
    margin-top: 5px;
    font-weight: 600;
}

.contact-form-box .error-field {
  border-bottom: 1px solid #ff4d4f !important;
}

#Contactus .btn-close{
	position: absolute;
    right: 20px;
    background-color: #fff;
    opacity: 1;
    width: 25px;
    height: 25px;
    border-radius: 6px;
}

.contact-form-box .form-check-input:checked {
    background-color: #00b3ba;
    border-color: #00b3ba !important;
}
.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E);
}

.form-check-input{
  background-color: #fff;
}

/* contact modal end */

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.recent-events .nav {
  background: #f6f6f6;
  padding: 10px 8px;
  border-radius: 20px 20px 0px 0px;
}
.recent-events .nav .nav-item .nav-link {
  font: 600 15px/1.5 var(--font4);
  color: #212121;
  padding: 12px;
  transition: all 0.3s ease;
}

.recent-events .nav .nav-item .nav-link.active {
  color: var(--color3);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.recent-events .tab-content .tab-pane {
  padding: 15px 20px 10px 20px;
  border-radius: 0px 0px 15px 15px;
}
.recent-events .tab-content .tab-pane .event-list ul li {
  list-style: none;
  position: relative;
  padding-left: 15px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #f1f0f0;
}
.recent-events .tab-content .tab-pane .event-list ul li:last-child {
  border-bottom: 0px;
}
.recent-events .tab-content .tab-pane .event-list > ul::before {
  position: absolute;
  content: "";
  background: #d9d9d9;
  height: 100%;
  width: 1px;
  top: 0px;
  left: -5px;
}
.recent-events .tab-content .tab-pane .event-list > ul > li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #066ac9;
  border-radius: 50%;
  left: -13px;
  top: 2px;
  border: 5px solid #fff;
}

.recent-events .tab-content .tab-pane .event-list .event-name h4 {
  font: 500 15px/1.5 var(--font4);
  margin-bottom: 0px;
}
.recent-events .tab-content .tab-pane .event-list .event-date {
  font: 500 13px / 1.5 var(--font4);
}

/* --- Smooth Slide Animation --- */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations to tab content */
.tab-pane.slide-left.show.active {
  animation: slideInFromLeft 0.5s ease forwards;
}

.tab-pane.slide-right.show.active {
  animation: slideInFromRight 0.5s ease forwards;
}

.past_session {
  padding: 30px 0px;
  clear: both;
  /* background-color:#f5f5f5; */
}
.past_session .past_title h3 {
  color: #1e293b;
  margin-bottom: 0px;
  font: 700 24px/1.5 var(--font4);
}
.past_tabs ul {
  background: #f6f6f6;
  padding: 10px 20px;
  border-radius: 20px 20px 0px 0px;
}
.past_tabs ul li {
  margin-left: 10px;
}
.past_tabs ul li .nav-link {
  font: 500 14px/1.5 var(--font4);
  color: #212121;
  padding: 8px 15px;
  transition: all 0.3s ease;
}
.past_tabs ul li .nav-link:hover {
  background: var(--color3);
}
.past_tabs ul li .nav-link.active:hover {
  background-color: #066ac9;
  color: #fff;
}
.past_tabs .tab-content .tab-pane {
  box-shadow: none;
  border-radius: 0px 0px 15px 15px;
  border-color: #ededed;
  border-top: 0;
}

.tab-pane.slide-up.show.active {
  animation: slideInFromBottom 0.5s ease forwards;
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-thumbnail-card .plyr__controls {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumbnail-card:hover .plyr__controls {
  opacity: 1;
}

.video-title h3 {
  font: 600 16px/23px var(--font4);
  margin: 5px 0 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 50px;
  color: var(--bs-blue);
}

.premium_div {
  width: 85px;
  height: 15px;
  padding: 1px 4px 0 7px;
  border-radius: 0;
  background-color: #ffc200;
  top: 0px;
  right: 0px;
  font-size: 10px;
  color: #000;
  font-weight: 700;
  line-height: 13px;
  box-sizing: border-box;
}

/* Optional individual colors */
.share-bar .linkedin {
  color: #0077b5;
}
.share-bar .twitter {
  color: #000;
}
.share-bar .facebook {
  color: #1877f2;
}
.share-bar .whatsapp {
  color: #25d366;
}
.share-bar .email {
  color: #555;
}
.share-bar .reddit {
  color: #ff4500;
}
.all-tactical-workshop ul li h6{
  line-height: 1.5!important;
  font-family: var(--font2);
  font-weight: 500;
}
.all-tactical-workshop ul li h5{
  font-family: var(--font2);
  color: #0076A7;
}
.all-tactical-workshop ul li p{
  font: 400 15px/ 1.5 var(--font2);
}
.all-tactical-workshop ul li span{
  color: var(--color1);
  margin-bottom: 10px;
}
.intl-tel-picker input[type="tel"] {
  padding-left: 80px !important;
}
@media (min-width: 479px) {
  .video_desktop {
    display: block;
  }

  .video_mobile {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
    .sub-m-title {
        font-size: 26px;
        line-height: 1.3;
    }
    .bg-contact {
        padding: 30px 10px;
    }
        .contact-info ul li {
        width: 100% !important;
    }
    .whatsapp-float {
    bottom: 130px;
        right: 10px;
        z-index: 1000;
  }
}
