/* nav */
nav {
  /* position: fixed; */
  position: absolute;
  z-index: 99;
  width: 100%;
  background: #fff;
  padding-top: 2px;

}
nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo {
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
}
.wrapper .logo img {
  width: 166px;
  height: 66px;
  margin-bottom: 6px;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
}
.nav-links li a {
  color: #6c113b;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover {
  /* background: #28282b; */
  color: #46c0f0;
  padding-top: 0px;
  padding-bottom: 0px;
}
.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: #fff;
  width: fit-content;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 16px 10px rgba(0, 0, 0, 0.15);
  text-align: right;
  padding: 0px 10px;
  z-index: 1500;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
  color: #000;
  font-weight: bold;
}
.drop-menu li a:hover {
  transform: translateX(-5px);
}
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
  z-index: 1555;
  /* transition-delay: 1.5s; */
}
.mega-box .content {
  background: #fff;

  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 16px 10px rgba(0, 0, 0, 0.15);
}
.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
  color: #000;
}
.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.content .row .mega-links {
  margin-left: -40px;
  border-radius: 1px solid rgba(255, 255, 255, 0.09);
  text-align: right;
}
.row .mega-links li {
  padding: 0 20px;
}
.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: black;
  font-size: 19px;
  display: block;
}
.row .mega-links li a:hover {
  color: #46c0f0;
  transform: translateX(-5px);
}
.wrapper .btn {
  color: #6c113b;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}
/*Media Query*/
@media screen and (max-width: 1010px) {
  .wrapper .logo {
    font-size: 30px;
  }
  .wrapper .btn {
    display: block;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    z-index: 9;
  }
  /*Custom Scroll bar*/
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }
  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  /* nav {
    position: fixed;
    position: absolute;
    z-index: 99;
    width: 100%;
    background: #fff;
    padding-top: 2px;

  } */
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0px 10px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  .nav-links .drop-menu.show {
    max-height: unset;
  }

  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #6c113b;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
    /* background: #2b2828; */
    color: #46c0f0;
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .drop-menu li a:hover {
    color: #46c0f0;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li {
    margin: 0;
  }
  .content .row header {
    font-size: 19px;
  }

  .upper-bar {
    text-align-last: center;
  }
}
nav input {
  display: none;
}

.italic-with-space {
  margin-right: 10px; /* Adjust the value as per your preference */
}
/* nav */

.call {
  position: fixed;
  margin: 60px auto;
  width: 60px;
  height: 60px;
  bottom: 100px;
  right: 40px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  animation: signal 1s infinite;
  z-index: 999999999;
}

.call img {
  font-size: 50px;
}


