html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #ffffff none repeat scroll 0 0;
  color: #687188;
  font-family: "Arimo", sans-serif;
  font-family: "Rufina", serif;
  font-size: 16px;
}

@media only screen and (max-width: 767.98px) {
  .make-me-sticky {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #292b2c;
  font-family: "Arimo", sans-serif;
  font-family: "Rufina", serif;
  font-weight: 700;
}

p {
  color: #687188;
  line-height: 28px;
  margin-bottom: 25px;
  font-family: "Merriweather Sans", sans-serif;
  font-size: 14px;
}

span {
  font-family: "Merriweather Sans", sans-serif;
}

a {
  color: #022147;
  text-decoration: none !important;
}

img {
  max-width: 100%;
}

ul,
li,
ol {
  margin: 0;
  padding: 0;
}

label {
  color: #6c757d;
}

.navbar-nav .nav-item.active:after {
  position: absolute;
  content: "";
  background-color: #F43636;
  height: 2px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 15%;
}
.navbar-nav .nav-item {
  position: relative;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

iframe {
  border: 0;
  display: block;
  width: 100%;
}

video {
  width: 100%;
}

.section-padding {
  padding: 50px 0;
}

.scrollup {
  background-color: #171717;
  bottom: 20px;
  color: #ffffff;
  font-size: 24px;
  height: 40px;
  line-height: 40px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 40px;
  z-index: 99;
}

.scrollup:hover {
  background-color: #f43636;
  color: #fff;
}

.scrollup:focus {
  color: #fff;
}

.scrollup_style1 {
  background-color: #f43636;
}

.no-gutters {
  margin-left: 0 !important;
  margin-right: 0 !important ;
  padding-left: 0;
  padding-right: 0;
}
/*Title Css*/

.leads {
  margin-bottom: 30px;
}

/* header */

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-left: 40px;
}
.navbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between !important;
  padding: 0.5rem 2rem;
  background-color: white;
}
.navbar-nav .nav-item .nav-link {
  display: block;

  font-weight: 900;
  font-size: 17px;
  color: #022147;
  position: relative;
}

.navbar-nav .nav-item .nav-link:after {
  position: absolute;
  content: "";
  background-color: #f43636;
  height: 2px;
  width: 0%;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 100% 50%;
  bottom: 15%;
}

.navbar-nav .nav-item .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: 0 50%;
  width: 100%;
}

.navbar-brand img {
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease-in;
}
.navbar-brand img:hover {
  transform: scale(1.1);
}

.bg {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

.navbar-toggler {
  background-color: #022147;
}
.navbar-toggler-icon i {
  color: #fff;
}
.navbar-toggler-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item {
  margin-right: 15px;
}

/* hero */
.hero-wrapper {
  background-color: #022147;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.hero-head {
  margin-top: 50px;
}
.hero-head h1 {
  color: white;
  font-size: 65px;
  margin-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.hero-head span {
  text-transform: uppercase;
  text-align: center;
  color: #f43636;
  position: relative;
}

.hero-head span::before {
  position: absolute;
  content: "";
  background-color: #f43636;
  height: 2px;
  width: 45px;
  top: 50%;
  left: -50px;
}
.hero-head span::after {
  position: absolute;
  content: "";
  background-color: #f43636;
  height: 2px;
  width: 45px;
  top: 50%;
  right: -50px;
}

.hero-head p {
  color: white;
  margin-top: 30px;
  padding: 0 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.main-btn {
  color: white;
  background-color: #f43636;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 25px;
  font-family: "Merriweather Sans", sans-serif;
  display: inline-block;
}

.main-btn:hover {
  color: #fff;
}

.hero-slider {
  height: 100%;
}

.hero-slider img {
  object-fit: cover;
  object-position: center;
  height: 720px;
}

.hero-stars i {
  color: #f43636;
  font-size: 21px;
}

/* inro */
.left-intro img {
  height: 534px;
  width: 100%;
  object-fit: cover;
}
.right-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.intro-head h1 {
  padding: 10px 0 30px 0;
  position: relative;
}

.intro-head h1::before {
  position: absolute;
  content: "";
  background-color: #f43636;
  height: 2px;
  width: 85px;
  bottom: 0;
}

.intro-head p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.left-intro {
  position: relative;
}

.desc-box {
  position: absolute;
  background-color: #022147;
  top: 80%;
  padding: 55px;
  right: 75px;
}

.desc-box h3 {
  color: white;
  font-style: italic;
  font-size: 18px;
  line-height: 28px;
}

.desc-box i {
  color: #f43636;
}

.intro-head-detail p {
  -webkit-line-clamp: initial;
}

/* vision */
.vision {
  background-color: #f3f3f0;
}
.vision-img {
  height: 500px;
  width: 100%;
}

.vision-img img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.heading .hero-stars {
  position: relative;
  display: inline-block;
}

.heading .hero-stars::before {
  position: absolute;
  content: "";
  background-color: #f43636;
  height: 2px;
  width: 45px;
  top: 50%;
  left: -50px;
}
.heading .hero-stars:after {
  position: absolute;
  content: "";
  background-color: #f43636;
  height: 2px;
  width: 45px;
  top: 50%;
  right: -50px;
}

.hero-stars .big {
  font-size: 30px;
}

#myTab .nav-item {
  margin-bottom: 10px;
  background-color: white;
  transition: all 0.3s ease-in;
}
#myTab .nav-item:hover {
  background-color: #022147;
}
#myTab .nav-item:hover .nav-link {
  color: white;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #022147;
  margin-left: 0;
  border-radius: 0;
}

