@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
body {
  font-size: 14px;
  font-family: 'Inter', sans-serif; }

@media (max-width: 767px) {
  body {
    overflow-x: hidden; } }

* {
  margin: 0px;
  padding: 0px; }

a:hover {
  text-decoration: none; }

nav {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  /*background-image: linear-gradient(to bottom, #273f7c 44%, rgba(39, 63, 124, 0.37) 100%);*/
  background-color: #273f7c;  
  padding: 17px 0px;
  position: relative;
  z-index: 999; }

@media (max-width: 992px) {
  nav {
    padding: 3px 0px; }
  nav .container {
    display: none; } }

.main-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center; }

.main-nav > li {
  display: inline-block; }

.main-nav > li a {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  transition: 1s;
  border-bottom: 1px solid transparent; }

.main-nav > li a:focus {
  text-decoration: none; }

.main-nav > li a:hover {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 1s;
  border-bottom: 1px solid #fff; }

.main-nav > li a.active {
  border-bottom: 1px solid #fff; }

.main-nav > li.dropdown {
  position: relative; }

.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  float: left;
  min-width: 190px;
  padding: 0px 0;
  margin: 16px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #273f7c56;
  transition: 1s; }

.main-nav .dropdown-menu li {
  border-bottom: 1px solid rgba(139, 31, 65, 0.1); }

.main-nav .dropdown-menu li:nth-last-child(1) {
  border: 0px; }

.main-nav .dropdown-menu li a {
  font-size: 14px;
  font-weight: normal;
  color: #273F7C;
  display: block;
  padding: 14px 10px;
  font-weight: 500; }

.main-nav .dropdown-menu li a:hover {
  color: #fff;
  background-color: #273F7C; }

.main-nav .dropdown-menu li.dropdown-submenu {
  position: relative; }

.main-nav .dropdown-menu li.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 9px;
  margin-left: 0px;
  border-radius: 0px; }

.dropdown-submenu {
  position: relative; }

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0 6px 6px 6px; }

.dropdown:hover > .dropdown-menu {
  opacity: 1;
  transition: 1s;
  visibility: visible; }

.dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  transition: 1s;
  visibility: visible; }

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  right: 8px;
  position: absolute;
  top: 17px; }

.dropdown-submenu:hover > a:after {
  border-left-color: #fff; }

.top-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 0px; }

.top-bar .left-side {
  -ms-flex: 1;
  flex: 1; }

.top-bar .left-side img {
  cursor: pointer; }

.top-bar .mid-side {
  -ms-flex: 1;
  flex: 1; }

.top-bar .mid-side img {
  min-width: 350px;
  max-width: 350px; }

@media (max-width: 767px) {
  .top-bar .mid-side img {
    max-width: 250px;
    min-width: auto; } }

.top-bar .right-side {
  -ms-flex: 1;
  flex: 1; }

.top-bar .right-side ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.top-bar .right-side ul li {
  display: inline-block;
  margin-left: 23px; }

@media (max-width: 767px) {
  .top-bar .right-side ul li {
    display: none; } }

.top-bar .right-side ul li.search-icon {
  margin-left: 32px;
  position: relative; }

@media (max-width: 767px) {
  .top-bar .right-side ul li.search-icon {
    display: inline-block;
    margin: 0px; } }

.search-local {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  column-gap: 2rem;
  padding-left: 2rem;
  background: #fff;
  border-radius: 1rem;
  height: auto;
  border: 0.1rem solid #000;
  border-right: none;
  position: absolute;
  left: -400px;
  top: -5px;
  min-width: 0px;
  transition: .5s;
  opacity: 0;
  visibility: hidden; }

.search-local.active {
  display: -ms-flexbox;
  display: flex;
  min-width: 400px;
  opacity: 1;
  transition: .5s;
  visibility: visible; }

@keyframes funny-icon {
  0% {
    scale: 1; }
  50% {
    scale: 0.8;
    transform-origin: bottom;
    transform: rotate(-15deg); }
  100% {
    scale: 1; } }

/* INPUT */
.search-local input {
  height: 100%;
  width: 100%;
  -ms-flex: 1 1 25rem;
  flex: 1 1 25rem;
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  outline: none;
  border: none;
  color: #000;
  font-size: 18px; }

input[type="text"]:-ms-input-placeholder {
  color: #000;
  font-size: 18px; }

input[type="text"]::placeholder {
  color: #000;
  font-size: 18px; }

/* BUTTON */
.search-local button {
  background: #273F7C;
  border: none;
  border-radius: 0 1rem 1rem 0;
  font-weight: 500;
  font-size: 18px;
  height: 5rem;
  width: 18rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center; }

button a {
  color: #fff; }

button a:hover {
  color: #fff; }

.search-local button .search-icon {
  display: none; }

.search-local button:hover {
  letter-spacing: 0.5rem; }

.media-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #a3a3a3; }

.media-btn ul {
  margin-bottom: 0px;
  border: 0px; }

.media-coverage {
  padding: 10px 16px;
  border-radius: 5px;
  background-color: #273f7c;
  color: #fff;
  outline: none;
  margin-left: 15px;
  transition: 1s;
  border: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  max-width: 142px;
  max-height: 36px; }

@media (max-width: 767px) {
  .media-coverage {
    padding: 8px;
    font-size: 12px; } }

.media-coverage:hover {
  transition: 1s;
  color: #0c83e7; }

.home-banner img {
  max-width: 100%; }

.hidden {
  display: none !important; }

.welcome-img img {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 10px; }

.welcome-text-data p {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.87;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 38px; }

.welcome-box {
  margin: 8px 0px;
  --tw-shadow: 0 0 3px rgb(60 72 88 / 0.15) !important;
  --tw-shadow-colored: 0 0 3px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  padding: 8px;
  border-radius: 8px;
  transition: 1s;
  display: -ms-flexbox;
  display: flex; }

.welcome-box:hover {
  transition: 1s;
  --tw-shadow: 0 5px 13px rgb(60 72 88 / 46%) !important;
  --tw-shadow-colored: 0 5px 13px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; }

.welcome-box .wel-img {
  margin-right: 12px; }

.welcome-box .wel-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%; }

.welcome-box .wel-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.welcome-box a {
  font-size: 18px;
  margin-bottom: 8px;
  color: #4b43ab;
  display: inline-block;
  font-weight: bold; }

.welcome-box p {
  font-size: 16px; }

.load-more-btn {
  min-width: 100%;
  text-align: center;
  margin-top: 16px; }

.load-more-btn a {
  background-color: #0c83e7;
  color: #fff;
  padding: 10px 20px;
  transition: 1s;
  border-radius: 8px; }

.load-more-btn a:hover {
  background-color: #3da4f8;
  transition: 1s; }

.artical-box-con.artical-box-con-2 {
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: block; }

.artical-box-con.artical-box-con-2 .tab-slider {
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin-right: 0px;
  border-radius: 8px;
  -ms-flex-direction: column;
  flex-direction: column; }

@media (max-width: 767px) {
  .artical-box-con.artical-box-con-2 .tab-slider {
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    margin-right: 0px; } }

.artical-box-con.artical-box-con-2 .tab-slider .hover-img-effect {
  min-width: 100%;
  margin-right: 16px; }

.artical-box-con.artical-box-con-2 .tab-slider .hover-img-effect img {
  max-width: 100%;
  border-radius: 8px; }

.artical-box-con.artical-box-con-2 .tab-slider .read-more a {
  background: #FFFFFF;
  font-size: 15px;
  padding: 14px 38px;
  margin-top: 35%;
  width: 80%; }

.artical-box-con.artical-box-con-video .tab-slider {
  -ms-flex-direction: column !important;
  flex-direction: column !important; }

.artical-box-con.artical-box-con-video .tab-slider .tab-text {
  margin-top: 10px; }

.main-slider__video-icon {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 12px;
  color: var(--notech-black);
  background-color: var(--notech-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0px;
  right: 0;
  bottom: 0;
  background: #fff;
  margin: auto; }

.main-slider__video-icon:hover {
  background-color: #273F7C;
  color: #fff; }

.main-slider__video-icon:before {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  content: "";
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0.2;
  z-index: 1; }

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 63px;
  height: 63px;
  border-radius: 50%; }

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0); } }