.beat-img {
  animation: beat 1s infinite;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp {
  position: fixed;
  margin: 60px auto;
  width: 60px;
  height: 60px;
  bottom: 23px;
  right: 40px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999999999;
}

.whatsapp img {
  font-size: 50px;
}

/* 10 */
.site-blocks-cover {
  background-size: 580px;
  background-repeat: no-repeat;
  background-position: right;
  /* background-attachment: fixed; */
  position: relative;
}
.site-blocks-cover.overlay {
  position: relative;
}
.site-blocks-cover.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.site-blocks-cover,
.site-blocks-cover > .container > .row {
  min-height: 600px;
  height: calc(100vh);
}
.site-blocks-cover h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  font-family: "Rubik", sans-serif;
    width: 80%;
}
@media (max-width: 991.98px) {
  .site-blocks-cover h1 {
    font-size: 3.5rem;
  }
}
.site-blocks-cover .sub-text {
  font-size: 1.5rem;
  color: gray;
  font-weight: 300;
}
@media (max-width: 991.98px) {
  .site-blocks-cover .sub-text {
    font-size: 0.8rem;
    color: #000;
  }
}
.site-blocks-cover .img-wrap {
  position: absolute;
  z-index: -1;
  width: calc(100% - 50%);
  top: 0;
  height: 100%;
  z-index: 2;
  right: 50%;
  min-height: 600px;
  overflow: hidden;
  border-bottom-right-radius: 200px;
}
@media (max-width: 991.98px) {
  .site-blocks-cover .img-wrap {
    width: 100%;
    right: 0%;
    top: 0;
  }
  .site-blocks-cover .img-wrap .hero-slider:before {
    position: absolute;
    content: "";
    background: #fff;
    opacity: 0.5;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.site-blocks-cover .img-wrap .slide {
  height: 100vh;
  position: relative;
}
.site-blocks-cover .img-wrap .slide img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.site-blocks-cover .intro {
  z-index: 3;
  position: relative;
}
.site-blocks-cover .intro .heading {
  margin-left: -150px;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .site-blocks-cover .intro .heading {
    margin-left: 0;
  }

}
.site-blocks-cover .intro .text {
  padding-left: 50px;
}
@media (max-width: 991.98px) {
  .site-blocks-cover .intro .text {
    padding-left: 0;
  }
}

.site-menu-toggle .menu-text {
  position: relative;
  top: -6px;
  text-transform: uppercase;
}

.hero-slider .owl-nav {
  position: absolute;
  bottom: 120px;
  right: 50px;
  z-index: 100;
}
.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  /* background: #007bff; */
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.hero-slider .owl-nav .owl-prev span,
.hero-slider .owl-nav .owl-next span {
  color: #fff;
  font-size: 30px;
}
.hero-slider .owl-nav .owl-prev:active,
.hero-slider .owl-nav .owl-prev:focus,
.hero-slider .owl-nav .owl-next:active,
.hero-slider .owl-nav .owl-next:focus {
  outline: none;
}

.btn-pill {
  border-radius: 30px;
  padding: 15px 30px;
  border-color: #fff;
  color: #46c0f0;
}
.btn-pill:hover {
  background: #fff;
  border-color: #46c0f0;
  color: #7f2274;
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
  position: relative;
  width: 100%;
  padding: 90px 10px 90px 0px;
  text-align: right;
  font-family: "Rubik", sans-serif;
  background: linear-gradient(rgba(35, 43, 56, 0.9), rgba(35, 43, 56, 0.9)),
    url(../img/p12.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.service .section-header p {
  font-size: 3rem;
  color: #fff;
  font-family: "Rubik", sans-serif;
}

.service .section-header h2 {
  color: #7f2274;
  font-weight: 600;
  font-size: 20px;
}

.service .service-item {
  position: relative;
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 45px;
  transition: 0.3s;
}

.service .service-item:hover {
  background-image: linear-gradient(90deg, #a31957c9 29%, #46c0f0c9 71%);
  color: #ffffff;
  border-radius: 10px;
}

.service-item .service-text:hover p {
  color: white;
}

.service .service-icon {
  position: relative;
  width: 60px;
  margin-left: 30px;
}

.service .service-icon i {
  position: relative;
  display: block;
  color: #46c0f0c9;
  font-size: 45px;
  line-height: 60px;
  width: 50px;
  margin-top: 5px;
}

.service .service-text {
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}

.service .service-text::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  top: 5px;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.service .service-text::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 40px;
  top: calc(50% - 20px);
  left: -1px;
  background: #7f2274;
}

.service .service-text::after:hover {
  background: #f2f2f2;
}

.service .service-text h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Rubik", sans-serif;
  color: #fff;
}

.service .service-text p {
  margin: 0;
  text-align: right;
  color: #fff;
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
  position: relative;
  width: 100%;
  padding: 150px 0 15px 0;
  text-align: right;
  background-image: url(../img/WhiteSectionBg_.png);
  background-repeat: no-repeat; /* Prevent the image from repeating */
  /* background-size: cover;  */
  background-position: left;
}

.about .section-header {
  margin-bottom: 30px;
  margin-left: 0;
}

.about .section-header p {
  font-size: 3rem;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.about .section-header h2 {
  color: #7f2274;
  font-weight: 600;
  font-size: 20px;
}

.about-tab a {
  font-size: 1.5rem;
}

.tab-content {
  font-size: 1.3rem;
}

.about img {
  width: 500px;
}

.about .about-img {
  width: 100%;
  height: 50vh;
}

.about .about-tab {
  width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
  padding: 8px;
  font-weight: 600;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
  color: #7f2274;
  padding-bottom: 7px;
  border-bottom: 3px solid #007bff;
}

.about .about-tab .tab-content {
  padding: 15px 0 0 0;
  background: transparent;
}

.about .about-tab .tab-content .container {
  padding: 0;
}

@media (max-width: 991.98px) {
  .about .section-header {
    margin-top: 30px;
  }

  .about .about-img {
    display: none;
  }
}

/*******************************/
/********** Tech **********/
/*****************************/
a,
a:active,
a:focus {
  color: #6f6f6f;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 60px 0;
  /* min-height: 100vh;*/
}

.sec-title-tech {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.sec-title-tech .title {
  position: relative;
  text-align: right;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #7f2274;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title-tech h2 {
  position: relative;
  text-align: right;
  display: block;
  font-size: 40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom: 18px;
}

.sec-title-tech h2:before {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 3px;
  background-color: #d1d2d6;
}

.sec-title-tech .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title-tech.light h2 {
  color: #ffffff;
}

.sec-title-tech.text-center h2:before {
  left: 50%;
  margin-left: -25px;
}

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #9b0000;
  font-weight: 400;
  padding-left: 60px;
  margin-bottom: 12px;
  list-style-type: none;
  text-align: center;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  right: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #059700;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: #44bce2;
}

.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #46c0f0;
}

.btn-style-one:hover {
  background-color: #6b7eb4;
  color: #ffffff;
}

.tech-section {
  position: relative;
  padding: 120px 0 70px;
}

.tech-section .sec-title {
  margin-bottom: 45px;
}

.tech-section .content-column {
  position: relative;
  margin-bottom: 50px;
}

.tech-section .content-column .inner-column {
  position: relative;
  padding-left: 30px;
}

.tech-section .text {
  text-align: right;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.tech-section .list-style-one {
  margin-bottom: 45px;
}

.tech-section .btn-box {
  position: relative;
}

.tech-section .btn-box a {
  padding: 15px 50px;
}

.tech-section .image-column {
  position: relative;
}

.tech-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
}

.tech-section .image-column .inner-column {
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}

.tech-section .image-column .inner-column:before {
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
}

@media (max-width: 991.98px) {
  .tech-section .image-column .inner-column:before {
    position: absolute;
    left: -75px;
    top: 65px;
    height: 170px;
    width: 170px;
    background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
    content: "";
  }

  /* .about .about-img{
            display: none;
          } */
}

.tech-section .image-column .image-1 {
  position: relative;
}

.tech-section .image-column .image-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.tech-section .image-column .image-2 img,
.tech-section .image-column .image-1 img {
  box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
}

.tech-section .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
}

.tech-section .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*******************************/
/********** shortcut CSS **********/
/*****************************/
.col-shortcut-one {
  background-color: #7f2274;
}
.col-shortcut-one h1 {
  color: white;
}
.col-shortcut-one h6 {
  color: white;
  margin-top: 8%;
}

.shortcut-h1 {
  position: relative;
  text-align: center;
  font-family: "Rubik", sans-serif;
}
.shortcut-h1::after {
  content: "";
  position: absolute;
  bottom: -13px; /* Adjust the value to control the distance of the line from the heading */
  left: 50%; /* Move the line to the center */
  transform: translateX(-50%); /* Adjust to center the line */
  width: 10%;
  height: 3px; /* Adjust the height of the line */
  background-color: white; /* Change the color of the line */
}

.btn-shortcut {
  color: #fff;
  background-color: transparent;
  margin-bottom: 0px;
  margin-top: 8%;
  font-weight: 700;
  border-radius: 52px;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  text-transform: uppercase;
  border: 2px solid white;
  margin-bottom: 9%;
  display: inline-block;
  width: 17%;
  clear: both;
}
.btn-shortcut:hover {
  background-color: white;
  color: #7f2274;
  border: 2px solid white;
}

.shortcut i {
  margin-top: 10px;
  font-size: 50px;
  line-height: 60px;
  color: #ffffff;
  margin: 50px 0px 0px 0px;
}

.btn-shortcut:focus {
  outline: none;
}

.col-shortcut-two {
  background-color: #6b7eb4;
}
.col-shortcut-two h1 {
  color: white;
}
.col-shortcut-two h6 {
  color: white;
  margin-top: 8%;
}

.col-shortcut-three {
  background-color: #46c0f0;
}
.col-shortcut-three h1 {
  color: white;
}
.col-shortcut-three h6 {
  color: white;
  margin-top: 8%;
}

/*******************************/
/********** Causes CSS *********/
/*******************************/
/* donate */
.causes .section-header {
  padding: 30px 0;
}

.causes .section-header p {
  font-size: 3rem;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.causes .section-header h2 {
  color: #7f2274;
  font-weight: 600;
  font-size: 20px;
}
.container {
  direction: rtl;
}

.container .clients {
  align-items: center;
  justify-items: center;
  max-width: 1024px;
  list-style: none;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* .clients:hover img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  }
  .clients:hover img:not(:hover)  {
  filter: blur(2px);
  -webkit-filter: blur(2px);
  } */
.clients:hover {
  -webkit-transform: translateY(-0.3rem);
  transform: translateY(-0.3rem);
}

@media (min-width: 1024px) {
  .clients {
    grid-template-columns: auto auto auto auto;
  }
}

/* --- Images (gray logo) --- */
.clients img {
  -webkit-filter: grayscale(100%) brightness(10%) contrast(10%);
  filter: grayscale(100%) brightness(10%) contrast(10%);
}

.clients img:hover {
  background: none;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.clients:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* .slide img {
          width: 100px;
          height: 100px;

} */

.slide-track {
  width: 100%;
  gap: 9em;
}

.slider {
  margin-top: 1px;

  padding: 8em 2em;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-1000%);
  }
}

/* Slider */
/* Logo Slider */

.logo-slider {
  background: white;
  -webkit-box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 70%;
  padding: 90px 0;
}

.logo-slider::before,
.logo-slider::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(white),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 175px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.logo-slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.logo-slider::before {
  left: 0;
  top: 0;
}

.logo-slider .logo-slide-track {
  -webkit-animation: logo-scroll 60s linear infinite;
  animation: logo-scroll 60s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(250px * 14);
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

.logo-slider .slide {
  height: 150px;
  width: 250px;
  padding: 20px;
}

@-webkit-keyframes logo-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes logo-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

/* .slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
} */

/* @keyframes scroll {
  0% {
    transform: translateX(0);
 }
  100% {
    transform: translateX(calc(-250px * 7));
 }
}
.entando-partners .slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
}
.entando-partners .slider::before, .entando-partners .slider::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.entando-partners .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.entando-partners .slider::before {
  left: 0;
  top: 0;
}
.entando-partners .slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.entando-partners .slider .slide {
  height: 100px;
  width: 250px;
} */

/* .partners-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.slider-container {
  display: flex;
  white-space: nowrap;
  width: 200%;
  animation: slide 12s linear infinite;
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  width: calc(100% / 4);
}
.partner-logo img {
  display: block;
  max-width: 90%;
  height: auto;
  background: none;
  border: none;
}
@media (max-width: 767px) {
  .partner-logo {
      width: calc(125% / 2);
  }
  .partner-logo img {
      max-width: 100%;
  }
}
@keyframes slide {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(calc(-100% / 2));
  }
} */

/* .causes {
  position: relative;
  width: 100%;
  padding: 50px 0 100px 0;
  background-image: url(/images/pngegg-heart.png);
  background-size: 284px;
  background-repeat: no-repeat;
  background-position: round;

}

.causes .section-header {
  padding: 30px 0;
  }


  .causes .section-header p {
    font-size: 3rem;
    color: #000;
    font-family: 'Rubik', sans-serif;
    }


    .causes .section-header h2 {
      color: #a31958;
      font-weight: 600;
      font-size: 20px;

      }

.causes .causes-carousel {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}

.causes .causes-item {
  margin: 0 15px;
  overflow: hidden;
  background: #f3f6ff;
}

.causes .causes-img {
  overflow: hidden;
}

.causes .causes-img img {
  width: 100%;
  transition: .3s;
}

.causes .causes-item:hover img {
  transform: scale(1.1);
}


.causes .causes-progress {
  width: 100%;
  margin-top: 32px;
  padding: 30px 30px 20px 30px;
}

.causes .progress {
  height: 10px;
  border-radius: 0;
  background: #dddddd;
  overflow: visible;
}

.causes .progress .progress-bar {
  position: relative;
  width: 0px;
  background: #FDBE33;
  overflow: visible;
  transition: 2s;
}

.causes .progress-bar span {
  position: absolute;
  top: -32px;
  right: 0;
  height: 23px;
  display: inline-block;
  padding: 2px 6px;
  background: #FDBE33;
  color: #20212B;
}

.causes .progress-bar span::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 23px;
  left: calc(50% - 6px);
  border: 6px solid;
  border-color: #FDBE33 transparent transparent transparent;
}

.causes .progress-text {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
}

.causes .progress-text p {
  margin: 0;
}

.causes .causes-text {
  padding: 20px 30px;
  text-align: right;
}

.causes .causes-text h3 {
  font-size: 22px;
  font-weight: 700;
}

.causes .causes-text p {
  margin: 0;
}

.causes .causes-btn {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}

.causes .causes-btn .btn {
  padding: 10px 0;
  width: 50%;
}

.causes .causes-btn .btn:last-child {
  color: #20212B;

  background: #46c0f0;
  font-weight: bold;
}

.causes .causes-btn .btn:last-child:hover {
  color: #ffffff;
}

.causes .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.causes .owl-carousel .owl-nav .owl-prev,
.causes .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.causes .owl-carousel .owl-nav .owl-prev {
  left: 0;

}

.causes .owl-carousel .owl-nav .owl-next {
  right: 0;
} */

/* .causes .owl-prev:before,
.causes .owl-next:before{
    content: "\f177";
    font-family: "fontawesome";
    font-size: 100px;
    font-weight: 900;
    color: #ddd;
    position: absolute;
    top: 0;
    left: 25%;
}
.causes .owl-next:before{
    content: "\f178";
}
.causes .owl-next:after{
    content: "\f177";
    font-size: 40px;
    color: #ddd;
    position: absolute;
    top: 0;
    left: -10px;
} */

/*******************************/
/*********** joinTeam CSS **********/
/*******************************/
.joinTeamSection {
  padding-top: 60px;
  padding-bottom: 60px;
}

.joinTeamSection .section-header p {
  font-size: 3rem;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.joinTeamSection .section-header h2 {
  color: #7f2274;
  font-weight: 600;
  font-size: 20px;
}

.joinTeamSection .properties-apps-area {
  max-width: 100%;
  margin: auto;
  /* min-height: 50vh; */
}
.properties-apps-area {
  overflow: hidden;
}

.joinTeamSection .properties-apps-content {
  top: 30%;
  padding: 2rem;
  padding-right: 5%;
  width: auto;
  z-index: 99;
  background: rgba(255, 255, 255, 0.75);
  position: relative;
  border-left: 6px solid #6c757d;
  float: right;
  text-align: right;
  margin-top: 2em;
  margin-bottom: 2em;
  backdrop-filter: blur(6px);
  padding-left: 4em;
}

.joinTeamSection h1 {
  color: #7f2274;
}

.properties-apps-area {
  overflow: hidden;
}

.section-title--three .heading-title {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.section-title--three .heading-title::after {
  position: absolute;
  content: "";
  left: 107px;
  bottom: 0;
  height: 4px;
  width: 90px;
  background: #46c0f0;
}

@media (max-width: 767px) {
  .section-title--three .heading-title::after {
    left: 40px;
    background-image: none;
  }
}

.section-title--three .heading-title.center::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* CSS */
.button-46 {
  align-items: center;
  background-color: #46c0f0;
  /* border: 1px solid #DFDFDF; */
  border-radius: 16px;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: flex;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  line-height: 28px;
  max-width: 100%;
  padding: 14px 22px;
  text-decoration: none;
  transition: all 0.2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.button-46:active,
.button-46:hover {
  outline: 0;
}

.button-46:hover {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.19);
}

@media (min-width: 768px) {
  .button-46 {
    font-size: 20px;
    min-width: 200px;
    padding: 14px 16px;
  }
}

.button-44 {
  align-items: center;
  background-color: #ffffff;
  /* border: 1px solid #DFDFDF; */
  border-radius: 16px;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: flex;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  line-height: 28px;
  max-width: 100%;
  padding: 14px 22px;
  text-decoration: none;
  transition: all 0.2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  font-family: "Rubik", sans-serif;
}

/* .button-44:active,
    .button-44:hover {
      outline: 0;
    } */

/* .button-44:hover {
      background-color: #FFFFFF;
      border-color: rgba(0, 0, 0, 0.19);
    } */

@media (min-width: 768px) {
  .button-44 {
    font-size: 20px;
    min-width: 200px;
    padding: 14px 16px;
  }
}

/*******************************/
/*********** Quote CSS **********/
/*******************************/
section.testimonial {
  background: #f6f4ef;
}

section .inner {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
section.testimonial .inner {
  padding-top: 50px;
  text-align: left;
}

.team #quote-wrapper {
  position: relative;
  min-height: 358px;
  padding-top: 40px;
}

.team blockquote {
  font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666;
  font-size: 28px;
  line-height: 1.3em;
  padding-top: 1em;
  position: relative;
  z-index: 1;
  margin-bottom: 0.75em;
  text-align: justify;
}
q,
blockquote {
  quotes: none;
}
.team cite {
  font-size: 18px;
  color: #595756;
  font-weight: bold;
  margin: 2em 0;
  margin-left: 38px;
}
#quote-quote a {
  color: #020202;
  text-decoration: none;
}
#quote-quote a:hover {
  color: #020202;
  text-decoration: underline;
}

.team #quote-wrapper.lisagor .portrait {
  background-repeat: no-repeat;
  background-image: url("http://www.getballpark.com/images/home/testimonials/lisagor.jpg");
  background-size: 313px 329px;
  background-position: center center;
  width: 313px;
  height: 329px;
}

.team #quote-wrapper.cederholm .portrait {
  background-repeat: no-repeat;
  background-image: url("http://www.getballpark.com/images/home/testimonials/cederholm.jpg");
  background-size: 275px 305px;
  background-position: center center;
  width: 275px;
  height: 305px;
}

.team blockquote::before {
  content: "“";
  color: #e0ddd7;
  font-family: georgia, serif;
  font-size: 6em;
  position: absolute;
  left: -0.25em;
  top: 0.35em;
  z-index: -10;
}

@media screen and (min-width: 750px) {
  .team #quote-wrapper {
    padding-left: 360px;
  }

  .team #quote-wrapper .portrait {
    position: absolute;
    left: 10px;
    bottom: 0;
  }
}

