.header-image{
  height: 110px;
  width: 100%;
}


h2{
  margin: 1em 0 0.5em 0;
  color: #343434;
  font-weight: normal;
  font-family: 'Ultra', sans-serif;
  font-size: 36px;
  line-height: 42px;
  text-transform: uppercase;
  text-shadow: 0 2px white, 0 3px #777;
}


@media only screen and (max-width: 767px) {

  .navbar-brand{
    margin: 0!important;
  }

  .bread{
    font-size: 24px;
    font-weight: 400;
  }

  h2{
    font-size: 20px;
  }

  .journalh5{
    font-size: 17px;
  }
}

.nav-drop{
  width: 450px;
}

.nav-drop .right-border{
  border-right:1px#8c8b8b solid;
}

.nav-drop .dropdown-item{
  line-height:25px;
  display: inline-block;
  padding:8px;
  position: relative;
}
.nav-drop .dropdown-item:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background:#fd5f00;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.nav-drop .dropdown-item:hover:after { 
  width: 100%; 
  left: 0; 
}

.nav_submenu .activesub:after{
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  background:#fd5f00;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .nav-drop{
    width: 100%;
  }

  .nav-drop .right-border{
    border-right:none;
  }
}

.footerlinkdrop{
  list-style: none;
}

.footerlinkdrop li{
  line-height: 25px;
  font-size: small;

}

.brdrleft p{
  border-left: 1px solid #fd5f00;
}

.lh{
  line-height: 26px;
}

.header1{
  font-weight: 900;
  font-size: 45px;
  color: #fd5f00;
}

@media (max-width: 767.98px) {
  .header1 h2 {
    font-size: 32px; 
  } 
}


.home_researchcard{
  border-radius: 16px;
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
  overflow: hidden;
  transition: all 850ms ease;
}

.home_researchcard .card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  background-color: transparent;
  border-bottom: none;
}

.home_researchcard .card-header .card-img {
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background-color: #E07A5F;
  transition: all 850ms ease;
}

.home_researchcard .card-header .card-title {
  font-size: 22px;
  font-weight: 500;
  color: #3D405B;
  transition: all 250ms ease;
}

.home_researchcard .card-body {
  padding: 1rem;
  transition: all 550ms ease;
  color: #3D405B;
  position: relative;
  text-align: center;
}
.home_researchcard .overlay {
  width: 1px;
  height: 1px;
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 27px);
  top: 1rem;
  transition: transform 850ms ease, opacity 550ms ease-in-out;
}

.home_researchcard:hover {
  color: white;
}
.home_researchcard:hover .overlay {
  transform: scale(1100);
}
.home_researchcard:hover .card-header .card-img {
  z-index: 999;
}
.home_researchcard:hover .card-header .card-title {
  color: white;
  z-index: 999;
}
.home_researchcard:hover .card-body {
  color: white;
  z-index: 999;
}

.home_editingflexcard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  align-items: baseline;
  border-radius: 20px;
}

.home_editingflexcard .flexcardNumber {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: 10px 0px;
  border-radius: 0px 50px 50px 0px;
  font-family: 'Jost', sans-serif;
  color: white;
  text-shadow: 0px 3px 5px black;
  font-weight: 500;
  font-size: 20px;
  position: relative;
}

.home_editingflexcard .flexcardTitle {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 400;
}

.home_editingflexcard .flexcardText {
  font-family: 'Jost', sans-serif;
  padding: 10px;
  font-weight: 300;
  text-align: justify;
}

.flexcardNumber:before {
  content: '';
  width: 34px;
  height: 90px;
  position: absolute;
  left: -33px;
  top: 0px;
  border-radius: 50px 0px 0px 50px;
  z-index: -1;
/* background: #95B7A2; *//* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
  background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
/* background: linear-gradient(to top, #95B7A2, #AED2BC); */;
}

.flexcardNumber:after {
  content: '';
  width: 25px;
  height: 40px;
  position: absolute;
  left: -25px;
  bottom: -40px;
  border-radius: 50px 0px 0px 50px;
  z-index: -1;
}

.home_editingflexcard .flex {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 10px auto;
}