.focus-text {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
  padding-bottom: 13px;
  margin: 0px auto;
  margin-bottom: 60px;
  margin-top: 40px;
  position: relative; }

@media (max-width: 767px) {
  .focus-text {
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 24px; } }

.focus-text.color-white {
  color: #fff;
  border-bottom: 1px solid #fff;
  max-width: 380px; }

.focus-text::after {
  content: '';
  position: absolute;
  left: 0px;
  background-color: #333;
  height: 1px;
  width: 100%;
  top: 26px; }

@media (max-width: 767px) {
  .focus-text::after {
    top: 16px; } }

.focus-text span {
  display: inline-block;
  background-color: #fff;
  position: relative;
  z-index: 99;
  padding: 0px 20px; }

.p-b-0 {
  padding-bottom: 0px !important; }

.main-slider__video-icon .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute; }

.main-slider__video-icon .ripple:after {
  animation-delay: 0.6s;
  content: "";
  position: absolute; }

.focus-bg {
  background-color: transparent !important;
  background-repeat: no-repeat;
  background-size: cover; }

.focus-bg * {
  color: #000 !important; }

/* MEDIAS */
@media (max-width: 767px) {
  .search-local {
    padding-left: 0;
    column-gap: 0.25rem; }
  .search-local.active {
    min-width: 330px;
    left: -292px;
    top: 50px;
    background-color: #fff;
    z-index: 99999; }
  .search-local input {
    padding-left: 10px; }
  .search-local button {
    width: 10rem; }
  .search-local button .search-icon {
    display: block;
    margin-inline: auto;
    color: var(--white);
    font-size: 3rem; }
  input[type="text"]:-ms-input-placeholder {
    font-size: 1.7rem; }
  input[type="text"]::placeholder {
    font-size: 1.7rem; } }

#sync1 .item {
  background: #0c83e7;
  color: #FFF;
  border-radius: 3px;
  text-align: center; }

@media (max-width: 767px) {
  #sync1 .item img {
    height: 100%;
    width: 100%;
    min-height: 160px; } }

#sync2 .item {
  margin: 5px 0px;
  text-align: center;
  cursor: pointer; }

#sync1 {
  z-index: -1; }

#sync1 .owl-controls {
  display: none !important; }

@media (min-width: 768px) {
  #sync2 {
    position: absolute;
    top: 24px;
    right: 0 !important;
    width: 412px; }
  #sync2 .owl-wrapper {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: auto !important;
    transform: none !important; }
  #sync2.owl-carousel .owl-item {
    float: none;
    width: 100% !important;
    opacity: 0.6;
    transition: 2s; }
  #sync2.owl-carousel .owl-item.synced {
    opacity: 1;
    transition: 2s; } }

.slider-container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 100%; }

.slider-nav {
  padding-left: 40px; }

.slider-nav .slider-bullet {
  padding: 15px 15px 15px 34.5px;
  background-image: linear-gradient(to bottom, #fff 0%, rgba(234, 241, 255, 0.89) 48%, rgba(255, 255, 255, 0.89) 97%);
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }

.slider-nav .slider-bullet .slider-count {
  padding: 21.2px 26.9px 21.4px 26.6px;
  border-radius: 20.6px;
  background-color: #273f7c;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  display: none;
  left: -32px; }

.slider-nav .slider-bullet .slider-text p {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.57;
  text-align: left;
  color: #484848; }

.slider-nav .slider-bullet .slider-text a p, .slider-nav .slider-bullet .slider-text {
  display: block;
  width: 100%; }

.slider-nav .slider-bullet .slider-text span {
  font-size: 9.7px;
  font-weight: normal;
  line-height: 1.57;
  text-align: left;
  color: #484848;
  display: block; }

.slider-container #sync1 {
  z-index: auto; }

.our-publications {
  padding: 45px 0px;
  border-radius: 36px 36px 0px;
  margin-top: -30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  padding-bottom: 0px;
  position: relative; }

@media (max-width: 767px) {
  .our-publications {
    width: 100%;
    padding-bottom: 0px; } }

@media (max-width: 767px) {
  .our-publications .container {
    width: 100%; } }

.our-publications + .container {
  margin-bottom: 45px; }

.heading-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px; }

.heading-section.black-bg .top-heading {
  margin-bottom: 8px; }

.heading-section.black-bg .top-heading p {
  color: #646464; }

.heading-section.black-bg .bottom-heading p {
  color: #fff; }

.heading-section .top-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3px; }

.heading-section .top-heading img {
  margin-right: 4px;
  max-width: 24px; }

.heading-section .top-heading p {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: #646464; }

.heading-section .bottom-heading p {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  color: #273f7c;
  position: relative;
  line-height: 1; }

@media (max-width: 767px) {
  .heading-section .bottom-heading p {
    font-size: 18px; } }

@media (max-width: 767px) {
	#publid
	{
		padding-bottom:20px;
	}
}

.heading-section .bottom-heading p::after {
  content: '';
  position: absolute;
  background-color: #9a9a9a;
  height: 1px;
  width: 100%;
  bottom: 0px; }

.selector {
  position: absolute;
  bottom: -14px;
  left: 0;
  z-index: 1;
  transition: .3s ease-in-out;
  width: 0;
  height: 0;
  border-width: 15px 15px 0 15px;
  border-color: #273f7c transparent transparent transparent;
  border-style: solid; }

.team-two-tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative; }

.team-two-tabs a {
  display: inline-block;
  width: 400px;
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.57;
  text-align: right;
  color: #273f7c;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0px 30px;
  box-shadow: -12px 13px 19px rgba(0, 0, 0, 0.15);
  line-height: 1.07;
  /*background: linear-gradient(269.72deg, #D9D9D9 2.83%, #FFFFFF 70.07%);*/
  text-align: left; }

@media (max-width: 1199px) {
  .team-two-tabs a {
    width: 300px;
    height: 136px;
    padding-right: 30px;
    font-size: 25px; } }

@media (max-width: 992px) {
  .team-two-tabs a {
    width: 220px;
    height: 76px;
    padding-right: 10px;
    font-size: 20px; } }

@media (max-width: 767px) {
  .team-two-tabs a {
    width: 33%;
    height: 49px;
    padding-right: 0px;
    font-size: 13px;
    text-align: center;
    padding-left: 0px;
    -ms-flex-pack: center;
    justify-content: center;
    text-shadow: 1px 0px white; } }

.team-two-tabs a img {
  margin-right: 24px; }

.team-two-tabs a.active {
  border: 2px solid #273F7C; }

.team-two-tabs a:focus {
  text-decoration: none; }

/* .team-two-tabs a.tab-1 {
      background-image: url(../images/p1.jpg); } */
@media (min-width: 1200px) {
  .team-two-tabs a.tab-1 {
    background-position: 0px -30px; } }

/* .team-two-tabs a.tab-2 {
      background-image: url(../images/p2.jpg); } */
@media (min-width: 1200px) {
  .team-two-tabs a.tab-2 {
    background-position: 0px -30px; } }

/* .team-two-tabs a.tab-3 {
      background-image: url(../images/p3.jpg); } */
#owl-demo3 .item,
#owl-demo4 .item,
#owl-demo5 .item,
#owl-demo6 .item,
#owl-demo14 .item,
#owl-demo7 .item,
#owl-demo8 .item,
#owl-demo9 .item,
#owl-demo10 .item,
#owl-demo11 .item {
  margin: 10px; }

#owl-demo3 .item img,
#owl-demo4 .item img,
#owl-demo5 .item img,
#owl-demo14 .item img,
#owl-demo6 .item img,
#owl-demo7 .item img,
#owl-demo8 .item img,
#owl-demo9 .item img,
#owl-demo10 .item img,
#owl-demo11 .item img {
  display: block;
  width: 100%;
  height: auto; }

#owl-demo3,
#owl-demo4,
#owl-demo5,
#owl-demo6,
#owl-demo7,
#owl-demo14,
#owl-demo8,
#owl-demo9,
#owl-demo10,
#owl-demo11 {
  margin-top: 50px; }

