body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*=====================*/
:root {
  --white-100: hsl(206, 5%, 100%);
  --white-200: hsl(206, 5%, 90%);
  --white-300: hsl(206, 5%, 80%);
  --white-400: hsl(206, 5%, 65%);
  --white-500: hsl(206, 5%, 45%);
  --black-100: hsl(210, 21%, 12%);
  --black-200: hsl(210, 21%, 9%);
  --black-300: hsl(210, 21%, 6%);
  --black-400: hsl(210, 21%, 3%);
  --black-500: hsl(210, 21%, 1%);
  --night-100: hsl(217, 27%, 20%);
  --night-200: hsl(217, 27%, 16%);
  --night-300: hsl(217, 27%, 12%);
  --night-400: hsl(215, 27%, 8%);
  --night-500: hsl(215, 27%, 4%);
  --pink-100: hsl(326, 85%, 90%);
  --pink-200: hsl(327, 87%, 80%);
  --pink-300: hsl(329, 86%, 70%);
  --pink-400: hsl(330, 81%, 60%);
  --pink-500: hsl(333, 71%, 50%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}
.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  border-radius: 0.25rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.btn-primary {
  padding: 0.75rem 1.5rem;
  color: var(--white-100);
  background-color: var(--pink-500);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  padding: 0.75rem 1.5rem;
  color: var(--white-100);
  background-color: var(--night-300);
  box-shadow: var(--shadow-medium);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: none;
  padding: 0;
  border: none;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
}
.darkmode .header {
  background-color: var(--night-300);
}

.logo_a {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pink-500);
  text-transform: uppercase;
  order: 1;
}

.navbar {
  display: flex;
  /* flex-wrap: wrap; */
  align-content: center;
  /* align-items: center; */
  /* justify-content: space-between; */
  width: 100%;
  /* height: 4rem; */
  margin: 0 auto;
}
.header .navbar-left {
  width: 12%;
  float: none!important;
  padding: 0 0;
  display: flex;
}
.navbar-center {
  display: flex;
  width: 21%;
  position: absolute;
  right: 0;
  bottom: -17px;
  background: linear-gradient(90deg, rgb(244 198 25) 0%, rgb(243 107 52) 31%, rgb(237 19 124) 64%, rgb(40 143 209) 100%);
  padding-right: 20px;
}
.navbar-right {
  display: flex;
  flex: 0 0 17%;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1.5rem;
}
@media only screen and (max-width: 992px) {
  .navbar-left, .navbar-right {
    flex: 0 0 auto;
  }
  .navbar-right {
    align-items: center;
  }
  .navbar-center {
    flex: 0 0 100%;
    order: 3;
    align-items: center;
  }
}

@media only screen and (max-width: 992px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    transform: translate(-100%);
    background-color: var(--white-100);
    transition: all 0.4s ease-in-out;
  }
  .menu.is-active {
    transform: translate(0%);
  }
  .darkmode .menu {
    background-color: var(--night-300);
  }
}

.menu-header {
  display: none;
  box-shadow: var(--shadow-medium);
}
.menu-item {
  display: inline-block;
  line-height: 1.5;
  padding-right: 1.25rem;
  margin-left: 20px;
}
.menu-link {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  text-transform: capitalize;
  transition: all 0.25s ease;
  font-size: 18px;
  padding: 8px;
  text-transform: uppercase;
}
.menu-link > i.bx {
  font-size: 1.35rem;
  margin-left: 0.25rem;
  transform: rotate(90deg);
}
.darkmode .menu-link {
  color: var(--white-100);
}
.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-size: 1.45rem;
  color: var(--black-300);
  transition: all 0.25s ease;
}
.darkmode .menu-icon {
  color: var(--white-100);
}
@media only screen and (min-width: 993px) {
  .menu-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .menu-header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }
  .menu-header.is-active {
    visibility: visible;
    background-color: var(--white-100);
  }
  .menu-header.is-active > .menu-arrow {
    display: block;
  }
  .darkmode .menu-header.is-active {
    background-color: var(--night-100);
  }
  .menu-arrow {
    display: none;
    cursor: pointer;
    width: 3rem;
    height: 4rem;
    text-align: center;
  }
  .menu-arrow > i.bx {
    font-size: 1.5rem;
    line-height: 4rem;
    color: var(--black-300);
    transition: all 0.25s ease;
  }
  .darkmode .menu-arrow > i.bx {
    color: var(--white-100);
  }
  .menu-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    color: var(--black-300);
  }
  .darkmode .menu-title {
    color: var(--white-100);
  }
  .menu-inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .menu-item {
    display: block;
    line-height: 1;
    padding-inline: 0;
  }
  .menu-link {
    justify-content: space-between;
    height: 2.5rem;
    line-height: 2.5rem;
    padding-inline: 1.25rem;
  }
  .menu-link > i.bx {
    margin-left: 0.5rem;
    transform: rotate(0deg);
  }
}