.flexcardBlue {
  background: #f7ffff;
 box-shadow: 4px 8px 1px #92E8EB;
}

.flexcardNumberBlue {
  background: #FDFFFE;
  background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
  background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
  background: linear-gradient(to left, #FDFFFE, #92E8EB);
  box-shadow: 0px 2px 2px #92E8EB;
}

.flexcardNumberBlue:before {
  background: #92E8EB;
}

.flexcardNumberBlue:after {
  background: #71bdbf;
}

.home_whatcard {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  position: relative;
  --border-size: 0.5rem;
}
.home_whatcard:before {
  content: "";
  background: #db4437;
  background: linear-gradient(45deg, #db4437 0%, #db4437 25%, #f4b400 25%, #f4b400 50%, #0f9d58 50%, #0f9d58 75%, #4285f4 75%, #4285f4 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: inherit;
  padding: var(--border-size);
  transform: translateX(calc(-1 * var(--border-size))) translateY(calc(-1 * var(--border-size)));
  z-index: -1;
  box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease-in-out;
  opacity: 0.8;
}
.home_whatcard:hover:before {
  opacity: 1;
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.5);
}

.home_choosecard-profile {
    border-radius: 12px;
    box-shadow: 0 6px 10px 3px rgba(0, 0, 0, 0.15);
    background-color: #FFFFFF;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border: 0 none;
    border-top: 2px solid red;
    -webkit-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
    -moz-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
    -o-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
    -ms-transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
    transition: transform 300ms cubic-bezier(0.34, 2, 0.6, 1), box-shadow 200ms ease;
}
.home_choosecard-profile .card-avatar {
    max-width: 120px;
    max-height: 120px;
    margin: -60px auto 0;
    border-radius: 50%;
    overflow: hidden;
}

@media only screen and (max-width: 364px) {
  .home_choosecard-profile .card-avatar {
    max-width: 80px;
    max-height: 80px;
  }
}
.home_choosecard-profile .card-avatar img {
    width: 100%;
    height: auto;
}

.home_choosecard-profile:hover {
    box-shadow: 0px 12px 19px -7px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}

/* .newscontainer{
  width:100%;
  height:300px;
  overflow:hidden;
  background-color: #f8f8fc;
  box-shadow: 4px 4px 16px #e1e1e1;
  border-radius: 2.5rem;
} */

.newscontainer{
  width:100%;
  height:450px;
  background-color: #f8f8fc;
  border-radius: 2.5rem;
  padding-bottom: 10px;
}

.newscontainer .card-body{
  overflow:hidden;
}

.newscontainer .card-body ul{
  list-style:none;
  position:relative;
}

.newscontainer li{
  height: 100%;
  margin: 5px 0;
  width: 100%;
  justify-content: space-between;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  background-color: white;
  box-shadow: 4px 4px 16px #e1e1e1, -2px -2px 16px #fff;
  border-radius: 10px;
  border-left: 1px solid red;
}

.newscontainer li:last-child{
  display: none;
}

.home_banner{
  padding: 25px 0;
  width: 100%;
  background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/web/home/banner.jpg');
  background-position: center;
  background-size: cover;
  height: auto;
}

.about_labelbox {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 5px;
  background: linear-gradient(to right, #abbd73 35%, #d6e2ad 100%);
  margin-bottom: 40px;
  padding: 15px 25px 0 40px;
  color: darkslategray;
  box-shadow: 1px 2px 1px -1px #777;
  transition: background 200ms ease-in-out;
}

.about_labelshadow {
  position: relative;
}
.about_labelshadow:before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 13px;
  right: 7px;
  width: 75%;
  top: 0;
  box-shadow: 0 15px 10px #777;
  transform: rotate(4deg);
  transition: all 150ms ease-in-out;
}

.about_labelbox:hover {
  background: linear-gradient(to right, #abbd73 0%, #abbd73 100%);
}

.about_labelshadow:hover::before {
  transform: rotate(0deg);
  bottom: 20px;
  z-index: -10;
}

.about_labelshadow .circle {
  position: absolute;
  top: 18px;
  left: 15px;
  border-radius: 50%;
  box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, 0.5), inset 0 0 0 25px antiquewhite;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.about_gradient{
  background: #1462ff;
  color: white;
  border-radius: 12px;
  padding: 12px 48px;
  box-shadow: 0 6px 30px -10px #4a74c9;
  transition: all 0.5s ease;
  border: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about_gradient:hover{
  box-shadow: 0 0px 0px 0 rgba(0, 40, 120, 0);
  transform: scale(0.930);
}

.about_gradient{
  background-image: linear-gradient(60deg, #4aa5fb 10%, #1ccafa 50%, #00e1f9 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0px;
}

.about_gradient:hover{
  border-top-left-radius: 0px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 12px;
}


.domain_card{
  overflow: hidden;
  transform: scale(1);
  -webkit-transform: scale(1);
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, .07);
  transition: all .4s linear;
  -webkit-transition: all .4s linear;
  -moz-transition: all .4s linear;
  -o-transition: all .4s linear;
  border: none;
  border-radius: 12px;
}

.domain_card:hover{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.carrer_box {
  width: 100%;
  margin: 50px auto;
  position: relative;
  text-align: center;
}
.carrer_box-border {
  text-align: left;
  padding: 40px;
  border: 4px solid #456;
  border-top: none;
}
.carrer_box-header {
  position: relative;
  overflow: hidden;
}
.carrer_box-header:before {
  content:'';
  display: block;
  position: absolute;
  border-left: 4px solid #f00;
  border-right: 4px solid #f00;
  right: 0;
  left: 0;
  top: 50%;
  height: 50%;
}
.carrer_box h5 {
  margin: 0;
  position: relative;
  display: inline-block;
  padding: 0 10px;
  max-width: 70%;
}
.carrer_box h5:before {
  content:'';
  display: block;
  position: absolute;
  right: 100%;
  top: 50%;
  width: 9999px;
  height: 4px;
  background-color: #f00;
}
.carrer_box h5:after {
  content:'';
  display: block;
  position: absolute;
  left: 100%;
  top: 50%;
  width: 9999px;
  height: 4px;
  background-color: #f00;
}

.topslider {
  position: absolute !important;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  z-index:-1;
}

.fixcontent {
  position: relative;
  margin-top: 420px;
}

#buttonbacktotop {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#buttonbacktotop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#buttonbacktotop:hover {
  cursor: pointer;
  background-color: #333;
}
#buttonbacktotop:active {
  background-color: #555;
}
#buttonbacktotop.show {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 500px) {
  #buttonbacktotop {
    margin: 30px;
  }
}