@media (max-width: 767px) {
  #owl-demo3,
  #owl-demo4,
  #owl-demo5,
  #owl-demo6,
  #owl-demo7,
  #owl-demo14,
  #owl-demo8,
  #owl-demo9,
  #owl-demo10,
  #owl-demo11 {
    margin-top: 5px; } }

#owl-demo3 .owl-pagination,
#owl-demo4 .owl-pagination,
#owl-demo5 .owl-pagination,
#owl-demo6 .owl-pagination,
#owl-demo7 .owl-pagination,
#owl-demo8 .owl-pagination,
#owl-demo9 .owl-pagination,
#owl-demo10 .owl-pagination,
#owl-demo11 .owl-pagination {
  display: none; }

#owl-demo3 .owl-buttons,
#owl-demo4 .owl-buttons,
#owl-demo14 .owl-buttons,
#owl-demo5 .owl-buttons,
#owl-demo6 .owl-buttons,
#owl-demo7 .owl-buttons,
#owl-demo8 .owl-buttons,
#owl-demo9 .owl-buttons,
#owl-demo10 .owl-buttons,
#owl-demo11 .owl-buttons {
  position: absolute;
  top: 150px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -ms-flex-align: center;
  align-items: center; }

#owl-demo3 .owl-buttons .owl-prev,
#owl-demo4 .owl-buttons .owl-prev,
#owl-demo14 .owl-buttons .owl-prev,
#owl-demo5 .owl-buttons .owl-prev,
#owl-demo6 .owl-buttons .owl-prev,
#owl-demo7 .owl-buttons .owl-prev,
#owl-demo8 .owl-buttons .owl-prev,
#owl-demo9 .owl-buttons .owl-prev,
#owl-demo10 .owl-buttons .owl-prev,
#owl-demo11 .owl-buttons .owl-prev {
  left: -36px;
  position: absolute;
  opacity: 1; }

#owl-demo3 .owl-buttons .owl-prev img,
#owl-demo4 .owl-buttons .owl-prev img,
#owl-demo14 .owl-buttons .owl-prev img,
#owl-demo5 .owl-buttons .owl-prev img,
#owl-demo6 .owl-buttons .owl-prev img,
#owl-demo7 .owl-buttons .owl-prev img,
#owl-demo8 .owl-buttons .owl-prev img,
#owl-demo9 .owl-buttons .owl-prev img,
#owl-demo10 .owl-buttons .owl-prev img,
#owl-demo11 .owl-buttons .owl-prev img {
  width: 53px; }

@media (max-width: 767px) {
  #owl-demo3 .owl-buttons .owl-prev,
  #owl-demo4 .owl-buttons .owl-prev,
  #owl-demo14 .owl-buttons .owl-prev,
  #owl-demo5 .owl-buttons .owl-prev,
  #owl-demo6 .owl-buttons .owl-prev,
  #owl-demo7 .owl-buttons .owl-prev,
  #owl-demo8 .owl-buttons .owl-prev,
  #owl-demo9 .owl-buttons .owl-prev,
  #owl-demo10 .owl-buttons .owl-prev,
  #owl-demo11 .owl-buttons .owl-prev {
    left: 0px;
    padding: 0px; }
  #owl-demo3 .owl-buttons .owl-prev img,
  #owl-demo14 .owl-buttons .owl-prev img,
  #owl-demo4 .owl-buttons .owl-prev img,
  #owl-demo5 .owl-buttons .owl-prev img,
  #owl-demo6 .owl-buttons .owl-prev img,
  #owl-demo7 .owl-buttons .owl-prev img,
  #owl-demo8 .owl-buttons .owl-prev img,
  #owl-demo9 .owl-buttons .owl-prev img,
  #owl-demo10 .owl-buttons .owl-prev img,
  #owl-demo11 .owl-buttons .owl-prev img {
    width: 25px; } }

#owl-demo3 .owl-buttons .owl-next,
#owl-demo4 .owl-buttons .owl-next,
#owl-demo14 .owl-buttons .owl-next,
#owl-demo5 .owl-buttons .owl-next,
#owl-demo6 .owl-buttons .owl-next,
#owl-demo7 .owl-buttons .owl-next,
#owl-demo8 .owl-buttons .owl-next,
#owl-demo9 .owl-buttons .owl-next,
#owl-demo10 .owl-buttons .owl-next,
#owl-demo11 .owl-buttons .owl-next {
  right: -36px;
  position: absolute;
  opacity: 1; }

#owl-demo3 .owl-buttons .owl-next img,
#owl-demo4 .owl-buttons .owl-next img,
#owl-demo14 .owl-buttons .owl-next img,
#owl-demo5 .owl-buttons .owl-next img,
#owl-demo6 .owl-buttons .owl-next img,
#owl-demo7 .owl-buttons .owl-next img,
#owl-demo8 .owl-buttons .owl-next img,
#owl-demo9 .owl-buttons .owl-next img,
#owl-demo10 .owl-buttons .owl-next img,
#owl-demo11 .owl-buttons .owl-next img {
  width: 53px; }

@media (max-width: 767px) {
  #owl-demo3 .owl-buttons .owl-next,
  #owl-demo4 .owl-buttons .owl-next,
  #owl-demo14 .owl-buttons .owl-next,
  #owl-demo5 .owl-buttons .owl-next,
  #owl-demo6 .owl-buttons .owl-next,
  #owl-demo7 .owl-buttons .owl-next,
  #owl-demo8 .owl-buttons .owl-next,
  #owl-demo9 .owl-buttons .owl-next,
  #owl-demo10 .owl-buttons .owl-next,
  #owl-demo11 .owl-buttons .owl-next {
    right: 0px;
    padding: 0px; }
  #owl-demo3 .owl-buttons .owl-next img,
  #owl-demo4 .owl-buttons .owl-next img,
  #owl-demo14 .owl-buttons .owl-next img,
  #owl-demo5 .owl-buttons .owl-next img,
  #owl-demo6 .owl-buttons .owl-next img,
  #owl-demo7 .owl-buttons .owl-next img,
  #owl-demo8 .owl-buttons .owl-next img,
  #owl-demo9 .owl-buttons .owl-next img,
  #owl-demo10 .owl-buttons .owl-next img,
  #owl-demo11 .owl-buttons .owl-next img {
    width: 25px; } }

.tab-slider {
  position: relative;
  padding: 12px 10px; }

.tab-slider:hover .read-more {
  display: block;
  opacity: 1;
  transition: 1s; }

.tab-slider:hover .hover-img-effect img {
  position: relative;
  transform: scale(1.1);
  transition: 2s; }

.tab-slider .hover-img-effect {
  position: relative;
  overflow: hidden; }

.tab-slider .hover-img-effect img {
  transition: 2s; }

.tab-slider .read-more {
  text-align: center;
  opacity: 0;
  transition: 1s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9;
  display: none; }

.tab-slider .read-more a {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-weight: 600;
  font-size: 20px;
  color: #273F7C;
  display: inline-block;
  padding: 14px 48px;
  margin-top: 105px; }

.tab-slider .cat-time {
  color: #484848;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 8px 0px;
  font-size: 12px; }