.nav-pills .nav-link {
  padding: 25px 0;
  text-align: center;
  margin-left: 0;
}

#myTabContent {
  background-color: white;
  padding: 5px 10px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 17px;
}

/* speech */

.speech-wrap {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  padding: 15px;
  transition: all 0.3s ease-in;
}

.speech-wrap:hover {
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15), 0 3px 12px 1px rgba(0, 0, 0, 0.15);
}
.speech-img {
  position: relative;
  transition: all 0.3s ease-in;
  height: 316px;
  width: 100%;
  padding: 3px 0;
}

.speech-img img {
  height: 316px;
  width: 100%;
  object-fit: cover;
}

.speech-img:hover {
  filter: brightness(0.8);
}

.speech-img:hover .video-play-button {
  opacity: 1;
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  opacity: 0;
}

.video-play-button:before {
  content: "";
  color: red;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #022147;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #022147;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: #f43636;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.speech-desc p {
  font-size: 13px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.speech-desc h2 {
  font-size: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.speech-desc {
  margin-top: 15px;
}

.speech-head span {
  text-transform: capitalize;
  font-family: "Merriweather Sans", sans-serif;
  font-size: 12px;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #f43636;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

/* news */
.news {
  background-color: #f3f3f0;
}
.news-date {
  display: flex;
  align-items: center;
}

.date-box span {
  padding-right: 8px;
  font-size: 12px;
  color: #000;
}

.date-box i {
  margin-right: 5px;
}
.news-head h1 {
  font-size: 24px;
  padding: 10px 0;
}

.comment-box {
  margin-left: 8px;
}

.news-btn span {
  position: relative;
}
.news-btn span:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 28px;
  background-color: #d5d1d1;
  top: 0;
  left: -12%;
}

.news-head p {
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-img img {
  width: 100%;
  height: 257px;
  object-fit: cover;
}

.news-img {
  width: 100%;
  height: 257px;
}
.news-btn .main-btn {
  font-size: 12px;
  padding: 10px;
}

.news-btn-main {
  margin-top: 30px;
}

.news-btn-main a {
  color: #f43636;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
}
.news-btn-main i {
  vertical-align: middle;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  color: #022147;
}

.news-btn-main:hover.news-btn-main i {
  opacity: 1;
}

.cat-head h1 {
  font-size: 24px;
  color: white;
  margin: 0;
  display: inline-block;
}

.cat-head {
  background-color: #022147;
  padding: 25px 0;
  text-align: center;
}

.cat-list li {
  list-style: none;
  padding: 28px 0;
  border-bottom: 1px solid #d5d1d1;
  font-size: 18px;

  padding-left: 78px;
}

.cat-list li:hover {
  color: #022147;
}

.cat-list li:last-child {
  border: none;
}

.newsletter {
  background-color: #f3f3f0;
  padding: 20px;
  margin-top: 63px;
}

.btn {
  background-color: #f43636;
  color: white;
}

/* cntact */

.contact-map {
  width: 100%;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  border-right: 1px solid #d5d1d1;
  margin-bottom: 15px;
  height: 100%;
}

.contact .col-md-4:last-child .contact-wrapper {
  border: none;
}

.contact-wrapper span {
  color: #f43636;
}

.contact-wrapper p {
  color: #022147;
  font-family: "Rufina", serif;
  font-size: 16px;
}
#scroll-top {
  display: inline-block;
  background-color: #022147;
  width: 50px;
  height: 50px;
  text-align: center;

  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;

  box-shadow: 0px 0px 9px rgba(216, 102, 131, 0.6);
  transition: all 0.5s ease-in-out;
}
#scroll-top:after {
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  line-height: 50px;
  color: #fff;
  font-weight: 900;
}
#scroll-top:hover {
  background-color: black;
}
#scroll-top.show {
  opacity: 1;
  visibility: visible;
}

/* footer */
.footer {
  background-color: #022147;
}

.footer-title h2 {
  color: #fff;
  font-size: 18px;
}

.footer-bottom h4 {
  color: #fff;
  font-size: 15px;
}