html {
  scroll-behavior: smooth;
}

.section-nav {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.section-nav li.active > a {
  color: red;
  font-weight: 500;
}

.section-nav {
  padding-right: 0;
  border-right: 1px solid #efefef;
}

.section-nav a {
  text-decoration: none;
  display: block;
  padding: .125rem 0;
  color: #333;
  transition: all 50ms ease-in-out;
}

.section-nav a:hover,
.section-nav a:focus {
  color: red;
}


.section-nav ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.editing_card_home{
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  position: relative;
  --border-size: 0.5rem;
}

.editing_card_home:before{
  content: "";
  background: #db4437;
  background: linear-gradient(45deg, #db4437 0%, #db4437 25%, #f4b400 25%, #f4b400 50%, #0f9d58 50%, #0f9d58 75%, #4285f4 75%, #4285f4 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: inherit;
  padding: var(--border-size);
  transform: translateX(calc(-1 * var(--border-size))) translateY(calc(-1 * var(--border-size)));
  z-index: -1;
  box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease-in-out;
  opacity: 0.8;
}

.editing_card_home:hover:before {
  opacity: 1;
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.5);
}

.fixcontent2{
  position: relative;
  margin-top: 180px;
}
/* 
.leftarrow {
  position: absolute;
  width:15%;
  left:0;
  padding-left:5%;
  z-index: 0;
  top:60vh;
}


.rightarrow {
  position: absolute;
  width:15%;
  padding-right:5%;
  right:0;
  z-index: 0;
  top:60vh;
} */