.submenu {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 2px solid var(--pink-400);
  background-color: var(--white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.25s ease-in-out;
}
.darkmode .submenu {
  border-top: 2px solid var(--pink-300);
  background-color: var(--night-300);
}
.submenu-inner {
  flex: 0 0 25%;
  padding: 0 1rem;
}
.submenu-title {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  color: var(--pink-500);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.darkmode .submenu-title {
  color: var(--pink-300);
}
.submenu-item {
  display: block;
  line-height: 1;
  margin: 0 auto;
}
.submenu-link {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  padding: 0.75rem 0;
  white-space: nowrap;
  text-transform: capitalize;
  color: var(--black-300);
  transition: all 0.25s ease-in-out;
}
.darkmode .submenu-link {
  color: var(--white-100);
}
.submenu-image {
  display: block;
  width: 100%;
  height: auto;
  margin-block: 0.5rem;
  object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    box-shadow: none;
    transform: translateX(0%);
  }
  .submenu.is-active {
    display: block;
  }
  .submenu-inner {
    flex: 0 0 100%;
    padding: 0rem;
  }
  .submenu-list {
    margin-bottom: 1rem;
  }
  .submenu-link {
    display: block;
  }
  .submenu-image {
    margin-top: 0;
  }
}

.megamenu {
  left: 50%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transform: translateX(-50%);
}
.megamenu-column-1 {
  left: 65%;
  max-width: 15rem;
  width: 100%;
  height: auto;
}
.megamenu-column-4 {
  display: flex;
  flex-wrap: wrap;
  max-width: 62rem;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .megamenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
    box-shadow: none;
  }
}

.switch {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  margin-right: 0.5rem;
}
.switch-light, .switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}
.switch-light {
  font-size: 1.3rem;
  visibility: visible;
  color: var(--black-300);
}
.darkmode .switch-light {
  font-size: 0rem;
  visibility: hidden;
}
.switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: var(--white-100);
}
.darkmode .switch-dark {
  font-size: 1.3rem;
  visibility: visible;
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  width: 1.6rem;
  height: 1rem;
  margin-right: 1rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}