.footer-list li {
  list-style: none;
  color: white;
  line-height: 35px;
}

.footer-head h4 {
  color: #f43636;
  font-size: 25px;
}

.footer-head p {
  color: #fff;
}

.footer-list i {
  vertical-align: middle;
  color: #fff;
  margin-right: 10px;
}

.inline-list i {
  vertical-align: middle;
  color: #022147;
  font-size: 20px;
  margin: 0;
}

.footer-list {
  margin-top: 15px;
}

.inline-list {
  display: flex;
}

.icon-box {
  background-color: white;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease-in;
  border: 1px solid #fff;
}

.icon-box:hover {
  background-color: transparent;
}

.icon-box:hover.icon-box i {
  color: #fff;
}

.bread {
  background-color: #022147;
  margin: 85px 0 0 0;
  padding: 20px 0;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;

  border-radius: 0.25rem;
}

.breadcrumb-item a {
  color: white;
}
.breadcrumb-item.active {
  color: #f43636;
}

/* post */

.post-img {
  height: 600px;
  width: 100%;
}

.post-img img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}

.post-time {
  margin-top: 30px;
}

.post-time span {
  margin-right: 10px;
  font-size: 12px;
}

.post-desc {
  margin-top: 15px;
}

.right-post .news-cat {
  padding: 0 20px;
}

/* stand */
.stand {
  background-color: #eeeeeb;
}

.stand-list li {
  list-style: none;
  padding: 20px 0;
  border-bottom: 1px solid rgb(219, 219, 219);
}

.stand .intro-head h1 {
  font-size: 52px;
}

.stand-img {
  height: 540px;
  width: 100%;
}

.stand-img img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}

.intro-details .right-intro {
  margin-top: 0;
}

.right-stand {
  padding: 0 20px;
}

/* img */

.gallery {
  background-color: #f3f3f3;
}

.gallery-wrapper {
  margin-bottom: 15px;
}
.photo-stack {
  position: relative;
  margin: auto;
  width: 300px;
  height: 300px;
}

.photo-stack img {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid white;
  box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-out;
  height: 300px;
  width: 300px;
  object-fit: cover;
}
.photo-stack img:nth-child(1) {
  z-index: 999;
}
.photo-stack img:nth-child(2) {
  transform: rotate3d(0, 0, 1, 4deg);
}
.photo-stack img:nth-child(3) {
  transform: rotate3d(0, 0, 1, -4deg);
}
.photo-stack img:nth-child(4) {
  transform: rotate3d(0, 0, 1, 2deg);
}
.photo-stack:hover img:nth-child(1) {
  transform: scale(1.02);
}
.photo-stack:hover img:nth-child(2) {
  transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
.photo-stack:hover img:nth-child(3) {
  transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
.photo-stack:hover img:nth-child(4) {
  transform: translate3d(2%, -5%, 0) rotate3d(0, 0, 1, 2deg);
}
.photo-stack:hover img:nth-child(5) {
  transform: translate3d(-5%, -2%, 0) rotate3d(0, 0, 1, 2deg);
}

.gallery-title {
  background-color: #fff;
  padding: 20px;
}

.gallery-title h5 {
  font-size: 18px;
  line-height: 27px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.images {
  background-color: #f3f3f3;
}

.images img {
  height: 148px;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in;
  margin-bottom: 30px;
}

.images img:hover {
  transform: scale(1.1);
}

/* timeline */

.main-timeline {
  background-color: #f3f3f3;
  width: 100%;
}

.timeline:before {
  content: "";
  position: absolute;
  height: 98%;
  left: 50%;
  width: 2px;
  top: 15px;
  background: rgb(155, 155, 155);
}
.timeline {
  position: relative;

  width: 100%;
  padding: 50px 0;
}

.timeline ul {
  margin: 0;
  padding: 0;
}

.timeline ul li {
  list-style: none;
  box-sizing: border-box;
  line-height: normal;
  position: relative;
  width: 50%;
}

.timeline ul li .right_content h2 {
  color: #022147;
  padding: 0px 2px 18px 0px;
}
.timeline ul li:nth-child(odd) {
  float: left;
  text-align: left;
  clear: both;
  position: relative;
}
.timeline ul li:nth-child(odd):after {
  position: absolute;
  content: "\f0da";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  top: 4px;
  left: 518px;
  font-size: 50px;
  color: white;
}
.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}
.timeline ul li:nth-child(even):after {
  position: absolute;
  content: "\f0d9";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  top: 4px;
  right: 518px;
  font-size: 50px;
  color: white;
}

.timeline ul li:nth-child(odd):before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #022147;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(58, 112, 239, 0.2);
  right: -11px;
  top: 24px;
  z-index: 1;
}

.timeline ul li:nth-child(even):before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #022147;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(58, 112, 239, 0.2);
  left: -9px;
  top: 24px;
}
.timeline ul li:nth-child(even) .left_content {
  position: absolute;
  top: 12px;
  margin: 0;
  left: -194px;
  background-color: #022147;
  padding: 7px 10px;
  width: 29%;
}
.timeline ul li:nth-child(even) .left_content h3 {
  color: white;
  text-align: center !important;
}

