.breadcrumb {
  background-color: transparent;
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 0.5em;
  padding: 15px;
}

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumb ul a {
  color: #919fae;
  position: relative;
}

.breadcrumb ul a::after {
  content: "/";
  margin: 0 15px;
}

@media (max-width: 575px) {
  .breadcrumb {
    padding: 10px 15px;
  }
}

.loader01 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  overflow: hidden;
  -webkit-animation: loadarclose 0.1s ease-in-out forwards;
  animation: loadarclose 0.1s ease-in-out forwards;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.loader01::before {
  content: "";
  background: #000;
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  -webkit-animation: loaderup 1s ease-in-out forwards;
  animation: loaderup 1s ease-in-out forwards;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.loader01::after {
  content: "";
  background: #000;
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  -webkit-animation: loaderdown 1s ease-in-out forwards;
  animation: loaderdown 1s ease-in-out forwards;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.loader01 .line {
  position: absolute;
  left: 0;
  top: 49%;
  background: #f7941e;
  width: 2%;
  height: 1%;
  -webkit-animation: loaderslide 0.8s ease-in-out forwards;
  animation: loaderslide 0.8s ease-in-out forwards;
}

@-webkit-keyframes loaderslide {
  0% {
    width: 1%;
    opacity: 0;
  }

  90% {
    opacity: 1;
    width: 100%;
  }

  100% {
    opacity: 0;
    width: 100%;
  }
}

@keyframes loaderslide {
  0% {
    width: 1%;
    opacity: 0;
  }

  90% {
    opacity: 1;
    width: 100%;
  }

  100% {
    opacity: 0;
    width: 100%;
  }
}

@-webkit-keyframes loaderup {
  0% {
    top: 0%;
  }

  100% {
    top: -50%;
  }
}

@keyframes loaderup {
  0% {
    top: 0%;
  }

  100% {
    top: -50%;
  }
}

@-webkit-keyframes loaderdown {
  0% {
    bottom: 0%;
  }

  100% {
    bottom: -50%;
  }
}

@keyframes loaderdown {
  0% {
    bottom: 0%;
  }

  100% {
    bottom: -50%;
  }
}

@-webkit-keyframes loadarclose {
  0% {
    top: 0;
  }

  100% {
    top: -100%;
  }
}

@keyframes loadarclose {
  0% {
    top: 0;
  }

  100% {
    top: -100%;
  }
}

.st-banner {
  position: relative;
  padding: 0;
  margin-top: 0.5em;
  height: calc(100vh - 230px);
  overflow: hidden;
}

@media (max-width: 979px) {
  .st-banner {
    min-height: 570px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .st-banner {
    height: 100vh;
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .st-banner {
    height: calc(100vh - 230px);
  }
}

.st-banner .hero-container {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .st-banner .hero-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.st-banner .hero-container .hero-image {
  width: 100%;
  max-width: 68%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: calc(100vh - 200px);
}

@media (max-width: 767px) {
  .st-banner .hero-container .hero-image {
    max-width: 100%;
    height: 100vh;
  }
}

@media (max-width: 575px) {
  .st-banner .hero-container .hero-image {
    height: calc(100vh - 200px);
  }
}

.st-banner .hero-container .hero-image img {
  border: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-animation: slideIn 0.5s ease-in-out forwards;
  animation: slideIn 0.5s ease-in-out forwards;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

@media (max-width: 767px) {
  .st-banner .hero-container .hero-image img {
    height: 100%;
  }
}

@media (max-width: 575px) {
  .st-banner .hero-container .hero-image img {
    height: 70%;
  }
}

.st-banner .hero-container .text {
  padding: 2.5em;
  background: #fff;
  max-width: 530px;
  width: 38%;
  position: relative;
  margin-right: -5%;
  margin-bottom: 8%;
  z-index: 2;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .st-banner .hero-container .text {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .st-banner .hero-container .text {
    max-width: 100%;
    width: 90%;
    margin: 0 5%;
    position: absolute;
    bottom: 2%;
  }
}

.st-banner .hero-container .text h2 {
  font-size: 2.5em;
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
  -webkit-animation: slideUp 0.5s ease forwards 0.4s;
  animation: slideUp 0.5s ease forwards 0.4s;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  margin-bottom: 10px;
}

@media (max-width: 979px) {
  .st-banner .hero-container .text h2 {
    font-size: 2em;
  }
}

@media (max-width: 575px) {
  .st-banner .hero-container .text h2 {
    font-size: 1.8em;
  }
}

.st-banner .hero-container .text h3 {
  color: #6c6b6b;
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
  -webkit-animation: slideUp 0.5s ease forwards 0.4s;
  animation: slideUp 0.5s ease forwards 0.4s;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.st-banner .hero-container .text .highlight-txt {
  position: relative;
  padding-left: 25px;
}

.st-banner .hero-container .text .highlight-txt::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: #f4b966;
  left: 0;
  top: 0;
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
  -webkit-animation: slideUp 0.5s ease forwards 0.4s;
  animation: slideUp 0.5s ease forwards 0.4s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.st-banner .hero-container .text p {
  margin: 0 0 5px;
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
  -webkit-animation: slideUp 0.5s ease-in-out forwards 0.6s;
  animation: slideUp 0.5s ease-in-out forwards 0.6s;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.st-banner a.scroll-down {
  font-size: 15px;
  color: #000;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  -webkit-animation: scrollOpacity 0.5s ease-in-out forwards;
  animation: scrollOpacity 0.5s ease-in-out forwards;
  -webkit-animation-delay: 2.9s;
  animation-delay: 2.9s;
  z-index: 2;
  display: inline-block;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .st-banner a.scroll-down {
    display: none;
  }
}

.st-banner a.scroll-down .down-arrow {
  position: absolute;
  bottom: -30px;
  left: calc(50% - 12px);
  -webkit-animation: scrollDown 2s infinite;
  animation: scrollDown 2s infinite;
}

.down-arrow {
  background: url("../images/downn-arrow-icon.png") no-repeat;
  width: 17px;
  height: 23px;
  display: inline-block;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
  }

  20% {
    -webkit-transform: rotate(0deg) translate(0, 13px);
    transform: rotate(0deg) translate(0, 13px);
  }

  40% {
    -webkit-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
  }

  20% {
    -webkit-transform: rotate(0deg) translate(0, 13px);
    transform: rotate(0deg) translate(0, 13px);
  }

  40% {
    -webkit-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
  }
}

@-webkit-keyframes scrollOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scrollOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.st-tabs01 {
  margin: 50px auto 0 auto;
  position: relative;
  z-index: 1;
  padding: 0;
  position: relative;
}

.st-tabs01 .lead p {
  margin: 0 0 25px;
}

.st-tabs01 .lead {
  font-weight: 500;
  margin-bottom: 50px;
}

.st-tabs01.padtop {
  padding-top: 100px;
}

@media (max-width: 1090px) {
  .st-tabs01.padtop {
    padding-top: 0;
  }
}

@media (max-width: 979px) {
  .st-tabs01.padtop {
    padding-bottom: 40px;
  }
}

.st-tabs01.padbottom {
  padding-bottom: 50px;
}

@media (max-width: 1090px) {
  .st-tabs01.padbottom {
    padding-bottom: 25px;
  }
}

@media (max-width: 979px) {
  .st-tabs01 {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .st-tabs01 {
    padding: 0;
    margin-top: 0;
  }
}

.st-tabs01 .tab-content {
  padding: 20px 0 40px;
}

@media (max-width: 979px) {
  .st-tabs01 .tab-content {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .st-tabs01 .tab-content {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .st-tabs01 .tab-content {
    padding: 0 5px;
  }
}

.st-tabs01 .st-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
}

.st-nav-cnt {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  background: #fff;
  z-index: 1;
  position: relative;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}

@media (max-width: 1090px) {
  .st-nav-cnt {
    padding: 10px 0;
    margin-bottom: 30px;
  }
}

.path-strategic-partnerships .st-nav01 {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  -webkit-animation: tabOpacity 0.5s ease-in-out forwards;
  animation: tabOpacity 0.5s ease-in-out forwards;
  -webkit-animation-delay: 2.9s;
  animation-delay: 2.1s;
  opacity: 0;
  z-index: 1;
  position: relative;
  background: #fff;
}

@media (max-width: 800px) {
  .path-strategic-partnerships .st-nav01 {
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
  }
}

.path-strategic-partnerships .st-nav01 li {
  line-height: 18px;
  padding: 0.5em 1em 0.5em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

@media (max-width: 1090px) {
  .path-strategic-partnerships .st-nav01 li {
    width: 100%;
    max-width: 48%;
    border-bottom: 1px solid #ccc;
    margin: 0 1%;
    padding-top: 0;
  }
}

@media (max-width: 575px) {
  .path-strategic-partnerships .st-nav01 li:nth-child(even) a {
    padding-left: 0;
  }

  .path-strategic-partnerships .st-nav01 li:last-child {
    border-bottom: 0;
  }
}

.path-strategic-partnerships .st-nav01 li a {
  color: #000 !important;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-right: 0;
  border: none !important;
  background: none !important;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 575px) {
  .path-strategic-partnerships .st-nav01 li a {
    font-size: 13px;
  }
}

.path-strategic-partnerships .st-nav01 li a span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 120px;
  line-height: 20px;
  margin-left: 1em;
  font-weight: 400;
}

.path-strategic-partnerships .st-nav01 li a i {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
}

@media (max-width: 575px) {
  .path-strategic-partnerships .st-nav01 li a i {
    width: 40px;
    height: 40px;
  }

  /*.path-strategic-partnerships .st-nav01 li:last-child a i {
    width: 60px ;
  }*/
}

.path-strategic-partnerships .st-nav01 li a i svg {
  width: 50px;
  height: 50px;
}

.path-strategic-partnerships .st-nav01 li.active a i svg {
  width: 40px;
  height: 40px;
}

.path-strategic-partnerships .st-nav01 li a i svg path {
  fill: #ed8b00;
}

@media (max-width: 575px) {
  .path-strategic-partnerships .st-nav01 li a i svg {
    width: 40px;
    height: 40px;
  }

  .path-strategic-partnerships .st-nav01 li.active a i svg {
    width: 30px;
    height: 30px;
  }
}

.path-strategic-partnerships .st-nav01 li.active a {
  position: relative;
}

.path-strategic-partnerships .st-nav01 li.active a i {
  background-color: #ed8b00;
}

.path-strategic-partnerships .st-nav01 li.active a i path {
  fill: #fff !important;
}

.path-strategic-partnerships .st-nav01 li.active a i svg g polygon {
  fill: #fff;
}

.path-strategic-partnerships .st-nav01 li.active a span {
  font-weight: 700;
  color: #000;
}

.path-strategic-partnerships .st-nav01 li.active::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ee8b00;
  height: 3px;
}

@-webkit-keyframes tabOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tabOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.tab-inner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

@media (min-width: 1161px) {
  .tab-inner-content {
    max-width: 1024px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 1090px) {
  .tab-inner-content {
    padding: 0 15px;
    max-width: 800px;
  }
}

@media (max-width: 767px) {
  .tab-inner-content {
    padding: 0 25px;
  }
}

@media (max-width: 575px) {
  .tab-inner-content {
    padding: 0 15px;
  }
}

.path-strategic-partnerships .tab-inner-content a {
  /*font-weight: 700;
  color: #000;*/
}

.path-strategic-partnerships .our-partners .tab-inner-content a {
  color: #4a8bcd;
}

.path-strategic-partnerships .tab-inner-content a.link {
  text-decoration: underline;
  -webkit-text-decoration-color: #ed8b00;
  text-decoration-color: #ed8b00;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.path-strategic-partnerships .tab-content .tab-pane.animation .st-banner h2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.path-strategic-partnerships .tab-content .tab-pane.animation .st-banner p {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.path-strategic-partnerships .tab-content .tab-pane.animation .st-banner .image {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.path-strategic-partnerships .tab-content .tab-pane.animation .st-banner a.scroll-down {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sp-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100%;
  left: 0;
  z-index: 10;
  padding: 0;
}

@media (max-width: 1090px) {
  .sp-sticky {
    position: relative;
  }
}

.sp-model-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 80px;
  margin-bottom: 70px;
  background: #f5f5f0;
}

@media (max-width: 979px) {
  .sp-model-cnt {
    padding: 0 15px;
    background: none;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt {
    margin: 30px 0;
    padding: 0;
  }
}

@media (max-width: 575px) {
  .sp-model-cnt {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .path-strategic-partnerships .breadcrumb {
    padding-left: 15px;
    padding-right: 15px;
  }

  .path-strategic-partnerships .bg-grey-lightest .page-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.sp-model-cnt .image {
  position: relative;
  width: 40%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

@media (max-width: 979px) {
  .sp-model-cnt .image {
    height: 500px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .sp-model-cnt .image {
    height: 400px;
  }
}

.sp-model-cnt .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.sp-model-cnt .info {
  background: #f5f5f0;
  width: 50%;
  padding: 75px 90px 50px 80px;
}

@media (max-width: 1350px) {
  .sp-model-cnt .info {
    width: 60%;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt .info {
    width: 100%;
  }
}

@media (max-width: 1090px) {
  .sp-model-cnt .info {
    padding: 40px 30px 30px 30px;
  }
}

@media (max-width: 575px) {
  .sp-model-cnt .info {
    padding: 25px 20px 5px 20px;
  }
}

.sp-model-cnt .info a.link {
  color: #000;
  text-decoration: underline;
  -webkit-text-decoration-color: #ed8b00;
  text-decoration-color: #ed8b00;
  cursor: pointer;
  font-weight: 700;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  cursor: pointer;
}

@media (max-width: 979px) {
  .sp-model-cnt .info ul {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt .info ul {
    padding-left: 0;
    padding-right: 0;
  }
}

.sp-model-cnt .info ul li {
  position: relative;
  padding: 30px 0 0 100px;
}

@media (max-width: 575px) {
  .sp-model-cnt .info ul li {
    padding-left: 70px;
  }
}

.sp-model-cnt .info ul li span {
  position: absolute;
  top: 30px;
  left: 0;
  width: 72px;
  height: 72px;
  background: #ed8b00;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding: 15px 0 0;
}

@media (max-width: 575px) {
  .sp-model-cnt .info ul li span {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    left: -7px;
  }
}

.sp-model-cnt .info ul li span img {
  display: inline-block;
}

.sp-model-cnt .info ul li p {
  line-height: 26px;
}

.sp-model-cnt .info ul li p:last-child {
  border-bottom: 1px solid #c7c7c7;
  margin-bottom: 0;
  padding-bottom: 30px;
  min-height: 80px;
}

.sp-model-cnt .info ul li:last-child p {
  border: none;
}

.sp-model-cnt.corpartner {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 70px 30px 20px;
  margin-bottom: 0;
  margin-top: 0;
}

.sp-model-cnt.academia-cnt {
  margin-top: 60px;
}

@media (max-width: 1350px) {
  .sp-model-cnt.corpartner {
    padding: 70px 10px 20px;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.corpartner {
    background: #f5f5f0;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.corpartner {
    padding: 50px 20px 20px;
  }
}

.sp-model-cnt.corpartner h2,
.sp-model-cnt.corpartner h3 {
  width: 100%;
  text-align: center;
}

.st-tabs01.padbottom.mp-header2 h2 {
  width: 100%;
  text-align: center;
}

.sp-model-cnt.corpartner .mp-section-1 {
  width: 100%;
  text-align: center;
}

.sp-model-cnt.corpartner .info ul li h3 {
  text-align: initial;
}

.sp-model-cnt.corpartner .info {
  padding: 25px 40px 25px 10%;
}

@media (max-width: 1600px) {
  .sp-model-cnt.corpartner .info {
    padding-left: 5%;
  }
}

@media (max-width: 1350px) {
  .sp-model-cnt.corpartner .info {
    width: 50%;
  }
}

@media (max-width: 1090px) {
  .sp-model-cnt.corpartner .info {
    padding: 20px;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.corpartner .info {
    width: 100%;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.corpartner .info {
    padding: 0 5px;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.corpartner .info ul li:last-child p {
    border-bottom: 1px solid #c7c7c7;
  }
}

.sp-model-cnt.corpartner .info:last-child {
  padding: 25px 10% 25px 40px;
}

@media (max-width: 1600px) {
  .sp-model-cnt.corpartner .info:last-child {
    padding-right: 5%;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.corpartner .info:last-child {
    padding-top: 0 !important;
  }
}

@media (max-width: 979px) and (max-width: 979px) {
  .sp-model-cnt.corpartner .info:last-child li:last-child p {
    border-bottom: none !important;
  }
}

@media (max-width: 1090px) {
  .sp-model-cnt.corpartner .info:last-child {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.corpartner .info:last-child {
    padding: 0 5px;
  }
}

.sp-model-cnt.corp-part-cnt {
  margin-top: 0;
  margin-bottom: 0;
  background: #fff;
}

@media (max-width: 979px) {
  .sp-model-cnt.corp-part-cnt {
    padding: 0;
  }
}

.sp-model-cnt.corp-part-cnt .info {
  background: #fff;
  width: 55%;
  padding: 5%;
}

@media (max-width: 1600px) {
  .sp-model-cnt.corp-part-cnt .info {
    width: 60%;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.corp-part-cnt .info {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.corp-part-cnt .info {
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.corp-part-cnt .info a {
    font-size: 16px;
  }
}

.sp-model-cnt .cp-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sp-model-cnt .cp-list .views-view-grid {
  display: flex;
  flex-wrap: wrap;
}

.sp-model-cnt .cp-list label {
  width: 32.78%;
  padding: 5px;
  margin: 0;
  display: flex;
}

@media (max-width: 575px) {
  .sp-model-cnt .cp-list label {
    width: 100%;
  }
}

@media (max-width: 340px) {
  .sp-model-cnt .cp-list label {
    width: 100%;
  }
}

.sp-model-cnt .cp-list label a {
  padding: 30px 15px;
  border: 1px solid #ed8b00;
  border-radius: 5px;
  font-weight: 700;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  line-height: 22px;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.sp-model-cnt .cp-list label a:hover {
  background: #ed8b00;
  color: #fff;
}

.sp-model-cnt .sp-info-text {
  text-align: center;
  padding-bottom: 30px;
}

.sp-model-cnt .sp-info-text p a {
  color: #000;
  text-decoration: underline;
  -webkit-text-decoration-color: #ed8b00;
  text-decoration-color: #ed8b00;
  cursor: pointer;
  font-weight: 700;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.sp-model-cnt.civil-society {
  margin-top: 0;
}

@media (max-width: 979px) {
  .sp-model-cnt.civil-society {
    padding: 0;
  }
}

.sp-model-cnt.civil-society .info {
  width: 50%;
  padding: 5% 9% 5% 6%;
  background: #f7f7f7;
}

@media (max-width: 1090px) {
  .sp-model-cnt.civil-society .info {
    padding: 5%;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.civil-society .info {
    padding: 6% 4% 3%;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.civil-society .info {
    width: 100%;
  }
}

.sp-model-cnt.civil-society .info:first-child {
  background: #fff;
  padding: 5% 6% 5% 9%;
}

@media (max-width: 1090px) {
  .sp-model-cnt.civil-society .info:first-child {
    padding: 5%;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.civil-society .info:first-child {
    padding: 6% 4% 3%;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.civil-society .info:first-child {
    background: #f7f7f7;
  }
}

.sp-model-cnt.civil-society .info ul li p {
  min-height: 1px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .sp-model-cnt.civil-society .info ul li p {
    font-size: 17px;
  }
}

.sp-model-cnt.civil-society .info ul li span {
  top: 0;
  bottom: 0;
  margin: auto;
}

.sp-model-cnt.civil-society .info ul li span.sml-top {
  padding-top: 7px;
}

.sp-model-cnt.academia {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 70px 30px 20px;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 1350px) {
  .sp-model-cnt.academia {
    padding: 70px 10px 20px;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.academia {
    background: #f5f5f0;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.academia {
    padding-top: 50px;
  }
}

.sp-model-cnt.academia h3 {
  width: 100%;
  text-align: center;
}

.sp-model-cnt.academia .info {
  padding: 25px 40px;
}

@media (max-width: 1350px) {
  .sp-model-cnt.academia .info {
    width: 50%;
  }
}

@media (max-width: 1090px) {
  .sp-model-cnt.academia .info {
    padding: 20px;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.academia .info {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.academia .info {
    padding: 0 5px;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.partnership-model {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.partnership-model {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .sp-model-cnt.partnership-model {
    padding: 0;
  }
}

.sp-model-cnt.partnership-model .image {
  width: 100%;
}

.sp-model-cnt.partnership-model .image img {
  position: relative;
}

@media (max-width: 1300px) {
  .sp-model-cnt.partnership-model .image {
    width: 100%;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.partnership-model .image {
    width: 100%;
  }
}

.sp-model-cnt.partnership-model .info {
  width: 100%;
  max-width: 1125px;
  padding: 50px 80px 70px;
  margin: -160px auto 0;
  z-index: 1;
  background: #fff;
}

@media (max-width: 1090px) {
  .sp-model-cnt.partnership-model .info {
    margin-top: 0;
  }
}

@media (max-width: 979px) {
  .sp-model-cnt.partnership-model .info {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.partnership-model .info {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.sp-model-cnt.partnership-model .info h2 {
  margin-bottom: 40px;
}

.sp-model-cnt.partnership-model .info p {
  margin-bottom: 40px;
  position: relative;
  padding-left: 60px;
}

.sp-model-cnt.partnership-model .info p label {
  font-size: 44px;
  font-weight: 600;
  color: #ed8b00;
  position: absolute;
  top: 10px;
  left: 0;
  margin: 0;
}

@media (max-width: 575px) {
  .sp-model-cnt.partnership-model .info p {
    padding-left: 45px;
  }

  .sp-model-cnt.partnership-model .info p label {
    font-size: 34px;
  }
}

.sp-model-cnt.partnership-model .info p.para {
  padding: 0;
}

.sp-model-cnt.partnership-model .panel-group .panel-default {
  border-radius: 0;
  border: none;
  position: relative;
}

.sp-model-cnt.partnership-model .panel-group .panel-heading {
  border-radius: 0;
  border: none !important;
}

.sp-model-cnt.partnership-model .panel-group .panel-title {
  padding: 0;
  border-bottom: 1px solid #ccc;
}

.sp-model-cnt.partnership-model .panel-group .panel-title a.collapsed {
  background: #f7f7f7;
  color: #000;
}

.sp-model-cnt.partnership-model .panel-default .panel-heading h4 a.collapsed::after {
  border-top-color: #000;
  border-left-color: #000;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 22px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-animation: blackarrow 2.1s ease-in-out forwards;
  animation: blackarrow 2.1s ease-in-out forwards;
  animation-iteration-count: infinite;
}

@-webkit-keyframes blackarrow {
  0% {
    transform: scale(1) rotate(-135deg);
  }

  15% {
    transform: scale(0.7) rotate(-135deg);
  }

  30% {
    transform: scale(1.3) rotate(-135deg);
  }

  45% {
    transform: scale(1) rotate(-135deg);
  }

  100% {
    transform: scale(1) rotate(-135deg);
  }
}

.sp-model-cnt.partnership-model .panel-default .panel-heading h4 a.collapsed::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 25px;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-top-color: #b9b9b9;
  border-left-color: #b9b9b9;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-animation: fadearrow 2.1s ease-in-out forwards;
  animation: fadearrow 2.1s ease-in-out forwards;
  animation-iteration-count: infinite;
  opacity: 0;
}

@-webkit-keyframes fadearrow {
  0% {
    transform: scale(1.3) rotate(-135deg);
    opacity: 0;
  }

  26% {
    transform: scale(1.3) rotate(-135deg);
    opacity: 0;
  }

  27% {
    transform: scale(1.3) rotate(-135deg);
    opacity: 1;
  }

  90% {
    transform: scale(2.5) rotate(-135deg);
    opacity: 0;
  }

  100% {
    transform: scale(2.5) rotate(-135deg);
    opacity: 0;
  }
}

.sp-model-cnt.partnership-model .panel-default label.note {
  position: absolute;
  bottom: -27px;
  right: 0;
  font-size: 13px;
  color: #a5a5a5;
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
  transition: all ease 0.3s;
}

.sp-model-cnt.partnership-model .panel-default label.note:hover {
  color: #ed8b00;
}

.sp-model-cnt.partnership-model .panel-title a+label.note .closed {
  display: none;
}

.sp-model-cnt.partnership-model .panel-title a+label.note .opened {
  display: inline-block;
}

.sp-model-cnt.partnership-model .panel-title a.collapsed+label.note .closed {
  display: inline-block;
}

.sp-model-cnt.partnership-model .panel-title a.collapsed+label.note .opened {
  display: none;
}

.sp-model-cnt.partnership-model .panel-group .panel-title a {
  background: #ed8b00;
  text-transform: uppercase;
  color: #fff;
  padding: 25px 55px 25px 30px;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: all ease 0.3s;
  text-shadow: none;
}

@media (max-width: 575px) {
  .sp-model-cnt.partnership-model .panel-group .panel-title a {
    padding-left: 20px;
  }
}

.sp-model-cnt.partnership-model .panel-default .panel-heading h4 a::after {
  content: "";
  position: absolute;
  top: 31px;
  right: 25px;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.sp-model-cnt.partnership-model .panel-body {
  border: 1px solid #ccc;
  border-top: none !important;
  padding: 35px 55px;
  background: #f7f7f7;
}

@media (max-width: 979px) {
  .sp-model-cnt.partnership-model .panel-body {
    padding: 20px 15px;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.partnership-model .panel-body {
    padding: 15px 30px;
  }
}

@media (max-width: 575px) {
  .sp-model-cnt.partnership-model .panel-body {
    padding: 10px 25px;
  }
}

.sp-model-cnt.partnership-model .panel-body ul li {
  padding: 15px 0 15px;
}

.sp-model-cnt.partnership-model .panel-collapse .panel-body li label {
  font-size: 15px;
  color: #858585;
  font-weight: 400;
  margin-bottom: 2px;
}

.sp-model-cnt.partnership-model .panel-collapse .panel-body li p {
  padding: 0;
  border: none;
  min-height: 1px;
}

.sp-model-cnt.partnership-model .panel-collapse .panel-body li p a {
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid #ee8b00;
  padding-bottom: 4px;
  display: inline-block;
}

.sp-model-cnt.cvl-info-cnt {
  margin-top: 0;
  padding: 70px 0 50px;
  margin-bottom: 0;
}

.sp-model-cnt.cvl-info-cnt .head-info {
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 979px) {
  .sp-model-cnt.cvl-info-cnt {
    margin-top: 0;
    padding-top: 30px;
    background: #f5f5f0;
    padding-bottom: 10px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.cvl-info-cnt {
    margin-bottom: 0;
  }
}

.sp-model-cnt.cvl-info-cnt .info {
  width: 100%;
  max-width: 1300px;
  padding: 0 25px;
  background: none;
  margin: 0 auto;
}

.sp-model-cnt.cvl-info-cnt .info ul {
  display: flex;
  flex-wrap: wrap;
}

.sp-model-cnt.cvl-info-cnt .info ul li {
  padding: 0 50px 0 100px;
  margin-top: 30px;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 979px) {
  .sp-model-cnt.cvl-info-cnt .info ul li {
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .sp-model-cnt.cvl-info-cnt .info ul li {
    padding-left: 80px;
  }
}

.sp-model-cnt.cvl-info-cnt .info ul li span {
  top: 0;
}

.sp-model-cnt.cvl-info-cnt .info ul li li {
  width: 100%;
  padding: 0;
  margin: 0 0 10px;
}

.sp-model-cnt.cvl-info-cnt .mp-instructions-ui li {
  padding: 0 0 0 20px !important;
  position: relative;
}

.sp-model-cnt.cvl-info-cnt .mp-instructions-ui li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ed8b00;
}

.sp-model-cnt.corpartner .info ul li li {
  width: 100%;
  padding: 0;
  margin: 0 0 10px;
}

.sp-model-cnt.corpartner .mp-instructions-ui li {
  padding: 0 0 0 20px !important;
  position: relative;
}

.sp-model-cnt.corpartner .mp-instructions-ui li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ed8b00;
}

.sp-model-cnt.partnership-model {
  margin-top: 0;
  background: none;
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

.sp-info-text {
  text-align: center;
  padding-bottom: 30px;
}

.sp-info-text p a {
  color: #000;
  text-decoration: underline;
  -webkit-text-decoration-color: #ed8b00;
  text-decoration-color: #ed8b00;
  cursor: pointer;
  font-weight: 700;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.doc-info-sec {
  margin: 0 auto;
  background: #f7f7f7;
  padding: 70px 0 50px;
}

@media (max-width: 979px) {
  .doc-info-sec {
    padding: 50px 0 40px;
  }
}

@media (max-width: 767px) {
  .doc-info-sec {
    padding-left: 10px;
    padding-right: 10px;
  }

  .doc-info-sec .container {
    width: 100%;
    max-width: 700px;
  }
}

.doc-info-sec ul.list {
  margin: 40px 0 0;
}

.doc-info-sec ul.list li {
  border-bottom: 1px solid #c7c7c7;
  margin: 10px 0 10px;
  display: inline-block;
  width: 100%;
  padding: 0 0 20px;
}

.doc-info-sec ul.list li:last-child {
  border-bottom: none;
}

.doc-info-sec ul.list li a {
  color: #000;
  font-weight: 700;
  position: relative;
  padding: 0 0 0 65px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  min-height: 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.doc-info-sec ul.list li a:hover {
  color: #ed8b00;
}

.doc-info-sec ul.list li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
}

.doc-info-sec .pager-nav {
  display: inline-block;
  width: 100%;
}

.doc-info-sec .pager-nav ul {
  margin-top: 20px;
}

.path-strategic-partnerships .pager-nav ul li.pager-current a {
  padding: 0 8px;
}

.st-modal {
  padding: 0 !important;
}

.st-modal .modal-dialog {
  width: 95%;
  max-width: 1000px;
  margin: 15px auto;
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .st-modal .modal-dialog {
    margin: 10px auto !important;
  }
}

.st-modal .modal-header {
  padding: 50px 35px 0;
  border: none;
  position: relative;
}

@media (max-width: 575px) {
  .st-modal .modal-header {
    padding: 30px 45px 0 25px;
  }
}

.st-modal .modal-header .close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #ed8b00;
  opacity: 1;
  font-size: 46px;
  font-weight: 400;
}

.st-modal .highlighted span {
  color: #6c6b6b;
  font-size: 1.5em;
  line-height: 1.2;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.st-modal .highlighted label {
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.02em;
  font-size: 2.2em;
  position: relative;
  padding-left: 20px;
  line-height: 50px;
}

.st-modal .highlighted label::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 90%;
  background: #f4b966;
  left: 0;
  top: 10%;
}

@media (max-width: 767px) {
  .st-modal .highlighted label::before {
    top: 4px;
  }

  .st-modal .highlighted label {
    font-size: 1.8em;
    line-height: 40px;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .st-modal .highlighted label {
    font-size: 1.5em;
  }
}

.st-modal .modal-body {
  padding: 25px 55px;
  max-height: 76vh;
  overflow: auto;
}

@media (max-width: 767px) {
  .st-modal .modal-body {
    padding: 25px 30px;
  }
}

@media (max-width: 575px) {
  .st-modal .modal-body {
    padding: 25px 25px;
  }
}

.st-modal .modal-body p {
  margin-bottom: 1.5em !important;
}

.st-modal .modal-body p span {
  font-size: inherit !important;
  font-family: "Roboto", sans-serif !important;
}

.st-modal .modal-body p a {
  color: #ed8b00 !important;
  text-decoration: none !important;
}

.st-modal .modal-body .lead {
  font-weight: 400;
  margin-bottom: 35px;
}

.item-list {
  border-bottom: 1px solid #dee2e6;
  padding: 35px 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.st-news01 .item-list:last-child {
  border: none;
  padding-bottom: 10px;
}

@media (max-width: 575px) {
  .item-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .item-list .col-sm-5 {
    width: 40%;
  }

  .item-list .col-sm-7 {
    width: 60%;
  }
}

@media (max-width: 575px) {
  .item-list .col-sm-5 {
    width: 100%;
  }

  .item-list .col-sm-7 {
    width: 100%;
  }
}

.item-list .date {
  border-bottom: 1px solid #dee2e6;
  padding: 0 0 5px 0;
  font-size: 0.8em;
}

.item-list .content-type {
  font-size: 1.5em;
  color: #ed8b00;
}

.item-list__list-content h4 {
  margin: 0 0 15px;
}

.item-list__list-content h4 a {
  color: #000000;
}

.item-list__list-content h4 a:hover {
  color: #4a8bcd;
}

.item-list__list-content p {
  margin: 0 0 15px;
  line-height: 1.4;
}

.item-list__list-content ul {
  margin: 0 0 20px;
}

.item-list__list-content ul li {
  color: #000000;
  margin: 0 0 5px;
  font-size: 14px;
}

.item-list__list-content ul li i {
  float: left;
  margin: 2px 10px 0 0;
}

.item-list__list-content ul li i.news-icon {
  height: 21px;
}

.item-list__list-content a.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.item-list__image--wrapper {
  max-width: 100%;
  max-height: 270px;
  overflow: hidden;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .item-list__image--wrapper {
    margin: 10px 0 20px 0;
  }
}

.item-list__image--wrapper img {
  width: 100%;
  border: 1px #dee2e6 solid;
  transition: -webkit-transform 2.4s linear;
  -webkit-transition: -webkit-transform 2.4s linear;
  transition: transform 2.4s linear;
  transition: transform 2.4s linear, -webkit-transform 2.4s linear;
}

.item-list__image--wrapper img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.st-news01 {
  margin: 50px -55px -25px;
  padding: 35px 55px;
  background: #f5f5f0;
}

.st-news01 h3 {
  margin-bottom: 20px;
  font-size: 1.6em;
  padding-right: 120px;
}

@media (max-width: 767px) {
  .st-news01 h3 {
    font-size: 1.5em;
  }

  .st-news01 {
    margin: 40px -30px -25px;
    padding: 35px 30px;
  }
}

@media (max-width: 575px) {
  .st-news01 h3 {
    font-size: 1.4em;
  }

  .st-news01 {
    margin: 40px -25px -25px;
    padding: 35px 25px;
  }
}

.sp-accordian {
  max-width: 1024px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 70px auto 70px;
}

.sp-accordian p a.default {
  margin-left: 5px;
}

.sp-accordian .panel-group {
  margin-bottom: 45px;
}

.sp-accordian .sml-banner {
  margin: 0 0 20px;
  position: relative;
}

.sp-accordian .sml-banner .text {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  text-align: center;
}

.sp-accordian .sml-banner img {
  width: 100%;
}

.sp-accordian .sml-banner h2 {
  text-align: center;
  font-weight: 300;
  color: #fff;
  width: 100%;
  height: auto;
  font-size: 60px;
  margin-bottom: 13px;
}

@media (max-width: 575px) {
  .sp-accordian .sml-banner h2 {
    font-size: 30px;
    margin-bottom: 2px;
  }
}

.sp-accordian .sml-banner p {
  color: #fff;
  width: 100%;
}

.sp-accordian .panel-default {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.sp-accordian .panel-default .panel-heading {
  background: none;
  border: none;
  position: relative;
  padding: 0;
  border-radius: 0;
}

.sp-accordian .panel-default .panel-heading h4 a {
  color: #fff;
  background: #ed8b00;
  text-decoration: none;
  border: none;
  display: inline-block;
  width: 100%;
  padding: 20px 50px 20px 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}

@media (max-width: 767px) {
  .sp-accordian .panel-default .panel-heading h4 a {
    padding: 15px 45px 15px 20px;
    font-size: 16px;
  }
}

.sp-accordian .panel-default .panel-heading h4 a::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 25px;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

@media (max-width: 767px) {
  .sp-accordian .panel-default .panel-heading h4 a::after {
    right: 20px;
    top: 20px;
  }
}

.sp-accordian .panel-default .panel-heading h4 a.collapsed {
  color: #ed8b00;
  background: none;
  border: 0px solid #e6e5e5;
}

.sp-accordian .panel-default .panel-heading h4 a.collapsed::after {
  border-color: #ed8b00;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  top: 21px;
}

@media (max-width: 767px) {
  .sp-accordian .panel-default .panel-heading h4 a.collapsed::after {
    top: 13px;
  }
}

.sp-accordian .panel-default .panel-body {
  background: #f7f7f7;
  padding: 0;
}

.sp-accordian .panel-default .panel-body .para-info {
  padding: 15px 30px;
}

.list-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-cnt ul {
  width: 100%;
  padding: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .list-cnt ul {
    padding: 0;
    width: 100%;
  }
}

.list-cnt ul:last-child {
  padding-left: 0;
  padding-right: 0;
}

.list-cnt ul li {
  list-style: none;
  margin: 0;
  width: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-cnt ul li .wrp {
  width: 48%;
  font-size: 16px;
  padding: 15px 30px;
}

.list-cnt ul li:nth-child(odd) .wrp {
  background: #f2f2f2;
}

@media (max-width: 575px) {
  .list-cnt ul li .wrp {
    width: 100%;
  }

  .list-cnt ul li:nth-child(odd) .wrp {
    background: none;
  }

  .list-cnt ul li .wrp:last-child {
    background: #f2f2f2;
  }
}

.list-cnt ul li label {
  font-size: 17px;
  margin-bottom: -5px;
  color: #000;
  line-height: 22px;
  font-weight: 700;
}

.list-cnt ul li span {
  color: #6c6c6c;
  font-size: 14px;
}

/*3/4 size image and content*/
.fw-3rdimg-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 400px;
}

@media (max-width: 767px) {
  .fw-3rdimg-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.fw-3rdimg-row .fw-3rdimg-col8 {
  width: 58%;
  position: relative;
}

@media (max-width: 767px) {
  .fw-3rdimg-row .fw-3rdimg-col8 {
    width: 100%;
    min-height: 250px;
  }
}

.fw-3rdimg-row .fw-3rdimg-col8.align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .fw-3rdimg-row .fw-3rdimg-col8.align-right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fw-3rdimg-row .fw-3rdimg-col8.align-right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.fw-3rdimg-row .fw-3rdimg-col8 img {
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.fw-3rdimg-row .fw-3rdimg-col4 {
  width: 42%;
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media (max-width: 767px) {
  .fw-3rdimg-row .fw-3rdimg-col4 {
    width: 100%;
  }
}

.fw-3rdimg-row .fw-3rdimg-col4.pos-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.fw-3rdimg-row .fw-3rdimg-col4 img {
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  max-height: 560px;
}

@media (max-width: 767px) {
  .fw-3rdimg-row .fw-3rdimg-col4 img {
    position: relative;
  }
}

.fw-3rdimg-row .fw-3rdimg-col4 .cnt {
  padding: 2em 3em;
  max-width: 80%;
}

@media (max-width: 767px) {
  .fw-3rdimg-row .fw-3rdimg-col4 .cnt {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fw-3rdimg-row .fw-3rdimg-col4 .cnt {
    max-width: 98%;
  }
}

.icpd-reports {
  max-width: 68%;
  width: 100%;
  padding: 3em;
}

@media (max-width: 1090px) {
  .icpd-reports {
    max-width: 90%;
  }
}

@media (max-width: 979px) {
  .icpd-reports {
    padding-left: 5px;
  }
}

@media (max-width: 767px) {
  .icpd-reports {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .icpd-reports {
    max-width: 100%;
  }
}

.icpd-reports .report-item {
  margin: 0 0 0.5em 0;
  padding: 1em 0 0.5em 0;
}

.icpd-reports .report-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icpd-reports .report-item a .item-col-1 {
  width: 10%;
}

@media (max-width: 767px) {
  .icpd-reports .report-item a .item-col-1 {
    width: 20%;
    max-width: 45px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .icpd-reports .report-item a .item-col-1 {
    width: 24%;
  }
}

@media (max-width: 767px) {
  .icpd-reports .report-item a .item-col-2 {
    width: calc(100% - 45px);
  }
}

.icpd-reports .report-item a p.date {
  color: #666666;
  margin: 0;
  font-size: 14px;
}

.icpd-reports .report-item a h4,
.icpd-reports .report-item a h5 {
  color: #000;
  margin: 0;
  border-bottom: 2px solid #ed8b00;
  display: inline-block;
}

.icpd-reports .report-item a:hover h4,
.icpd-reports .report-item a:hover h5 {
  border: 0;
}

.icpd-reports .report-item a i {
  width: 40px;
  height: 40px;
}

.icpd-reports .report-item a i img {
  width: 33px;
  height: 41px;
}

#lightbox {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0, 0, 0, 0.95);
}

#video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1090px) {
  #video-wrapper {
    transform: none;
    -webkit-transform: none;
    width: 80%;
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
  }
}

@media (max-width: 575px) {
  #video-wrapper {
    width: 90%;
  }
}

#close-btn {
  position: fixed;
  top: 3%;
  right: 3%;
  z-index: 2;
  width: 27px;
  height: 25px;
  border-radius: 50%;
  background: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0.6;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

#close-btn:hover {
  opacity: 1;
  -webkit-transform: rotate(45deg) scale(1.3);
  transform: rotate(45deg) scale(1.3);
}

#close-btn::before {
  content: "";
  width: 5px;
  height: 23px;
  background: #fff;
  position: absolute;
  top: 0px;
  left: 9px;
}

#close-btn::after {
  content: "";
  width: 23px;
  height: 5px;
  background: #fff;
  position: absolute;
  top: 9px;
  left: 0;
}

#close-btn:hover {
  color: white;
  cursor: pointer;
}

.sp-modal .modal-header {
  padding: 15px 25px;
}

.sp-modal .modal-header .modal-title {
  float: left;
  font-size: 1.4em;
}

.sp-modal .modal-header .close {
  font-size: 28px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.sp-modal .modal-body {
  padding: 5px 25px 10px;
}

.sp-modal .modal-body .row {
  margin: 20px 0;
}

.sp-modal .modal-body input {
  width: 100%;
}

.sp-modal .modal-body select {
  height: 50px;
}

.sp-modal .modal-body textarea {
  width: 100%;
  font-size: 14px;
  border: 1px solid #000000;
  padding: 10px 20px;
  color: #000000;
  background-color: #ffffff;
  min-height: 100px;
  max-height: 140px;
}

@media (max-width: 767px) {
  .sp-modal .modal-body label {
    font-size: 1em;
  }
}

.sp-modal .contact {
  padding: 0;
  border: none;
  background: none;
  box-shadow: none !important;
}

.sp-modal .contact-form {
  margin-bottom: 0;
}

.sp-modal .contact-form label.control-label {
  margin-top: 20px;
}

.sp-modal .form-actions {
  padding: 20px 15px 5px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
  margin: 30px -25px 0;
}

.sp-modal .modal-body label.form-required::after {
  content: "";
  background: url("../images/required-field-icon.svg") no-repeat;
  background-size: 10px 7px;
  display: inline-block;
  vertical-align: super;
  line-height: 1;
  height: 7px;
  width: 10px;
}

/*# sourceMappingURL=strategic-partnerships.css.map */

.path-strategic-partnerships .container-fluid {
  padding: 0;
}

.path-strategic-partnerships .card-title {
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
}

.path-strategic-partnerships .card-title a {
  color: #000;
}

.path-strategic-partnerships .card-title a:hover {
  color: #4a8bcd;
}

@media (max-width: 979px) {
  .path-strategic-partnerships .bg-grey-lightest .container {
    width: 100%;
    max-width: 700px;
  }

  .path-strategic-partnerships .bg-grey-lightest .page-content {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .path-strategic-partnerships .bg-grey-lightest .page-content {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 40px;
  }
}

.path-strategic-partnerships .pad-top-bottom.level1 .pager-nav {
  display: inline-block;
  width: 100%;
}

.path-strategic-partnerships .pad-top-bottom.level1 .pager-nav ul.pager {
  margin-bottom: 0;
}

.st-news01 .owl-carousel .owl-stage {
  display: flex;
  flex-wrap: wrap;
}

.st-news01 .owl-carousel .owl-item {
  display: flex;
  flex-wrap: wrap;
}

.st-news01 .owl-carousel .ct-card {
  min-width: 96%;
  max-width: 96%;
}

.st-news01 .owl-carousel .ct-card:hover {
  box-shadow: none;
}

.st-news01 .owl-carousel .owl-nav {
  position: absolute;
  top: -70px;
  right: 10px;
}

.st-news01 .owl-carousel .owl-nav .owl-prev {
  display: inline-block;
  position: relative;
  background: #fff;
  z-index: 1;
  height: 40px;
  width: 40px;
  text-indent: -999px;
  box-shadow: 0 0 13px 1px rgba(0, 0, 0, 0.3);
  transition: all ease 0.3s;
}

.st-news01 .owl-carousel .owl-nav .owl-prev:hover {
  background: #ed8b00;
}

.st-news01 .owl-carousel .owl-nav .owl-prev:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 17px;
  margin: auto;
  width: 14px;
  height: 14px;
  border-left: 3px solid #000;
  border-top: 3px solid #000;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transition: all ease 0.3s;
}

.st-news01 .owl-carousel .owl-nav .owl-prev:hover:after {
  border-color: #fff;
}

.st-news01 .owl-carousel .owl-nav .owl-prev span {
  display: none;
}

.st-news01 .owl-carousel .owl-nav .owl-next {
  display: inline-block;
  position: relative;
  background: #fff;
  z-index: 1;
  height: 40px;
  width: 40px;
  text-indent: -999px;
  box-shadow: 0 0 13px 1px rgba(0, 0, 0, 0.3);
  transition: all ease 0.3s;
}

.st-news01 .owl-carousel .owl-nav .owl-next:hover {
  background: #ed8b00;
}

.st-news01 .owl-carousel .owl-nav .owl-next:after {
  content: "";
  position: absolute;
  top: 13px;
  right: 15px;
  margin: auto;
  width: 14px;
  height: 14px;
  border-left: 3px solid #000;
  border-top: 3px solid #000;
  transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transition: all ease 0.3s;
}

.st-news01 .owl-carousel .owl-nav .owl-next:hover:after {
  border-color: #fff;
}

.st-news01 .owl-carousel .owl-nav .owl-next span {
  display: none;
}

.st-news01 .owl-theme .owl-dots {
  padding-top: 15px;
}

@media (max-width: 575px) {
  .st-news01 .owl-theme .owl-dots {
    padding-top: 5px;
  }
}

.st-news01 .owl-theme .owl-dots .owl-dot span {
  transition: all ease 0.3s;
}

.st-news01 .owl-theme .owl-dots .owl-dot:hover span {
  background: #ed8b00;
}

.st-news01 .owl-theme .owl-dots .owl-dot.active span {
  background: #ed8b00;
}

.sp-model-cnt.corpartner .info {
  padding-right: 0 !important;
  padding-left: 0 !important;
  width: 100%;
  max-width: 1194px;
  margin: 0 auto;
}

.sp-model-cnt.corpartner ul {
  display: flex;
  flex-wrap: wrap;
}

.sp-model-cnt.corpartner ul li {
  width: 50%;
  padding-right: 50px;
  padding-top: 0;
}

.sp-model-cnt.corpartner ul li:nth-child(even) {
  padding-right: 0;
}

.sp-model-cnt.corpartner .info ul li p:last-child {
  border: none;
}

.sp-model-cnt.corpartner .info ul li h3 {
  padding-top: 30px;
}

.sp-model-cnt.corpartner .info ul li:nth-child(n + 3) h3 {
  border-top: 1px solid #c7c7c7;
}

@media (max-width: 1350px) {
  .sp-model-cnt.corpartner .info {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 1100px) {
  .sp-model-cnt.corpartner .info {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}

@media (max-width: 800px) {
  .sp-model-cnt.corpartner ul li {
    width: 100%;
    padding-right: 0;
  }

  .sp-model-cnt.corpartner .info ul li:nth-child(n + 2) h3 {
    border-top: 1px solid #c7c7c7;
  }
}

@media (max-width: 767px) {
  .sp-model-cnt.corpartner .info {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
}

.st-news01 .owl-carousel .ct-card {
  padding-bottom: 40px;
}

.st-news01 .ct-card__details--body {
  padding: 1.5em 1.5em;
}

.st-news01 .ct-card__details--body h3.card-title {
  font-size: 1.1em;
}

.st-news01 .owl-carousel .ct-card .btn {
  left: 1.8em;
  bottom: 5px;
}

@media (max-width: 767px) {
  .path-strategic-partnerships .btn-section {
    text-align: center;
  }
}

.path-strategic-partnerships .uai.uli {
  right: 10px !important;
  left: auto !important;
}

.sp-model-cnt ul.hww-cnt li span {
  padding: 0;
}

.non-bg-icon01 img {
  width: 30px;
  margin-top: 18px;
}

/* SOF partner page banner css */
.st-banner.inner-banner {
  height: auto;
  padding: 30px 0;
  min-height: 1px;
}

.st-banner.inner-banner .hero-container {
  overflow: hidden;
}

.st-banner.inner-banner .hero-container .text {
  background: #ed8b00;
  margin-bottom: 0;
  margin-right: -7%;
  padding: 2em 3.5em;
  height: 60vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transform: translateY(700px);
  animation: slideUp 0.5s ease-in-out forwards 0.6s;
  animation-delay: 1.4s;
}

.st-banner.inner-banner .hero-container .text .inr-blk {
  padding-right: 16%;
}

.st-banner.inner-banner .hero-container label {
  color: #f8d099;
  font-size: 1.4em;
  font-weight: 900;
}

.st-banner.inner-banner .hero-container .text .cnt {
  padding-left: 30px;
  position: relative;
}

.st-banner.inner-banner .hero-container .text .cnt:before {
  background: #f7d099;
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.st-banner.inner-banner .hero-container h2 {
  color: #fff;
  animation: none;
  transform: none;
}

.st-banner.inner-banner .hero-container p {
  color: #fff;
  animation: none;
  transform: none;
}

.st-banner.inner-banner .hero-container .hero-image {
  height: 52vh;
  z-index: 3;
}

.st-banner.inner-banner .hero-container .hero-image img {
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.3);
}

@media (max-width: 800px) {
  .st-banner.inner-banner .hero-container .text {
    padding: 1em 2em;
    height: 35vh;
  }

  .st-banner.inner-banner .hero-container .hero-image {
    height: 30vh;
  }
}

@media (max-width: 767px) {
  .st-banner.inner-banner {
    height: 570px;
    padding: 10px 0;
    min-height: 1px;
  }

.lang-ar .st-banner .hero-container .text {
  margin: 0 5%;
  }

  .st-banner.inner-banner .hero-container .text {
    width: 100%;
    margin: 0 auto;
    max-width: 90%;
    height: 50vh;
    z-index: 4;
  }

  .st-banner.inner-banner .hero-container .text .inr-blk {
    padding: 0;
  }

  .st-banner.inner-banner .hero-container .hero-image {
    height: 100vh;
  }
}

@media (max-width: 575px) {
  .st-banner.inner-banner {
    height: 520px;
  }

  .st-banner.inner-banner .hero-container .hero-image {
    height: calc(100vh - 200px);
  }

  .st-banner.inner-banner .hero-container .text {
    height: 34vh;
  }
}

/* EOF partner page banner css */

.page-node-type-ct-strategic-partners .container-fluid {
  padding: 0;
}

.page-node-type-ct-strategic-partners .tab-inner-content {
  padding-bottom: 20px;
}

.path-strategic-partnerships .ct-card__video a {
  max-height: 100%;
}

p.learn.btn-section.text-center.m-b-20 {
  margin-bottom: 20px;
}

p.new-align {
  text-align: left;
}

h4.new-align-header {
  padding-bottom: 5px;
  text-align: center;
  font-size: 1.2em;
}

.displayCard__details--body a.btn {
  bottom: 25px;
}

.full-wrap {
  padding: 50px 0;
  background-color: #f5f5f0;
}

@media (min-width: 1091px) {
  .path-strategic-partnerships .st-nav01 li a {
    flex-direction: column;
    text-align: center;
  }
}

.sp-model-cnt.how-we-work {
  padding: 70px 30px;
}

@media (max-width: 767px) {
  .view-strategic-partnership-news-updates .ct-card {
    margin: 1.3em auto;
  }
}

@media (max-width: 420px) {
  .path-strategic-partnerships .st-nav01 li a {
    gap: 10px;
  }

  .path-strategic-partnerships .st-nav01 li a span {
    margin-left: 0;
  }
}

.our-partners .lead {
  margin-top: 30px;
  font-weight: 500;
}

.our-partners ul {
  margin-left: 20px;
}

.our-partners ul li {
  list-style: disc;
  margin-top: 20px;
}

.lang-ar .st-banner .hero-container .text {
    margin-right: auto;
    margin-left: -5%;
}

.lang-ar .path-strategic-partnerships .st-nav01 li a {
    padding-right: initial;
    padding-left: 0;
}

.lang-ar .path-strategic-partnerships .st-nav01 li a span {
    margin-left: auto;
    margin-right: 1em;
}

.lang-ar p.new-align {
    text-align: right;
}

@media (max-width:1090px){
  .lang-ar.path-strategic-partnerships .st-nav01 li a span {
    margin-left: auto;
    margin-right: 1em;
  }
}

.lang-ar .sp-model-cnt .info ul li {
  padding: 30px 100px 0 0;
}

.lang-ar .sp-model-cnt.corpartner ul li {
  padding-right: 100px;
  padding-left: 50px;
}

.lang-ar .sp-model-cnt .info ul li span {
  left: auto;
  right: 0;
}

.lang-ar .sp-model-cnt.cvl-info-cnt .info ul li {
  padding: 0 100px 0 50px;
}

.lang-ar .sp-model-cnt.partnership-model .info p {
  padding-left: 0;
  padding-right: 60px;
}

.lang-ar .sp-model-cnt.partnership-model .info p label {
  left: auto;
  right: 0;
}

.lang-ar .doc-info-sec ul.list li a {
  padding: 0 65px 0 0;
}

.lang-ar .doc-info-sec ul.list li a img {
  left: auto;
  right: 0;
}

.lang-ar .sp-model-cnt.corpartner .mp-instructions-ui li {
  padding: 0 20px 0 0 !important;
}

.lang-ar .sp-model-cnt.corpartner .mp-instructions-ui li:before {
  left: auto;
  right: 0;
}

.lang-ar .st-banner.inner-banner .hero-container .text .inr-blk {
  padding-right: initial;
  padding-left: 16%;
}

.lang-ar .st-banner.inner-banner .hero-container .text .cnt {
  padding-left: initial;
  padding-right: 30px
}

.lang-ar .st-banner.inner-banner .hero-container .text .cnt:before {
  left: auto;
  right: 0;
}

@media (max-width: 767px) {
  .lang-ar .st-banner .hero-container .text {
    margin-right: auto;
    margin-left: auto;
  }
}