@media only screen and (max-width: 992px) {
  .burger {
    opacity: 0;
    visibility: visible;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 1rem;
  background: var(--black-400);
}
.darkmode .burger-line {
  background: var(--white-100);
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
a.logo_a {
    width: 100%;
    display: block;
    position: relative;
    height: 100%;
    left: -5px;
    margin-left: 0px;
    padding: 2px 0 0;
}
nav.navbar.container {
    margin: 0;
}
.navbar {
    margin-bottom: 0!important;
}
ul.menu-inner {
    margin: 0;
    display: flex;
    align-items: center;
    /* background: linear-gradient(90deg, rgb(244 198 25) 0%, rgb(243 107 52) 31%, rgb(237 19 124) 64%, rgb(40 143 209) 100%); */
}
a.menu-link.login_btn_tri {
    /* background: #0066af; */
    color: white;
    /* border-radius: 5px; */
    padding: 13px 15px;
}

.menu {
    margin-left: auto;
    /* position: absolute; */
    margin: 0;
    /* z-index: 9; */
    /* right: 0px; */
    padding: 0 0;
    /* background: linear-gradient(90deg, rgb(244 198 25) 0%, rgb(243 107 52) 31%, rgb(237 19 124) 64%, rgb(40 143 209) 100%); */
    position: relative;
}
.e_samiksha_section {
    width: 60%;
    display: flex;
    align-items: end;
    position: relative;
    top: 0px;
    text-align: center;
}
/*.e_samiksha {
    width: 170px;
    margin: auto;
    display: flex;
    align-items: end;
}*/
.e_samiksha {
    width: 100%;
    margin: 0px auto 0px 168px;
    display: flex;
    align-items: end;
    justify-content: center;
}
.navbar-center:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 53px solid #f4c619;
    border-left: 32px solid transparent;
    position: absolute;
    left: -31px;
    top: 0px;
    }
.top-nav {
    background-color: #203763;
    position: absolute;
    padding: 0px 20px;
    right: -20px;
    transform: skewX(40deg);
    border: 1px solid #cccccc75;
    border-top: 0px;
    z-index: 999;
    width: 353px;
}
.top-nav ul.pwdarea {
    margin-right: 0px;
    padding: 0px 0px 0px 8px;
    display: flex;
}
.top-nav > ul {
    margin: 0;
    transform: skewX(-40deg);
}
.top-nav ul.pwdarea li {
    padding: 5px 15px;
    font-weight: 600;
}
.top-nav ul.pwdarea li a{
    display: flex;
    align-items: center;
    color: black;
}
.top-nav ul.pwdarea li a p{
    margin: 0;
    font-size: 13px;
    font-weight: 400;
}
.top-nav ul.pwdarea li a i{
    margin-right: 8px;
}
p.eng-line {
    position: relative;
    /* left: 40px; */
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: -3px;
    white-space: nowrap;
}
.foot-head .f-text p {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

/*=====================*/
a:focus, a:hover {
    text-decoration: none!important;
}

.owl-theme .owl-nav button.owl-prev {
    font-size: 30px!important;
    width: 36px;
    height: 36px;
    border-radius: 100%!important;
    background: #0066af!important;
    color: #fff!important;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    display: flex!important;
    align-items: center;
    padding: 0 13px!important;
}

.owl-theme .owl-nav button.owl-next {
    font-size: 30px!important;
    width: 36px;
    height: 36px;
    border-radius: 100%!important;
    background: #0066af!important;
    color: #fff!important;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    left: auto;
    display: flex!important;
    align-items: center;
    padding: 0 15px!important;
}


/*====================*/
.content-section {
    display: table;
    width: 100%;
    position: relative;
    padding: 17px 0;
    background-image: url('../images/Testimonials_1.png');
    background-size: cover;
}
.content-section h3.section-title {
    font-size: 20px;
    margin: 0 0 30px 0;
    font-weight: bold;
}
section.content-section.upcoming-our-events .upcoming-event-block {
    /* min-height: 320px; */
}
.upcoming-event-block {
    position: relative;
    margin-bottom: 30px;
    /* background: #002f63; */
    background: white;
    display: table;
    width: 100%;
    box-shadow: 0px 6px 13px rgb(68 68 68 / 25%);
    padding: 10px 15px 15px;
}
.upcoming-event-block:hover{
    background:linear-gradient(136deg, rgba(194, 54, 101, 1) 0%, rgba(27, 30, 111, 1) 88%)
}
.upcoming-our-events .upcoming-event-block:hover p, .upcoming-our-events .upcoming-event-block:hover h5, .upcoming-our-events .upcoming-event-block:hover img {
        color: #fff;    filter: brightness(100);
}
.upcomingeventblock_sec_tri {
    width: 13%;
    float: left;
    margin-right: 15px;
}
section.content-section.upcoming-our-events .upcoming-event-block img {
    /* height: 145px; */
    object-fit: fill;
    width: 35%;
    object-fit: cover;
    margin: auto auto 10px;
}
.upcoming-event-block img {
    transition: ease all 0.3s;
    opacity: 1.0;
}
.upcoming-our-events .upcoming-event-block p {
    display: block;
    /* color: #fff; */
    color: #002f63;
    padding: 0px 15px;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 18px;
}
.upcoming-our-events .upcoming-event-block h5 {
    font-size: 13px;
}
.upcoming-event-block h5 {
    font-weight: normal;
    margin: 0 0 15px 0;
    padding: 0px 15px;
    /* color: #fff; */
    color: black;
}

/*====================*/


.footer {
    background-color: #1d113e;
    background-repeat: repeat-x;
    position: relative;
    z-index: 5;
    background-size: cover;
    padding: 0;
}
.footer .sec-1 {
    position: relative;
    z-index: 5;
}
.foot-head {
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.footer .sec-1 ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
}
.foot-head .f-logo {
    width: 79px;
}
.foot-head .f-text {
    padding-left: 10px;
    color: #fff;
}
.foot-head .f-logo img {
    max-width: 100%;
    background: white;
    border-radius: 50%;
    padding: 2px;
}
.foot-head .f-text h4 {
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 22px;
}
.footer .sec-1 ul li {
    color: #fff;
    padding: 7px 15px 7px 50px;
    position: relative;
}
.footer .sec-1 ul li.address:before {
    content: "\f041";
    font-size: 2.7em;
}
.footer .sec-1 ul li:before {
    font-family: FontAwesome;
    /* color: #ff8236; */
    font-size: 3.2em;
    position: absolute;
    left: 0px;
    top: 2px;
}
.footer .sec-1 ul li b {
    display: block;
    font-size: 16px;
}
.footer .sec-1 ul li.email:before {
    content: "\f003";
    font-size: 2.1em;
}
.footer .sec-1 ul li.call:before {
    content: "\f095";
    font-size: 2.4em;
}
.footer:after {
    content: "";
    position: absolute;
    left: -32px;
    top: -10px;
    width: 46%;
    bottom: 0;
    /* height: 100%; */
    transform: skewX(-20deg);
    z-index: 0;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
    background: linear-gradient(90deg, rgba(194, 54, 101, 1) 0%, rgba(27, 30, 111, 1) 100%);
}
.footer .sec-2 .footlink {
    list-style: none;
    margin: 0px;
    padding: 0px;
    column-count: 3;
}
.footer .sec-2 .footlink li a {
    padding: 5px;
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: right;
}
.footer .sec-2 .visitor {
    padding: 15px 3px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    text-align: center;
    margin-top: 0;
    position: relative;
    /* min-height: 110px; */
    margin: 15px 0;
}
.fa-2x {
    margin: 0 10px;
}
.footer .copyright {
    color: #fff;
    padding-top: 30px;
    text-align: right;
}
.footer .sec-2 {
    padding-left: 85px;
    padding-top: 2px;
}
  /*====================*/



  .banner-section:after {
    content: "";
    position: absolute;
    left: -100px;
    top: 0px;
    background: linear-gradient(136deg, rgba(194, 54, 101, 1) 0%, rgba(27, 30, 111, 1) 88%);
    width: 23.8%;
    height: 100%;
    transform: skewX(20deg);
    z-index: 1;
}
.banner-section {
    position: relative;
    z-index: 10;
    padding: 0;
}
.leader {
    position: absolute;
    width: 250px;
    left: 0px;
    top: 0px;
    z-index: 2;
}
.leader > ul {
    padding: 0px 0px 0px 0;
    list-style: none;
    margin: 30px 0px 0px 0px;
}
.leader li {
    padding: 8%;
    position: relative;
}
.leader .pmmodi {
    text-align: center;
    padding: 7px 17px;
    border-radius: 50%;
    background: #fff;
    width: 185px;
    height: 185px;
    box-sizing: border-box;
    /* border: 4px solid #f37223; */
    color: #1d113e;
    position: relative;
    z-index: 5;
    opacity: 0;
}
.leader .pmmodi img {
    height: 90px;
    margin: auto;
}
.banner-section img {
    width: 100%;
    position: relative;
    z-index: 0;
}
.leader .pmmodi h4 {
    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 600;
    margin-top: 5px;
}
.leader .pmmodi p {
    font-size: 13px;
    font-weight: normal;
    margin: 0px;
}
.leader .shape-1 {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    opacity: .5;
    animation: float-bob-y 5s ease-in-out infinite;
}
.leader .circle-1 {
    display: block;
    border: 4px solid #efd181;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0px;
    animation: float-bob-y 5s ease-in-out infinite;
}
.leader .circle-2 {
    display: block;
    background: linear-gradient(90deg, rgb(244 198 25) 0%, rgb(243 107 52) 31%, rgb(237 19 124) 64%, rgb(40 143 209) 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    right: 38px;
    bottom: 0px;
    animation: float-bob-y 5s ease-in-out infinite;
}
.leader .shape-1 img {
    position: relative;
}


@keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}
.section-first {
    padding: 1px 0px;
    background: linear-gradient(90deg, rgba(194, 54, 101, 1) -110%, rgba(27, 30, 111, 1) 30%);
}
.bner-link {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
.bner-link li {
    width: 25%;
    box-sizing: border-box;
    padding: 0px 15px;
    /* border-right: 1px solid rgba(255, 255, 255, .5); */
}
.bner-link li .linkbtn {
    display: table;
    text-decoration: none;
    width: 100%;
    color: #fff;
    transition-duration: .3s;
}
.bner-link li .linkbtn .icon {
    display: table-cell;
    vertical-align: middle;
    width: 60px;
}
.bner-link li .linkbtn .text {
    display: table-cell;
    font-size: 16px;
    vertical-align: middle;
    padding-left: 15px;
    font-weight: 600;
}
.bner-link li .linkbtn .icon img {
    /* background: #f86f24; */
    border-radius: 50%;
    border: 2px solid #ffffff;
    max-width: 100%;
    padding: 6px;
}
.fgfjg_tri {
    position: relative;
}
.leader .shape-2 {
    display: block;
    position: absolute;
    bottom: -100px;
    right: 0px;
    z-index: 0;
    opacity: .5;
    animation: float-bob-y 5s ease-in-out infinite;
}
a.logo_a:after {
        content: "";
        position: absolute;
        left: -84px;
        top: -2px;
        bottom: -1px;
        background: linear-gradient(136deg, rgba(194, 54, 101, 1) 0%, rgba(27, 30, 111, 1) 88%);
        width: 193px;
        /* height: 100%; */
        transform: skewX(20deg);
        z-index: 0;
}
a.logo_a img{
     z-index: 1;
     position: relative;
     background: white;
     border-radius: 50%;
     padding: 2px;
     width: 51%;
}
li.hfhf-2 .circle-2 {
    bottom: -100px;
    right: auto;
    left: 0;
}


.ffgrfg_tri {
    background: #203864;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 0;
}