@media screen and (max-width: 750px) {
  .team .inner {
    padding-left: 0;
  }

  .team .quote {
    max-width: 75%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .team .portrait {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    background-size: 100% auto !important;
    background-position: center bottom !important;
  }
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
  /* background-image: url(/images/pngegg-team.png); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: round;
  /* background-attachment: fixed; */
}

.team .section-header p {
  font-size: 3rem;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.team .section-header h2 {
  color: #7f2274;
  font-weight: 600;
  font-size: 20px;
}

.team .team-item {
  position: relative;
  margin-bottom: 35px;
}

.team .team-img {
  position: relative;
  overflow: hidden;
}

.team .team-img img {
  width: 100%;
  /* transform: scale(1.1); */
  margin-bottom: -15px;
  transition: 0.3s;
}

.team .team-item:hover img {
  margin: -15px 0 0 0;
}

.team .team-text {
  position: absolute;
  width: calc(100% - 40px);
  height: 96px;
  bottom: 0;
  left: 20px;
  padding: 22px 0;
  text-align: center;
  background: #ffffff;
  transition: 0.3s;
  overflow: hidden;
}

.team .team-text h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team .team-text p {
  margin-bottom: 20px;
}

.team .team-social {
  position: relative;
  font-size: 0;
}

.team .team-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 3px;
  padding: 5px 0;
  text-align: center;
  font-size: 16px;
  color: #7f2274;
  border: 2px solid #007bff;
  transition: 0.3s;
  border-radius: 27px;
}

.team .team-social a:hover {
  color: #fff;
  background: #007bff;
}

.team .team-item:hover .team-text {
  height: 160px;
}

/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
  position: relative;
  width: 100%;
  /* min-height: 400px; */
  margin: 45px 0;
  display: flex;
  align-items: center;
  /* background: rgba(0, 0, 0, .5); */
  /* background-image: url("/images/empty-hospital-room-with-nobody-it-having-single-bed.jpg"); */
  background-size: cover;
}