.tab-slider .tab-text {
  font-size: 17.7px;
  font-weight: bold;
  line-height: 1.57;
  text-align: left;
  color: #273f7c; }

.read-topic {
  padding: 24px 0px 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #1d1d1d; }

@media (max-width: 767px) {
  .read-topic .container {
    width: 100%; } }

.read-container {
  background-color: #1d1d1d;
  padding-bottom: 55px; }

.topic-tabs {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 34px; }

@media (max-width: 767px) {
  .topic-tabs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; } }

.topic-tabs a {
  padding: 15.5px 53.8px 16.5px 55.2px;
  border-radius: 3.7px;
  box-shadow: 0 2.9px 7.4px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: #2c2c2c;
  margin-right: 24px; }

@media (max-width: 1199px) {
  .topic-tabs a {
    font-size: 16px;
    padding: 14px 40px; } }

@media (max-width: 992px) {
  .topic-tabs a {
    font-size: 15px;
    padding: 14px 20px; } }

@media (max-width: 767px) {
  .topic-tabs a {
    font-size: 12px;
    padding: 8px;
    margin-right: 8px;
    margin-bottom: 10px; } }

.topic-tabs a:nth-last-child(1) {
  margin: 0px; }

.topic-tabs a.active {
  background-color: #273f7c;
  color: #fff; }

.topic-tabs a:focus {
  text-decoration: none; }

.inner-artical-boxs.inner-artical-boxs-8 {
  -ms-flex-pack: start;
  justify-content: flex-start; }

@media (max-width: 767px) {
  .inner-artical-boxs.inner-artical-boxs-8 .item {
    max-width: 100%; } }

.inner-artical-boxs.inner-artical-boxs-8 .topic-slider {
  /* background-color: #d9e4ff; */
  /* border: 1px solid #bbcfff; */ }

.inner-artical-boxs.inner-artical-boxs-8 .topic-slider img {
  transition: 1s; }

.inner-artical-boxs.inner-artical-boxs-8 .topic-slider:hover {
  transition: 1s;
  box-shadow: 1px 1px 4px 1px #ccc;
  background-color: #fff; }

.inner-artical-boxs.inner-artical-boxs-8 .topic-slider:hover a {
  transition: 1s; }

.inner-artical-boxs.inner-artical-boxs-8 .topic-slider:hover a img {
  transition: 1s;
  transform: scale(1.01); }

.inner-artical-boxs.inner-artical-boxs-8 .topic-slider .writen-by p {
  margin-bottom: 8px; }

.inner-artical-boxs.inner-artical-boxs-8 .topic-slider .writen-by p strong {
  padding-left: 0px; }

.inner-artical-boxs.inner-artical-boxs-8 .topic-slider .cat-time {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.topic-slider {
  color: #484848;
  background-color: #fff;
  padding: 16px 10px;
  position: relative;
  transition: 1s; }

.topic-slider .tab-text {
  color: #273f7c; }

.topic-slider:hover {
  transition: 1s;
  background-color: #fff; }

.topic-slider:hover .tab-text {
  color: #444655; }

.topic-slider .writen-by p {
  font-weight: 400;
  font-size: 12px; }

.topic-slider .writen-by p strong {
  font-weight: 600;
  font-size: 14px;
  padding-left: 10px; }

.topic-slider .date-time {
  font-weight: 400;
  font-size: 12px;
  padding: 7px 0px; }

.topic-slider .cat-time {
  font-weight: 500;
  font-size: 12px;
  margin: 8px 0px; }

.topic-slider .tab-text {
  font-weight: 700;
  font-size: 18px;
  color: #444655;
  min-height: 66px; }

.topic-slider .read-now-time {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px; }

.topic-slider .read-now-time span {
  font-weight: 500;
  font-size: 12px; }

.topic-slider .read-now-time a {
  border: 1px solid #9A9A9A;
  border-radius: 3.09668px 0px 0px 3.09668px;
  font-weight: 600;
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #2C2C2C;
  padding: 8px 36px;
  margin-right: -10px;
  transition: 1s; }

.topic-slider .read-now-time a:hover {
  color: #fff;
  border: 1px solid #273f7c;
  background-color: #273f7c;
  transition: 1s; }

.topic-slider .read-now-time a:hover img {
  display: none !important;
  transition: 1s; }

.topic-slider .read-now-time a:hover img.white-arrow {
  display: inline-block !important;
  transition: 1s; }

.topic-slider .read-now-time a img {
  display: inline-block;
  margin-left: 8px;
  width: auto !important;
  transition: 1s; }

.topic-slider .read-now-time a img.white-arrow {
  display: none !important;
  transition: 1s; }

a:focus {
  text-decoration: none; }

.our-expert {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 84px 0px 50px; }

@media (max-width: 767px) {
  .our-expert {
    padding: 24px 0px 24px; } }

.our-expert.our-expert-dark {
  background-color: #e9e9e9; }

.our-expert.our-expert-dark .expert-container {
  box-shadow: 0 0 2.9px 0 rgba(0, 0, 0, 0.25);
  background-color: #444655; }

.our-expert.our-expert-dark .expert-container .stage {
  display: none; }

.our-expert.our-expert-dark .expert-container .stage .dot-1 {
  background-color: #fff; }

.our-expert.our-expert-dark .expert-container .stage .dot-2 {
  background-color: #9a9a9a; }

.our-expert.our-expert-dark .expert-container .stage .dot-3 {
  background-color: #fff; }

.our-expert.our-expert-dark .expert-container .expert-profile a {
  color: #fff; }

.our-expert.our-expert-dark .expert-container .expert-text .expert-name-box {
  -webkit-backdrop-filter: blur(8.8px);
  backdrop-filter: blur(8.8px);
  box-shadow: -7.4px 7.4px 1.5px 0 rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(to bottom, #f1f1f1 0%, rgba(241, 241, 241, 0.63) 100%); }

.our-expert.our-expert-dark .expert-container .expert-text .expert-name .expert-role {
  color: #fff; }

.our-expert.our-expert-dark .expert-container .expert-line {
  color: #fff; }

.expert-container {
  display: -ms-flexbox;
  display: flex;
  border-radius: 7.4px;
  box-shadow: 0 0 2.9px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
  padding: 14px 18px 18px 36px; }

@media (max-width: 767px) {
  .expert-container {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px; } }

.expert-container .expert-profile {
  position: relative;
  margin-top: 58px; }

@media (max-width: 767px) {
  .expert-container .expert-profile {
    margin-top: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center; } }

.expert-container .expert-profile .logo-icon {
  position: absolute;
  max-width: 54px;
  left: -20px;
  top: -20px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(8.8px);
  backdrop-filter: blur(8.8px);
  box-shadow: -7.4px 7.4px 1.5px 0 rgba(0, 0, 0, 0.15);
  opacity: 0; }

@media (max-width: 767px) {
  .expert-container .expert-profile .logo-icon {
    max-width: 34px;
    left: 10px;
    top: -20px; } }

.expert-container .expert-profile .logo-icon + img {
  max-width: 190px; }

@media (max-width: 767px) {
  .expert-container .expert-profile .logo-icon + img {
    max-width: 130px; } }

.expert-container .expert-profile a {
  margin-top: 12px;
  display: block;
  padding: 11px 30px;
  border-radius: 3.7px;
  border: solid 1px #9a9a9a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.87;
  color: #444655;
  text-align: center; }

.expert-container .expert-text {
  padding-left: 24px; }

@media (max-width: 767px) {
  .expert-container .expert-text {
    padding-left: 0px; } }

.expert-container .expert-text .expert-name {
  margin-bottom: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 40px;
  margin-left: -80px;
  z-index: 99;
  position: relative; }

@media (max-width: 767px) {
  .expert-container .expert-text .expert-name {
    margin-left: 0;
    margin-top: 20px;
    -ms-flex-align: center;
    align-items: center; } }

.expert-container .expert-text .expert-name .expert-name-box {
  padding: 16px 24px;
  min-width: 328px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(8.8px);
  backdrop-filter: blur(8.8px);
  box-shadow: -7.4px 7.4px 1.5px 0 rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(to bottom, #f1f1f1 0%, rgba(241, 241, 241, 0) 100%);
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #273f7c;
  margin-bottom: 8px; }

@media (max-width: 767px) {
  .expert-container .expert-text .expert-name .expert-name-box {
    padding: 16px;
    min-width: 100%;
    font-size: 18px; } }

.expert-container .expert-text .expert-name .expert-role {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.87;
  letter-spacing: normal;
  text-align: center;
  color: #484848;
  margin-left: 63px; }

@media (max-width: 767px) {
  .expert-container .expert-text .expert-name .expert-role {
    margin: 0px auto; } }

.expert-container .expert-text .expert-line {
  font-size: 17px;
  font-weight: normal;
  line-height: 1.87;
  text-align: left;
  color: #484848; }

.stage {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  left: 530px;
  display: none; }

@media (max-width: 767px) {
  .stage {
    display: none; } }

.stage .dot-1 {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: #9a9a9a;
  animation: dotone 1.5s alternate infinite ease; }

.stage .dot-2 {
  width: 70px;
  height: 70px;
  border-radius: 19px;
  background-color: #273f7c;
  margin: 0px 6px 0px 8px;
  animation: dottwo 1.5s alternate infinite ease-in; }

.stage .dot-3 {
  width: 20px;
  height: 20px;
  margin-top: 30px;
  border-radius: 6px;
  background-color: #9a9a9a;
  animation: dotthree 1.5s alternate infinite ease-in; }

@keyframes dotone {
  0% {
    transform: scale(0.9);
    margin-top: 0px; }
  50% {
    transform: scale(1.3);
    margin-top: 0px; }
  100% {
    transform: scale(0.9);
    margin-top: 20px; } }

@keyframes dottwo {
  0% {
    transform: scale(0.8); }
  50% {
    transform: scale(0.8); }
  75% {
    transform: scale(1); }
  100% {
    transform: scale(1);
    margin-top: 20px; } }

@keyframes dotthree {
  0% {
    transform: scale(0.9);
    margin-top: 30px; }
  50% {
    transform: scale(1.3);
    margin-top: 30px; }
  100% {
    transform: scale(0.9);
    margin-top: 40px; } }

.guest-writers {
  padding: 50px 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between; }

@media (max-width: 992px) {
  .guest-writers {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; } }

.guest-writers .guest-header {
  min-width: 192px;
  padding-bottom: 18px;
  max-width: 192px;
  margin-right: 16px; }

@media (max-width: 992px) {
  .guest-writers .guest-header {
    min-width: 100%;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
    margin-bottom: 20px; } }

.guest-writers .guest-header h3 {
  font-size: 23.5px;
  font-weight: 500;
  text-align: left;
  color: #646464; }

@media (max-width: 767px) {
  .guest-writers .guest-header h3 {
    font-size: 14px; } }

.guest-writers .guest-header h4 {
  font-size: 29.4px;
  font-weight: bold;
  text-align: left;
  color: #273f7c;
  padding-right: 60px;
  border-bottom: 1px solid #9a9a9a;
  padding-bottom: 16px;
  margin-bottom: 16px; }

@media (max-width: 992px) {
  .guest-writers .guest-header h4 {
    max-width: 100%; } }

@media (max-width: 767px) {
  .guest-writers .guest-header h4 {
    font-size: 18px; } }

.guest-writers .guest-box {
  border-radius: 3.7px;
  box-shadow: 0 0 19.1px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding: 20px;
  max-width: 320px;
  text-align: center; }

@media (max-width: 1199px) {
  .guest-writers .guest-box {
    padding: 15px;
    max-width: 230px; } }

@media (max-width: 767px) {
  .guest-writers .guest-box {
    max-width: 100%;
    margin-bottom: 16px; } }

.guest-writers .guest-box .guest-img {
  position: relative; }

@media (max-width: 1199px) {
  .guest-writers .guest-box .guest-img .guest-pic {
    max-width: 100%; } }

.guest-writers .guest-box .guest-img .guest-logo {
  position: absolute;
  border-radius: 3.7px;
  border-radius: 7.4px;
  -webkit-backdrop-filter: blur(8.8px);
  backdrop-filter: blur(8.8px);
  box-shadow: -7.4px 7.4px 1.5px 0 rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.9);
  background-color: #fff;
  left: -10px;
  top: -15px;
  max-width: 54px;
  display: none; }

.guest-writers .guest-box .writer-name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  color: #273f7c;
  margin-bottom: 4px;
  min-height: 35px; }

.guest-writers .guest-box .writer-role {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.87;
  color: #484848;
  min-height: 68px; }

.guest-writers .guest-box .writer-text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #484848; }

.guest-writers .guest-box .view-articles {
  font-weight: 600;
  line-height: 1.87;
  color: #2c2c2c;
  border-radius: 3.7px;
  border: solid 0.7px #9a9a9a;
  padding: 11px;
  display: block;
  width: 100%;
  margin-top: 10px;
  transition: 1s; }

.guest-writers .guest-box .view-articles:hover {
  box-shadow: -4px 4px 7px rgba(0, 0, 0, 0.25);
  transition: 1s;
  border: solid 0.7px transparent; }

.who-we-are {
  padding: 48px 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover; }

.who-tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  max-width: 320px; }

@media (max-width: 767px) {
  .who-tabs {
    overflow: hidden; } }

.who-tabs a {
  min-width: 215px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  color: #484848;
  margin-right: 16px;
  background-color: #dddddd85;
  color: #444655;
  transition: 2s; }

@media (max-width: 767px) {
  .who-tabs a {
    min-width: 140px; } }

.who-tabs a.active {
  color: #484848;
  background-color: transparent;
  border: 1px solid #484848;
  border-bottom: 0px; }

.who-tabs a.active::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #484848;
  position: absolute;
  bottom: 0px;
  left: 215px;
  transition: 2s; }

@media (max-width: 767px) {
  .who-tabs a.active::after {
    left: 296px; } }

.who-tabs a:nth-last-child(1)::after {
  width: 0px;
  left: 0px; }

.who-tabs a:nth-last-child(1)::before {
  content: '';
  width: 16px;
  height: 1px;
  background-color: #484848;
  position: absolute;
  bottom: 0px;
  left: 215px;
  transition: 2s; }

@media (max-width: 767px) {
  .who-tabs a:nth-last-child(1)::before {
    left: 140px; } }

.who-tabs a:nth-last-child(1).active::after {
  content: '';
  width: 90px;
  height: 1px;
  background-color: #484848;
  position: absolute;
  bottom: 0px;
  left: 445px;
  transition: 2s; }

@media (max-width: 767px) {
  .who-tabs a:nth-last-child(1).active::after {
    left: 296px; } }

.who-tabs a:focus {
  text-decoration: none; }

.who-tabs a span {
  font-size: 14.7px;
  font-weight: bold;
  color: #484848; }

.expert-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }

.expert-social li {
  display: inline-block;
  margin: 0px 10px !important; }

.expert-social li a {
  border: none !important;
  padding: 0px !important; }

.expert-social li a img {
  width: auto !important;
  height: auto !important; }

.who-tab-data img {
  max-width: 100%; }

.who-tab-data .who-tab-data-content {
  display: -ms-flexbox;
  display: flex; }

@media (max-width: 992px) {
  .who-tab-data .who-tab-data-content {
    -ms-flex-direction: column;
    flex-direction: column; } }

.who-tab-data .who-tab-data-content .tab-data-left {
  width: 50%; }

@media (max-width: 1200px) {
  .who-tab-data .who-tab-data-content .tab-data-left {
    width: 90%; } }

@media (max-width: 992px) {
  .who-tab-data .who-tab-data-content .tab-data-left {
    width: 100%; } }

.who-tab-data .who-tab-data-content .tab-data-left h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  color: #273f7c;
  margin: 50px 0px 20px; }

@media (max-width: 992px) {
  .who-tab-data .who-tab-data-content .tab-data-left h2 {
    font-size: 18px; } }

.who-tab-data .who-tab-data-content .tab-data-left p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.87;
  text-align: left;
  color: #484848;
  margin-bottom: 16px; }

.who-tab-data .who-tab-data-content .tab-data-left p + p {
  margin-bottom: 0px; }

.who-tab-data .who-tab-data-content .tab-data-left .view-more {
  display: inline-block;
  margin-top: 75px;
  padding: 16px 12px;
  min-width: 240px;
  border-radius: 4px;
  border: solid 1px #484848;
  color: #484848;
  text-align: center;
  font-weight: 600;
  transition: 1s; }

@media (max-width: 992px) {
  .who-tab-data .who-tab-data-content .tab-data-left .view-more {
    margin-top: 50px; } }

.who-tab-data .who-tab-data-content .tab-data-left .view-more:hover {
  box-shadow: -4px 4px 7px rgba(0, 0, 0, 0.25);
  transition: 1s;
  background-color: #fff;
  color: #273f7c; }

.who-tab-data .who-tab-data-content .tab-data-right {
  margin-left: 70px;
  position: relative;
  margin-top: -38px; }

.who-tab-data .who-tab-data-content .tab-data-right img {
  cursor: pointer; }

@media (max-width: 992px) {
  .who-tab-data .who-tab-data-content .tab-data-right {
    margin-top: 20px;
    margin-left: 0px;
    text-align: center; } }

.read-writers {
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: #484848;
  margin-bottom: 30px; }

.read-writers img {
  margin-left: 5px; }

.newsletter {
  background-image: url(../images/Newsletter.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 37px 40px;
  margin: 45px 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }

@media (max-width: 992px) {
  .newsletter {
    -ms-flex-direction: column;
    flex-direction: column; } }

@media (max-width: 767px) {
  .newsletter {
    padding: 24px 24px;
    margin: 24px 0px;
    background-position: -620px; } }

.newsletter .newsletter-left p {
  font-size: 17.7px;
  font-weight: 500;
  line-height: 1.87;
  text-align: left;
  color: #fff; }

.newsletter .newsletter-left h4 {
  font-size: 29.4px;
  font-weight: bold;
  line-height: 1.87;
  text-align: left;
  color: #fff; }

@media (max-width: 767px) {
  .newsletter .newsletter-left h4 {
    font-size: 24px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px #000; } }

.newsletter-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

@media (max-width: 992px) {
  .newsletter-right {
    margin-top: 20px; } }

@media (max-width: 767px) {
  .newsletter-right {
    -ms-flex-direction: column;
    flex-direction: column; } }

.newsletter-right input[type='email'] {
  padding: 16px;
  min-width: 300px;
  border-radius: 4px;
  border: solid 1px #444655;
  background-color: #fff;
  font-size: 14px; }

@media (max-width: 767px) {
  .newsletter-right input[type='email'] {
    width: 100%;
    min-width: 100%; } }

.newsletter-right input[type='submit'] {
  padding: 10px 16px;
  border-radius: 5px;
  background-color: #273f7c;
  min-width: 156px;
  color: #fff;
  outline: none;
  margin-left: 15px;
  max-height: 50px;
  min-height: 50px;
  transition: 1s;
  border: none; }

@media (max-width: 767px) {
  .newsletter-right input[type='submit'] {
    width: 100%;
    margin-top: 10px;
    margin-left: 0px; } }

.newsletter-right input[type='submit']:hover {
  font-size: 18px;
  transition: 1s; }

body {
  overflow-x: hidden; }

.newsletter.events-data {
  margin-bottom: 0px;
  background-image: url(../images/events.jpg);
  border-radius: 8px; }

.events-btn {
  padding: 10px 16px;
  border-radius: 5px;
  background-color: #273f7c;
  min-width: 156px;
  color: #fff;
  outline: none;
  margin-left: 15px;
  max-height: 50px;
  min-height: 50px;
  transition: 1s;
  border: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }

@media (max-width: 767px) {
  .events-btn {
    width: 100%;
    margin-top: 10px;
    margin-left: 0px; } }

.events-btn:hover {
  font-size: 18px;
  color: #fff;
  transition: 1s; }

.g-banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 32px; }

.g-banner img {
  max-width: 100%; }

.g-banner h3 {
  position: absolute;
  color: #fff;
  text-transform: uppercase;
  font-size: 32px;
  text-shadow: 1px 1px 2px #000; }

@media (max-width: 767px) {
  .g-banner h3 {
    font-size: 16px;
    padding: 26px;
    text-align: center; }
  .g-banner img {
    min-height: 70px; } }

footer {
  background-image: url(../images/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

footer .footer-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #9a9a9a; }

@media (max-width: 992px) {
  footer .footer-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 25px; } }

@media (max-width: 767px) {
  footer .footer-inner {
    -ms-flex-direction: column;
    flex-direction: column; } }

@media (max-width: 992px) {
  footer .footer-inner .footer-left {
    width: 50%; } }

@media (max-width: 767px) {
  footer .footer-inner .footer-left {
    width: 100%; } }

footer .footer-inner .footer-left img {
  background-color: #fff;
  border-radius: 5px;
  max-width: 350px; }

footer .footer-inner .footer-left p {
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.87;
  color: #fff; }

footer .footer-inner .footer-mid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 50px 0px;
  margin: 0px 40px;
  border-left: solid 1px #9a9a9a;
  border-right: solid 1px #9a9a9a; }

@media (max-width: 1199px) {
  footer .footer-inner .footer-mid {
    padding: 0px 20px 0px;
    margin: 0px 20px; } }

@media (max-width: 992px) {
  footer .footer-inner .footer-mid {
    padding: 0px 0px 0px;
    margin: 0px 0px;
    border-right: 0px;
    width: 40%; } }

@media (max-width: 767px) {
  footer .footer-inner .footer-mid {
    width: 100%;
    border: none;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px #9a9a9a;
    border-bottom: solid 1px #9a9a9a; } }

footer .footer-inner .footer-mid ul {
  min-width: 162px; }

footer .footer-inner .footer-mid ul li {
  display: block;
  margin-bottom: 13px; }

footer .footer-inner .footer-mid ul li a {
  font-size: 14px;
  font-weight: normal;
  color: #fff; }

footer .footer-inner .footer-mid ul li a:hover {
  text-decoration: underline; }

@media (max-width: 992px) {
  footer .footer-inner .footer-right {
    width: 100%; } }

footer .footer-inner .footer-right h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.87;
  color: #fff;
  margin-bottom: 20px; }

@media (max-width: 992px) {
  footer .footer-inner .footer-right h2 {
    font-size: 18px; } }

footer .footer-inner .footer-right .newsletter-right input[type='email'] {
  border: solid 1px #fff;
  background-color: transparent; }

footer .footer-inner .footer-right .newsletter-right input[type='submit'] {
  background-color: transparent;
  border: solid 1px #fff; }

footer .footer-inner .social-info {
  margin-top: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between; }

@media (max-width: 767px) {
  footer .footer-inner .social-info {
    -ms-flex-direction: column;
    flex-direction: column; } }

@media (max-width: 992px) {
  footer .footer-inner .social-info .footer-social-media {
    -ms-flex: 1;
    flex: 1; } }

footer .footer-inner .social-info .footer-social-media h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.87;
  text-align: left;
  color: #fff;
  margin-bottom: 8px; }

footer .footer-inner .social-info .footer-social-media ul {
  display: -ms-flexbox;
  display: flex; }

footer .footer-inner .social-info .footer-social-media ul li {
  display: inline-block;
  margin-right: 20px; }

footer .footer-inner .social-info .footer-social-media ul li:nth-last-child(1) {
  margin: 0px; }

footer .footer-inner .social-info .email-info {
  border-left: 1px solid #9a9a9a;
  padding-left: 80px; }

@media (max-width: 992px) {
  footer .footer-inner .social-info .email-info {
    -ms-flex: 1;
    flex: 1; } }

@media (max-width: 767px) {
  footer .footer-inner .social-info .email-info {
    padding: 0px;
    border: none;
    margin-top: 24px; } }

footer .footer-inner .social-info .email-info h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.87;
  text-align: left;
  color: #fff;
  margin-bottom: 8px; }

footer .footer-inner .social-info .email-info a {
  color: #fff;
  font-size: 14px;
  font-weight: 500; }

footer .footer-two p {
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  color: #9a9a9a;
  padding: 16px 0px; }

.no-scroll {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.685);
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none; }

.side-panel {
  position: fixed;
  left: -400px;
  width: 400px;
  background-color: #fff;
  top: 0;
  height: 100%;
  overflow-y: auto;
  transition: 1s;
  z-index: 9999;
  opacity: 0; }

@media (max-width: 767px) {
  .side-panel {
    width: 100%; } }

.side-panel.active {
  display: block;
  transition: 1s;
  left: 0;
  opacity: 1; }

.side-panel .close-icon {
  max-width: 30px;
  margin: 10px;
  cursor: pointer; }

.side-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.side-menu li {
  display: block;
  border-bottom: 1px solid #9a9a9a;
  position: relative; }

.side-menu li.menu-space {
  min-height: 113.8px; }

@media (max-width: 992px) {
  .side-menu li.menu-space {
    min-height: 0px; } }

.side-menu li.top-side {
  padding: 32px 16px; }

.side-menu li.top-side .close-icon {
  margin: 0px;
  margin-right: 40px;
  padding: 0px; }

.side-menu li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  min-width: 100%;
  padding: 16px;
  color: #2c2c2c;
  font-weight: 500;
  min-height: 55px;
  transition: 1s;
  position: relative; }

.side-menu li a:hover {
  background-color: #273F7C;
  color: #fff;
  transition: 1s; }

.side-menu li a span {
  position: relative; }

.side-menu li.side-dropdown {
  position: relative; }

.side-menu li.side-dropdown:hover .side-dropdown-menu.side-multi-level {
  left: 400px;
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0px;
  width: 400px;
  height: 100%;
  border-left: 8px solid rgba(0, 0, 0, 0.685); }

@media (max-width: 992px) {
  .side-menu li.side-dropdown:hover .side-dropdown-menu.side-multi-level {
    position: relative;
    left: 0px; } }

@media (max-width: 767px) {
  .side-menu li.side-dropdown:hover .side-dropdown-menu.side-multi-level {
    width: 100%; } }

.side-menu li.side-dropdown .side-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 260px;
  padding: 0px 0;
  margin: 0px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff; }

@media (max-width: 992px) {
  .side-menu li.side-dropdown .side-dropdown-menu {
    position: relative;
    left: 0; } }

.side-menu li.side-dropdown .side-dropdown-menu.side-multi-level .side-dropdown-submenu:hover .side-dropdown-menu {
  left: 800px;
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0px;
  width: 400px;
  height: 100%;
  border-left: 8px solid rgba(0, 0, 0, 0.685); }

@media (max-width: 992px) {
  .side-menu li.side-dropdown .side-dropdown-menu.side-multi-level .side-dropdown-submenu:hover .side-dropdown-menu {
    position: relative;
    left: 0; } }

@media (max-width: 767px) {
  .side-menu li.side-dropdown .side-dropdown-menu.side-multi-level .side-dropdown-submenu:hover .side-dropdown-menu {
    width: 100%; } }

.site-map {
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #a3a3a3;
  padding: 15px 0px;
  margin-bottom: 30px; }

.site-map li {
  display: inline-block;
  font-size: 15px;
  color: #595959;
  margin: 0px 3px; }

.site-map li a {
  color: #595959; }

.about-us-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 55px; }

@media (max-width: 767px) {
  .about-us-section {
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 30px; } }

.about-us-img {
  -ms-flex: 1;
  flex: 1;
  padding-right: 23px; }

@media (max-width: 767px) {
  .about-us-img {
    padding-right: 0px; } }

.about-us-img img {
  max-width: 580px; }

@media (max-width: 767px) {
  .about-us-img img {
    margin-bottom: 12px;
    max-width: 100%; } }

.geo-heading h2 {
  margin-bottom: 20px;
  margin-top: 40px;
  color: #273F7C; }

.specialin {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-top: 120px;
  background: #f9f9f9; }

.specialin .welcome-box {
  box-shadow: none !important; }

.specialin .welcome-box:hover {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; }

.mid-heading {
  position: relative;
  margin: 0px auto;
  text-align: center;
  max-width: 610px;
  color: #273F7C;
  font-weight: bold;
  font-size: 32px; }

.mid-heading::after {
  content: '';
  position: absolute;
  right: 0px;
  height: 2px;
  top: 20px;
  background-color: #273F7C;
  width: 130px; }

@media (max-width: 767px) {
  .mid-heading::after {
    width: 40px; } }

.mid-heading::before {
  content: '';
  position: absolute;
  left: 0px;
  height: 2px;
  top: 20px;
  background-color: #273F7C;
  width: 130px; }

@media (max-width: 767px) {
  .mid-heading::before {
    width: 40px; } }

.about-us-text {
  -ms-flex: 1;
  flex: 1;
  padding-left: 23px; }

.about-us-text.about-us-text-2 {
  padding-left: 0px; }

.about-us-text h4 {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  color: #273f7c;
  margin-bottom: 10px; }

@media (max-width: 767px) {
  .about-us-text h4 {
    font-size: 18px; } }

.about-us-text p {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.87;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 16px; }

.about-us-2 {
  padding: 42px 0px;
  background-color: #2c2c2c; }

.about-us-2 .about-us-section {
  padding-bottom: 0px; }

.about-us-2 .about-us-img {
  padding-left: 23px; }

.about-us-2 .about-us-text {
  padding-right: 23px; }

.about-us-2 .about-us-text h4 {
  color: #fff; }

.about-us-2 .about-us-text p {
  color: #fff; }

@media (max-width: 767px) {
  .about-us-section.about-us-section-mid-1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
  .about-us-section.about-us-section-mid-1 .about-us-text {
    -ms-flex-order: 1;
    order: 1; } }

.expert-container.convenors-desk {
  border-radius: 0px;
  box-shadow: none;
  padding: 0px;
  position: relative;
  margin-bottom: 40px;
  border-bottom: 1px solid #a3a3a3; }

.expert-container.convenors-desk .expert-profile {
  padding-right: 23px;
  margin-top: 0px;
  max-width: 210px; }

@media (max-width: 767px) {
  .expert-container.convenors-desk .expert-profile {
    max-width: 320px;
    padding-right: 0px;
    margin: 0px auto; } }

.expert-container.convenors-desk .expert-profile img {
  max-width: 100%;
  width: 180px;
  height: 180px;
  border-radius: 50%; }

.expert-container.convenors-desk .expert-profile a.profile-link {
  margin-top: 0px;
  display: block;
  padding: 0px;
  border-radius: 0px;
  border: 0px;
  font-size: inherit;
  font-weight: 600;
  line-height: 1.87;
  color: #444655;
  text-align: center; }

.expert-container.convenors-desk .expert-profile a.profile-link img {
  width: 190px;
  border-radius: 10px;
  transition: 1s; }

.expert-container.convenors-desk .expert-profile a.profile-link img:hover {
  transition: 1s;
  transform: scale(1.02); }

@media (max-width: 767px) {
  .expert-container.convenors-desk .expert-profile a.profile-link img {
    width: 100%; } }

.expert-container.convenors-desk .stage {
  left: auto;
  right: -100px;
  top: -20px; }

.expert-container.convenors-desk .expert-name {
  margin-bottom: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 12px;
  margin-left: 0;
  z-index: 99;
  position: relative;
  width: 100%; }

.expert-container.convenors-desk .expert-name-box {
  min-width: 100%;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #273f7c;
  margin-bottom: 8px; }

.expert-container.convenors-desk .expert-name-box a {
  margin-top: 0px;
  display: block;
  padding: 0px;
  border-radius: 0px;
  border: 0px;
  font-size: inherit;
  font-weight: 600;
  line-height: 1.87;
  color: #444655;
  text-align: center; }

.expert-container.convenors-desk .expert-role {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.87;
  letter-spacing: normal;
  text-align: center;
  color: #484848;
  margin-left: 0px; }

.inner-heading h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  color: #273f7c;
  margin-bottom: 24px; }

.inner-heading h1 {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  color: #273f7c;
  margin-bottom: 24px; }

@media (max-width: 767px) {
  .inner-heading h2 {
    font-size: 24px; } }

@media (max-width: 767px) {
  .inner-heading h1 {
    font-size: 24px; } }

.artical-box-con {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.artical-box-con .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 100%; }

.artical-box-con .row .tab-slider {
  max-width: 100%; }

.artical-box-con .tab-slider {
  max-width: 23%;
  margin-bottom: 24px; }

@media (max-width: 767px) {
  .artical-box-con .tab-slider {
    max-width: 100%; } }

.artical-box-con .tab-slider img {
  width: 100%; }

.inner-heading h2.m-b-10 {
  margin-bottom: 10px; }

.inner-site {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  min-width: 100%; }

.inner-site li {
  display: inline-block;
  margin: 0px 3px; }

.img-title {
  margin-bottom: 38px;
  font-style: italic;
  text-align: center; }

.details-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }

.details-social ul li {
  display: inline-block;
  margin: 0px 10px; }

.p-l-0 {
  padding-left: 0px !important; }

.p-r-0 {
  padding-right: 0px !important; }

.no-padding {
  padding: 0px !important; }

.about-one-text {
  float: left;
  margin: 0px 46px 20px 0px; }

@media (max-width: 767px) {
  .about-one-text {
    margin: 10px 0px;
    max-width: 100%; } }

.full-img {
  margin-bottom: 8px;
  width: 100%; }

.d-flex {
  display: -ms-flexbox;
  display: flex; }

.details-page p {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.87;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 30px; }

.details-page img {
  max-width: 100%;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto; }

.artical-tag {
  border-radius: 5px;
  border: solid 0.5px #9a9a9a;
  background-color: #fff;
  padding: 30px 16px; }

.artical-tag h4 {
  color: #484848;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 27px; }

.artical-tag ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }

.artical-tag ul li {
  display: inline-block;
  margin: 5px; }

.artical-tag ul li a {
  font-size: 16px;
  line-height: 1.87;
  text-align: left;
  color: #646464;
  padding: 4px 6px;
  border-radius: 5px;
  border: solid 1px #9a9a9a;
  transition: 1s; }

.artical-tag ul li a:hover {
  transition: 1s;
  background-color: #273F7C;
  color: #fff; }

.newsletter.side-newsletter {
  margin-top: 0;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: url(../images/side-bg.jpg);
  margin-bottom: 38px;
  border-radius: 5px;
  border: solid 0.5px #9a9a9a;
  background-color: #fff;
  padding: 30px 16px;
  background-size: 100%;
  background-position: top; }

.newsletter.side-newsletter .newsletter-right {
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 96px; }

.newsletter.side-newsletter .newsletter-right input {
  min-width: 100%;
  max-width: 100%;
  margin-bottom: 14px;
  margin-left: 0px; }

.newsletter.side-newsletter .newsletter-right input[type='submit'] {
  margin-bottom: 0px; }

.newsletter.side-newsletter .newsletter-left p {
  font-size: 16px;
  text-align: center;
  font-weight: 500; }

.newsletter.side-newsletter .newsletter-left h4 {
  line-height: 1;
  font-size: 28px;
  text-align: center; }

.guest-writers.guest-writers-inner {
  padding-top: 0px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.guest-writers.guest-writers-inner .guest-box {
  max-width: 295px;
  margin-bottom: 23px; }

@media (max-width: 767px) {
  .guest-writers.guest-writers-inner .guest-box {
    max-width: 100%;
    min-width: 100%; } }

.guest-writers.guest-writers-inner .guest-box:hover {
  box-shadow: 0 0 19.1px 0 #0000001a; }

.guest-writers.guest-writers-inner .guest-box .view-articles {
  line-height: 1;
  color: #2c2c2c;
  border-radius: 0px;
  border: 0px;
  padding: 0px;
  display: block;
  width: 100%;
  margin-top: 10px;
  transition: 1s;
  text-decoration: underline;
  font-size: 10px; }

.guest-writers.guest-writers-inner .guest-box .view-articles:hover {
  box-shadow: none;
  color: #0c83e7; }

.guest-writers.guest-writers-inner .guest-pic {
  max-width: 100%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #e1e1e1; }

@media (max-width: 767px) {
  .guest-writers.guest-writers-inner .guest-pic {
    width: 70px;
    height: 70px; } }

.guest-writers.guest-writers-inner .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 100%; }

.publications-data {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.publications-data .item {
  max-width: 300px;
  margin-bottom: 24px; }

@media (max-width: 767px) {
  .publications-data .item {
    max-width: 100%;
    min-width: 100%; } }

.inner-artical-boxs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 16px; }

.inner-artical-boxs .item {
  margin: 0px 6px;
  max-width: 300px;
  margin-bottom: 16px; }

.inner-artical-boxs .item img {
  max-width: 100%; }

.writer-profile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px; }

.writer-profile img {
  margin-right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 0px; }

.writer-profile + strong {
  font-size: 20px; }

.writer-profile a strong {
  font-size: 18px; }

.spacer {
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
  height: 1px; }

.media-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 100%; }

.media-links .media-link-box {
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eeeeee;
  padding: 10px;
  border-radius: 10px;
  transition: 1s;
  margin-bottom: 16px; }

.media-links .media-link-box:hover {
  box-shadow: 0 0 10.3px 0 #00000026;
  transition: 0.5s; }

.media-links .media-link-box:hover img {
  transition: 1s;
  opacity: 0.8; }

.media-links .media-link-box img {
  min-width: 140px;
  max-width: 140px;
  transition: 1s;
  border-radius: 8px; }

.media-links .media-link-box h4 {
  margin-left: 16px;
  color: #474747;
  font-size: 18px;
  line-height: 1.5; }

.search {
  width: 280px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

@media (max-width: 767px) {
  .search {
    width: 130px; } }

.searchTerm {
  width: 100%;
  border: 1px solid #3d5389;
  border-right: none;
  padding: 5px 15px;
  height: 36px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
  font-size: 12px !important; }

.searchTerm:-ms-input-placeholder {
  font-size: 12px !important; }

.searchTerm::placeholder {
  font-size: 12px !important; }

.searchTerm:focus {
  color: #3d5389; }

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid #3d5389;
  background: #3d5389;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 12px; }

@media (max-width: 767px) {
  .who-we-are.who-we-section-home {
    padding-top: 0px; } }

@media (max-width: 767px) {
  .who-we-are.who-we-section-home .container {
    width: 100%; } }

.who-we-are.who-we-section-home .heading-section {
  padding-bottom: 30px; }

@media (max-width: 767px) {
  .who-we-are.who-we-section-home .heading-section {
    padding-bottom: 0px; }
  .who-we-are.who-we-section-home .heading-section .bottom-heading p {
    font-size: 30px; } }

@media (max-width: 767px) and (max-width: 767px) {
  .who-we-are.who-we-section-home .heading-section .bottom-heading p {
    font-size: 26px; } }

.who-we-are.who-we-section-home .who-tab-data .who-tab-data-content .tab-data-left h2 {
  font-size: 18px;
  margin: 0px 0px 20px; }

.who-we-are.who-we-section-home .who-tab-data .who-tab-data-content .tab-data-left .view-more {
  margin-top: 15px; }

footer .footer-inner .footer-right .newsletter-right input[type='email'] {
  color: #fff !important; }

.download-book {
  display: inline-block;
  font-size: 12px;
  padding: 10px 24px;
  text-align: center;
  background-color: #ae0000;
  color: #fff;
  border-radius: 40px;
  margin-left: 40px; }

.download-book:hover {
  background-color: #c00202;
  color: #fff; }

.team-two-tabs a span {
  display: inline-block;
  text-align: left; }

@media (max-width: 992px) {
  .team-two-tabs a img {
    margin-right: 16px;
    width: 38px; }
  .team-two-tabs a {
    font-size: 16px; }
  .team-two-tabs a span {
    display: inline-block;
    text-align: left;
    max-width: 100px; } }

@media (max-width: 767px) {
  .team-two-tabs a {
    font-size: 12px; }
  .team-two-tabs a img {
    margin-right: 6px;
    width: 16px; }
  .team-two-tabs a span {
    max-width: 70px; }
  .team-two-tabs a {
    width: 32%; }
  .download-book {
    font-size: 12px;
    padding: 4px 10px;
    margin-left: 10px; } }

/* featured tab */
.clear-both {
  min-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-bottom: 0px;
  padding-top: 50px; }

.featured-tab {
  margin-bottom: 16px; }

.featured-tab a {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px; }

.featured-tab a::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #092a7b91;
  z-index: 9;
  position: absolute;
  border-radius: 8px; }

.featured-tab a:hover p {
  transform: scale(1.2, 1.2);
  transition: 1s; }

.featured-tab a img {
  width: 100%;
  border-radius: 8px; }

.featured-tab a p {
  position: absolute;
  text-align: center;
  margin: 0;
  z-index: 99;
  color: #fff;
  font-weight: bold;
  transition: 1s;
  font-size: 18px;
  padding: 10px; }

#owl-demo33 .item {
  margin: 15px; }

.our-publications {
  margin-top: 0px; }

.video-sec {
  margin-top: 20px; }

@media (max-width: 767px) {
  .m-b-0 {
    margin-bottom: 0px !important; }
  #sync2 {
    position: absolute;
    bottom: 0; } }

#sync1 .owl-wrapper-outer {
  max-height: 450px; }

.zerotopmargin
{
	margin-top:0px;
}

.viewall
{
	float:right; font-weight:bold; font-size:16px;
}