.timeline ul li:nth-child(odd) .left_content {
  position: absolute;
  top: 12px;
  right: -194px;
  margin: 0;
  padding: 7px 10px;
  width: 29%;
  background-color: #022147;
}
.timeline ul li:nth-child(odd) .left_content h3 {
  color: white;
  text-align: center !important;
}
.right_content {
  background-color: white;
  padding: 10px;
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 70px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1000px) {
  .timeline {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .timeline {
    width: 100% !important;
  }
  .timeline:before {
    left: 20px;
  }
  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even) {
    width: 100%;
    text-align: left;
    padding-left: 19px;
  }

  .timeline ul li:nth-child(odd):before {
    top: -18px;
    left: 11px;
  }
  .timeline ul li:nth-child(even):before {
    top: -18px;
    left: 11px;
  }

  .timeline ul li:nth-child(odd) .left_content,
  .timeline ul li:nth-child(even) .left_content {
    top: -30px;
    left: 50px;
    right: inherit;
  }
}

.main-timeline h3 {
  font-size: 22px;
  margin: 0;
}

.timeline-head img {
  height: 185px;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in;
}

.timeline-head h5 {
  text-align: center !important;
  color: #022147;
  margin-top: 10px;
}

.timeline-head {
  overflow: hidden;
}

.right_content:hover .timeline-head img {
  transform: scale(1.02);
}
/* media */
.media-wrapper {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  padding-bottom: 15px;

  transition: all 0.2s ease-in;
}

.bg:hover {
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15), 0 3px 12px 1px rgba(0, 0, 0, 0.15);
}
.media-wrapper:hover .media-time span {
  color: #000;
}
.media-time {
  padding: 0 15px;
}

.media-time i {
  color: #686868;
}

.media-time span {
  font-size: 12px;
  font-family: "Merriweather Sans", sans-serif;
  transition: all 0.1s ease-in;
}

.media-desc {
  padding: 0 15px;
}

.media-desc p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.media-desc h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.media-img {
  height: 316px;
  width: 100%;
}

.media-img img {
  height: 316px;
  width: 100%;
  object-fit: cover;
}

.all-media .media-wrapper {
  margin-bottom: 30px;
}

.media-logo {
  height: 57px;
  width: 100%;
  margin-bottom: 10px;
}
.media-logo img {
  height: 57px;
  width: 100%;
  object-fit: contain;
}

.media-slider.owl-carousel .owl-dots.disabled,
.media-slider.owl-carousel .owl-nav.disabled {
  display: block;
}

.media-slider {
  position: relative;
}

.media-slider .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: #022147;
  color: inherit;
  border: none;
  padding: 6px 15px !important;
  font: inherit;

  border-radius: 50%;
  color: white;
}

.all-media {
  background-color: #f3f3f0;
}

.all-speech {
  background-color: #f3f3f0;
}

.all-speech-wrap {
  margin-bottom: 30px;
}

.letter {
  background-color: #fff;
  padding: 20px;
}

.footer {
  padding-top: 30px;
  padding-bottom: 10px;
}
.desc-box1 {
  position: absolute;
  background-color: #022147;
  top: 63%;
  padding: 55px;
  right: 75px;
}

.media-slider .owl-item {
  margin-top: 20px;
  margin-bottom: 20px;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #022147;
  outline: 0;
  box-shadow: none;
}

.mag {
  margin-bottom: 50px;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.footer-icon i {
  color: white;
  margin-right: 10px;
  font-size: 25px;
  transition: all 0.3s ease-in;
}

.footer-icon i:hover {
  transform: scale(1.1);
}

.speech-img-detail img {
  height: 433px;
  width: 100%;
  object-fit: cover;
}

.speech-img-detail i {
  font-size: 144px;
}

.intro-images img {
  height: 375px;
  width: 100%;
  object-fit: cover;
}

.intro {
  margin-bottom: 60px;
}
.play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.play-button:before {
  content: "";
  color: red;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #022147;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #022147;
  border-radius: 50%;
  transition: all 200ms;
}

.play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.logo_font{
  font-size: 40px;
  font-weight: 100;
  color: #022147;
  font-family: 'Arizonia', cursive;
}

.lineclamp {
  overflow: visible !important;
  text-overflow: initial !important;

  -webkit-line-clamp: initial !important;
}

.bg1 {
  background-color: #f3f3f0;
}

.speech-img-detail {
  margin-bottom: 100px;
}

.intro-details {
  margin-bottom: 0 !important;
}