.facts .facts-item {
  display: flex;
  flex-direction: row;
  margin: 25px 0;
}

@media (max-width: 767px) {
  .facts .facts-item {
    justify-content: center;
  }
}

.facts .facts-item i {
  margin-top: 10px;
  font-size: 60px;
  line-height: 60px;
  color: #7f2274;
}

.facts .facts-text {
  padding-left: 20px;
}

.facts .facts-text h3 {
  position: relative;
  display: inline-block;
  color: #7f2274;
  font-size: 45px;
  font-weight: 700;
}

.facts .facts-text h3::after {
  position: absolute;
  top: 0px;
  color: #7f2274;
  font-size: 25px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
  content: "\f067";
  right: -25px;
}

.facts .facts-text h3.facts-dollar::after {
  content: "\f155";
  right: -18px;
}

.facts .facts-text p {
  color: #7f2274;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/*  */

.demo {
  padding: 49px 0 86px 0;
  background-color: #f1f7fa;
}
.demo .container {
  background-image: linear-gradient(90deg, #a31957c9 29%, #46c0f0c9 71%);
}

.demo .section-header {
  margin-bottom: 30px;
  margin-left: 0;
}

.demo .section-header p {
  font-size: 3rem;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.demo .section-header h2 {
  color: #7f2274;
  font-weight: 600;
  font-size: 20px;
}

.testimonial .pic {
  width: 22%;
  padding: 20px 0;
  margin: 0 6% 0 2%;
  float: left;
  position: relative;
  z-index: 1;
}
.testimonial .pic:before,
.testimonial .pic:after {
  content: "";
  width: 130px;
  height: 150px;
  background: #fff;
  position: absolute;
  z-index: -1;
}
.testimonial .pic:before {
  top: 0;
  right: -20px;
}
.testimonial .pic:after {
  bottom: 0;
  left: -20px;
}
.testimonial .pic img {
  width: 100%;
  height: auto;
  border: 3px solid #e1c37d;
}
.testimonial .testimonial-content {
  width: 70%;
  float: right;
}
.testimonial .title {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  padding-top: 65px;
  padding-right: 15px;
  text-align: right;
}
.testimonial .post {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 27px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 25px;
  padding-right: 15px;
  text-align: right;
}
.testimonial .description {
  font-size: 16px;
  color: #fff;
  padding: 0 15px;
  margin: 0;
  position: relative;
}
.testimonial .description:before,
.testimonial .description:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 17px;
  color: #e1c37d;
  position: relative;
}
.testimonial .description:before {
  content: "\f10d";
  margin-right: 5px;
  top: 0;
  left: 0;
}
.testimonial .description:after {
  content: "\f10e";
  margin-left: 5px;
  position: relative;
  bottom: 0;
  right: 0;
}
.owl-theme .owl-controls {
  width: 70%;
  margin: 0;
  text-align: left;
  position: absolute;
  bottom: 0;
  right: 0;
}
.owl-theme .owl-controls .owl-buttons div {
  width: 70px;
  height: 90px;
  line-height: 90px;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  position: relative;
}
.owl-prev:before,
.owl-next:before {
  /* content: "\f177"; */
  font-family: "fontawesome";
  font-size: 45px;
  font-weight: 900;
  color: #ddd;
  position: absolute;
  top: 0;
  left: 25%;
}

.owl-next:after {
  /* content: " / "; */
  font-size: 40px;
  color: #ddd;
  position: absolute;
  top: 0;
  left: -10px;
}
@media only screen and (max-width: 990px) {
  .testimonial {
    text-align: center;
  }
  .testimonial .pic {
    width: 200px;
    margin: 0 auto;
    float: none;
  }
  .testimonial .pic:before,
  .testimonial .pic:after {
    width: 80px;
    height: 100px;
  }
  .testimonial .testimonial-content {
    width: 100%;
    float: none;
  }
  .testimonial .title {
    padding: 15px 0 0 0;
    text-align: center;
  }
  .testimonial .post {
    padding: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  .owl-theme .owl-controls {
    width: 100%;
    position: static;
    text-align: center;
  }
  .owl-theme .owl-controls .owl-buttons div {
    height: 50px;
    line-height: 50px;
  }
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
/* .news-section h1,
h2,
h3,
h4,
h5,
h6 {}
.news-section a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

.news-section a,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.news-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.news-section img {
max-width: 100%;
height: auto;
}
.news-section span, a, a:hover {
display: inline-block;
text-decoration: none;
color: inherit;
} */

.news-section {
  padding: 90px 0;
  direction: rtl;
  text-align: right;
  background-color: #f1f7fa;
}
.section-header {
  padding: 40px 30px;
}

.news-section .section-header p {
  font-size: 3rem;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.news-section .section-header h2 {
  color: #7f2274;
  font-weight: 600;
  font-size: 20px;
}

.news-content {
  padding: 40px 30px;
}

.news-item {
  box-shadow: 0 0 15px #ededed;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 40px;
}

.news-item:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0px 15px 15px 0px #edeaea;
  box-shadow: 0px 15px 15px 0px #edeaea;
}

.newsimg img {
  width: 100%;
}

.news_postdate {
  color: #ff3a46;
}

.news-content h3 {
  color: #233d63;
  font-size: 22px;
  margin-bottom: 25px;
}

.news_authorinfo {
  border: transparent;
  padding: 14px 0px 0px 0px;
  background: transparent;
  font-size: 14px;
}

.news_authorinfo i {
  margin-right: 6px;
}

.news_authorinfo span:last-child {
  float: right;
}

.news_authorinfo a {
  color: #666;
}

.center .news-content {
  background: linear-gradient(-120deg, #8758ff 0, #614ef9 100%);
}

.center .news-content h3,
.center .news-content p {
  color: #fff;
}

.center .news_authorinfo a,
.center .news_authorinfo i {
  color: #fff;
}

.news-slide.owl-carousel .col-lg-4 {
  max-width: 100%;
  padding: 0;
}

.news-section .owl-theme .owl-nav [class*="owl-"] {
  color: #333;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #fff;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid #ddd;
}

.small-title {
  font-size: 20px;
  text-transform: capitalize;
  color: #ff3a46;
  margin-bottom: 10px;
  margin-top: 0px;
  font-weight: 600;
}
.big-title {
  letter-spacing: 0px;
  padding-bottom: 13px;
  position: relative;
  color: #233d63;
  line-height: 50px;
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 600;
}
.main-title-box {
  margin-bottom: 60px;
}

/* .blog {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

.blog .section-header p {
  font-size: 3rem;
  color: #000;
  font-family: 'Rubik', sans-serif;
  }


  .blog .section-header h2 {
    color: #a31958;
    font-weight: 600;
    font-size: 20px;

    }

.blog .blog-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  background: #f3f6ff;
}

.blog .blog-img {
  width: 100%;
}

.blog .blog-img img {
  width: 100%;
}

.blog .blog-text {
  padding: 30px 30px 15px 30px;
}

.blog .blog-text h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: right;
}

.blog .blog-text h3 a {
  color: #4a4c70;
}

.blog .blog-text h3 a:hover {
  color: #FDBE33;
}

.blog .blog-text p {
  margin: 0;

}

.blog .blog-meta {
  margin: 0 30px;
  padding-top: 15px;
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p {
  margin: 0;
  color: #777777;
  padding: 0 30px;
  border-right: 1px solid rgba(0, 0, 0, .15);
  font-size: 3rem
}

.blog .blog-meta p:first-child {
  padding-left: 0;
}

.blog .blog-meta p:last-child {
  padding-right: 0;
  border: none;
}

.blog .blog-meta i {
  color: #4a4c70;
  margin-right: 8px
}

.blog .pagination {
  margin-bottom: 15px;
}

.blog .pagination .page-link {
  color: #4a4c70;
  border-radius: 0;
  border-color: #4a4c70;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
  color: #FDBE33;
  background: #4a4c70;
}

.blog .pagination .disabled .page-link {
  color: #999999;
} */

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .section-header p {
  font-size: 3rem;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.contact .section-header h2 {
  color: #7f2274;
  font-weight: 600;
  font-size: 20px;
}

.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
  direction: rtl;
  text-align: center;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #7f2274;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
