/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  
  text-decoration: none;
}

a:hover {
  color: #ff9900;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
.viewmorebtn{
	background: #ff9900;
    padding: 10px 30px;
    border-radius: 4px;
    color: #fff;
	transition: 0.5s;
}
.viewmorebtn:hover{
	color: #fff;
    background: #263c98;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff9900;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #263c98;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #feba43;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#topbar {
    background: #263c98;
    font-size: 14px;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    height: 40px;
	margin-bottom: 12px;
}
#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}
#topbar .contact-info i a, #topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}
#topbar .investment{
	color:#ff9900;
}
#topbar .investment:hover{
	color:#fff;
}
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0 12px;
}

#header.header-scrolled {
  padding:0 0 12px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b1438;
}

#header .logo img {
  max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #0b1438;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff9900;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #ff9900;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #feba43;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff9900;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b1438;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b1438;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff9900;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ff9900;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.carousel-item.active {
	animation: grow 4s linear forwards;
	opacity: 1;
}
@keyframes grow {
	0%, 20% {
		transform: scale(1);
	}
	
	75%, 100% {
		transform: scale(1.15);
	}
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ff9900;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #ff9900;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #feba43;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
  .section-title {
    padding-bottom: 15px !important;
}
.section-title p {
    font-size: 28px !important;
}
.about .content h3 {
    font-size: 22px !important;
}
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
	top:15%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 20px;
}
.content_about h4{
	margin-bottom: 15px;
    text-transform: uppercase;
    color: #263c98;
    line-height: 1.5;
    font-weight: 700;
    border-left: 6px solid #263c98;
    padding-left: 11px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff9900;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #263c98;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.star {
    float: left;
    width: 500px;
    shape-outside: url(../assets/img/about.jpg);
    shape-margin: 30px;
    margin-right: 43px;
    margin-bottom: 20px;
	border-radius: 8px;
}
.wrapper h3 {
    color: #000;
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 1.5 !important;
}
.wrapper p {
    text-align: justify;
}
.wrapper h5 {
    color: #106eea;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.content_about {
    padding: 30px 50px 0px 0px;
}
.content_about p{
	text-align:justify;
}
.content_story{
	padding: 30px 0px 0px 50px;
}
.content_story p{
	text-align:justify;
}
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ff9900;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ff9900;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ff9900;
}

.about .content .btn-learn-more:hover {
  background: #ff9900;
  color: #fff;
  text-decoration: none;
}
.audience_col{
	display:table;
	width:100%;
	background:#263c98;
	border:1px solid #263c98;
	border-radius:8px;
	padding:30px 15px;
}
.audience_col p{
	text-align:center;
	color:#ff9900;
	font-size:34px;
}
.audience_col h4{
	text-align:center;
	color:#ff9900;
	font-weight: 600;
    font-size: 20px;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  background:#fff;
}

.counts .count-box i {
  display: block;
  font-size: 24px;
  color: #ff9900;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 50px;
  display: block;
  font-weight: 700;
  color: #0b1438;
  margin-left: 65px;
}
.purecounter_ab{
	font-size: 16px !important;
}
.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.icon-boxess .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #263c98;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    padding: 40px 30px;
    width: 100%;
}
.icon-boxess .icon-box i {
    font-size: 40px;
    color: #ff9900;
    margin-bottom: 30px;
}
.icon-boxess .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}
.icon-boxess .icon-box p {
    font-size: 15px;
    color: #716f6f;
}
.why-us .content {
  padding: 60px 100px 15px 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #263c98;
  border-left: 6px solid #263c98;
  padding-left: 11px;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color:#fff;
}
.why-us .content h5 {
  font-size: 1.5rem;
  text-transform:uppercase;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 30px;
  color:#ff9900;
  border-left: 6px solid #ff9900;
  padding-left: 11px;
}
/*.why-us .content p {
  font-size: 15px;
  color: #848484;
}*/

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b1438;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #ff9900;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b1438;
}

.why-us .accordion-list a.collapsed:hover {
  color: #ff9900;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.why-us-us {
  padding: 60px 0 60px 0;
  position: relative;
  z-index: 3;
}

.why-us-us .content {
  padding: 30px;
  background: #ff9900;
  border-radius: 6px;
  color: #fff;
}

.why-us-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us-us .content .more-btn {
  display: inline-block;
  background:none;
  padding: 6px 30px 8px 30px;
  color: #000;
  border-radius: 4px;
  border:2px solid #000;
  transition: all ease-in-out 0.4s;
}

.why-us-us .content .more-btn i {
  font-size: 14px;
}

.why-us-us .content .more-btn:hover {
  color: #ff9900;
  background: #000;
}

.why-us-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #dedede;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.why-us-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #ff9900;
  margin-bottom: 30px;
}

.why-us-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color:#000;
}

.why-us-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #555;
}

.about-us_us .icon-boxes h4 {
  font-size: 18px;
  color: #263c98;
  margin-bottom: 15px;
}

.about-us_us .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b1438;
  margin-bottom: 15px;
}

.about-us_us .icon-box {
  margin-top: 25px;
}

.about-us_us .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #ffe2af;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}
.icon_iwu_col{
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height:100px;
  border-radius:6px;
  transition: 0.5s;
  background: #fff;
}
.icon_iwu_col img{
	width:100%;
	border-radius:6px;
	box-shadow: 0px 0px 11px 0 #999;
}
.about-us_us .icon_iwu_col_box .title {
    margin-left: 30px !important;
    font-weight: 700;
    margin-top: 4px;
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 1.5;
}
.icon_iwu_col_box{
	align-items: center;
    display: inline-flex;
	margin-top: 15px;
    background: #f1f1f1;
	border-radius:0 6px 6px 0;
}
.about-us_us .icon-box .icon i {
  color: #feba43;
  font-size: 32px;
}

.about-us_us .icon-box:hover .icon {
  background: #feba43;
  border-color: #feba43;
}

.about-us_us .icon-box:hover .icon i {
  color: #fff;
}

.about-us_us .icon-box .title {
  /*margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;*/
    margin-left: 85px;
    font-weight: 700;
    margin-top: 4px;
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 1.5;
}

.about-us_us .icon-box .title a {
  color:#0b1438;
  transition: 0.3s;
}

.about-us_us .icon-box .title a:hover {
  color: #ff5821;
}

.about-us_us .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about-us_us .video-box {
  background: url("../../assets/img/about-img-2.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
  border-radius:8px;
}

.about-us_us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ff9900 50%, rgba(255, 226, 175, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about-us_us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about-us_us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 226, 175, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about-us_us .play-btn:hover::after {
  border-left: 15px solid #ff9900;
  transform: scale(20);
}

.about-us_us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.testimonialss {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonialss::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.testimonialss .section-header {
  margin-bottom: 40px;
}

.testimonialss .testimonial-carousel,
.testimonialss .testimonial-slider {
  overflow: hidden;
}

.testimonialss .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonialss .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonialss .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonialss .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonialss .testimonial-item .quote-icon-left,
.testimonialss .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonialss .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonialss .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonialss .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonialss .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonialss .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonialss .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff9900;
}

@media (min-width: 992px) {
  .testimonialss .testimonial-item p {
    width: 80%;
  }
}

.values .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 0;
}

.values .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 0px;
}

.values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.values .card-title a {
  color: #0b1438;
}

.values .card-text {
  color: #4b4949;
}

.values .read-more a {
  color: #656262;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.values .read-more a:hover {
  text-decoration: underline;
}

.values .card:hover .card-body {
  background: #ff9900;
}

.values .card:hover .read-more a,
.values .card:hover .card-title,
.values .card:hover .card-title a,
.values .card:hover .card-text {
  color: #fff;
}

.module {
  min-width: 270px;
  height: 470px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s linear 0s;
  overflow: hidden;
  position: relative;
  cursor:pointer;
  border-radius:8px;
}
.module:hover {
  box-shadow: 0 1px 35px 0 rgba(0, 0, 0, 0.3);
}
.thumbnail {
  position: relative;
  overflow: hidden;
  background: black;
}
.thumbnail img {
  width: 120%;
  transition: all 0.3s;
}
.module:hover .thumbnail img {
  transform: scale(1.1);
  opacity: 0.6;
}

.thumbnail .date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #263c98;
  padding-top: 10px;
  color: #fff;
  font-weight: bold;
  border-radius: 100%;
  height: 55px;
  width: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
}
.date div:first-child {
  font-size: 18px;
  line-height: 1.2;
}
.contents {
  position: absolute;
  width: 100%;
  height: 178px;
  bottom: 0;
  background: #fff;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
}
.module:hover .contents {
  height: 278px;
}
.contents .category {
  	position: absolute;
    top: -15px;
    left: 0;
    color: #fff;
    text-transform: uppercase;
    background: #ff9900;
    padding: 5px 15px;
    font-weight: 500;
    font-size: 12px;
}
.title {
  margin: 0;
  padding: 0 0 10px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
}
.sub-title {
  margin: 0;
  padding: 0 0 20px;
  color: #ff9900;
  font-size: 16px;
  font-weight: 500;
}
.descriptions {
  color: #666666;
  font-size: 14px;
  line-height: 1.8em;
  height: 0;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
  overflow: hidden;
}
.module:hover .descriptions {
  height: 100px;
}
.meta {
  margin: 15px 0 0;
  color: #999999;
  font-size: 14px;
}
.comments a{
	color:#ff9900;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff5821;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5821;
}

.clients .swiper-slide img {
  opacity: 0.5;
  filter: grayscale(100%);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  cursor:pointer;
  border-radius:6px;
  border:1px solid #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ff9900;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #fed182;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}
.service_button{
	border:1px solid #0b1438;
	padding:10px 15px 10px 22px;
	color:#0b1438;
	border-radius:4px;
	position: relative;
}
.service_button a{
	color:#0b1438;
}
.services .icon-box:hover .service_button{
	border:1px solid #0b1438;
	background:#0b1438;
	color:#fff;
}
.services .icon-box:hover .service_button a{
	color:#ff9900;
}
.service_button i{
	font-size: 22px;
    height: 27px;
    display: inline-block;
    position: relative;
    top: 3px;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0b1438;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #ffbb45;
  border:1px solid #000;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #ff9900;
}

.services .icon-box:hover .icon::before {
  background: #feba43;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #000;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #0b1438;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffe7be;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff9900;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff9900;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b1438;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ff9900;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ff9900;
  border: 2px solid #ff9900;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b1438;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b1438;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff9900;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff9900;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
  cursor:pointer;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #ff9900;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

.blog {
  padding: 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #473d3a;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #ff5821;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #afa29e;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #656262;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #ff5821;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #ff6b3b;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #313030;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #473d3a;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #988782;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #554945;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #ff5821;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #473d3a;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(71, 61, 58, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #a4a2a2;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #313030;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #ff5821;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #473d3a;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #635551;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #ffa587;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #ffa587;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #473d3a;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #554945;
}

.blog .blog-pagination {
  color: #7f6d68;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #473d3a;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #ff5821;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #473d3a;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #ff5821;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #ff6735;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #473d3a;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #ff5821;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #989595;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #473d3a;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #ff5821;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #989595;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #8d7973;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #f4f2f2;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #ff5821;
  background: #ff5821;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #ddd7d6;
  font-size: 14px;
}
.title_center h3{
	font-weight:700 !important;
	color:#263c98;
	font-family: "Poppins", sans-serif;
	margin:15px 0;
}
.about-us_us .images-box {
    background: url(../../assets/img/aboutus-2.jpg) center center no-repeat;
    background-size: cover;
    min-height: 500px;
}
.ourteamdetalimage{
	background:#f1f1f1;
	padding-top:12px;
	border-bottom:12px solid #000;
}
.teamdetails_info{
	padding-left:50px;
}
.teamdetails_info p{
	text-align:justify;
}
.teamdetails{
	padding:0 15px;
}
.teamdetails_info ul li{
	margin-bottom:15px;
}
.attribution {
  background-color: rgba(72, 85, 106, 0.1);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.7rem 0;
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
}
.attribution p:first-of-type::after {
  content: " ";
  white-space: pre-wrap;
}
.attribution a {
  color: rgba(117, 65, 200, 0.8);
  font-weight: 700;
}
.attribution a:hover {
  color: rgba(117, 65, 200, 0.6);
}
.attribution a:active {
  color: rgba(117, 65, 200, 0.8);
}
.name{
	margin-bottom:2px;
}
#testimonials .title{
	margin: 0;
    padding: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
}
.special_icon img{
	width:52px;
}
.special_icon_why img{
	width:52px;
	margin-bottom:15px;
}
.special_icon_service img{
	width:64px;
	margin-bottom:30px;
}
.special_icon_val img{
	width:32px;
}
.special_icon_val{
	line-height:0;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b1438;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
  border-radius:8px;
}

.contact .info-box i {
  font-size: 32px;
  color: #ff9900;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #feba43;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
  border-radius:8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.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: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ed502e;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ff9900;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #feba43;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.banner{
	padding:0;
	margin-top:113px;
}
.banner img{
	width:100%;
}
.showcase {
  width: 100%;
  height: 350px;
  position: relative;
  color: white;
  text-align: center;
  z-index:9;
}

.showcase img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index:99
}

.showcase .overlay {
  width: 100%;
  height: 350px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index:999
}

.showcase h2 {
  margin-top: 170px;
  font-size: 3em;
  font-weight:bold;
}

.showcase p {
  margin-top: 8px;
  font-size: 1.4em;
}
/*--------------------------------------------------------------
#Blog
---------------------------------------------------------------*/
.section-blog .single-post {
	position: relative;
}

.section-blog .single-post img {
	width: 100%;
	border-radius: 5px;
}

.section-blog .single-post .infos {
	position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    display: inline-block;
    padding: 22px 29px 24px;
    background-color: #fff;
    transform: translateY(50%);
    box-shadow: 0 0px 15px 0 rgba(0,0,0,.1);
    z-index: 2;
}

.section-blog .single-post .infos .title-post {
	line-height: 0.75em;
}

.section-blog .single-post .infos .title-post a {
	text-decoration: none;
	color: #404752;
    font-size: 16px;
    font-weight: 600;
}

.section-blog .single-post .infos .by-and-date {
	margin-bottom: 0;
}

.section-blog .single-post .infos .by-and-date li {
	position: relative;
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

.section-blog .single-post .infos .by-and-date li a {
    text-decoration: none;
    color: #404752;
}

.section-blog .single-post .infos .by-and-date li:after {
	content: "";
    position: absolute;
    top: 20%;
    right: -10px;
    width: 1px;
    height: 60%;
    background-color: #87c3ff;
}

.section-blog .single-post .infos .by-and-date li:last-child:after {
	display: none;
}

.section-blog .pagination {
	margin-top:50px;
	margin-bottom:0;
}

.section-blog .pagination ul li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
    font-weight: 600;
    font-size: 20px;
    transition: background-color .3s, color .3s;
}

.section-blog .pagination ul li:hover {
	background-color: #147de7;
	color: #fff;
	box-shadow: none;
}

.section-blog .pagination ul li a {
	display: inline-block;
    padding: 13px 23px;
	text-decoration: none;
	color: inherit;
}

@media (max-width: 575.99px) {
	.section-blog .pagination ul li {
		margin-right: 10px;
		font-size: 16px;
	}

	.section-blog .pagination ul li a {
		padding: 10px 15px;
	}
}


.section-blog .single-post-b {
	position: static;
}

.section-blog .single-post-b img {
	width: 100%;
	border-radius: 5px;
}

.section-blog .single-post-b .infos {
	/*position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    display: inline-block;*/
    padding: 22px 29px 24px;
    background-color: #fff;
    /*transform: translateY(50%);*/
    box-shadow: 0 0px 15px 0 rgba(0,0,0,.1);
    z-index: 2;
}

.section-blog .single-post-b .infos .title-post {
	line-height: 0.75em;
}

.section-blog .single-post-b .infos .title-post a {
	text-decoration: none;
	color: #404752;
    font-size: 16px;
    font-weight: 600;
	word-break: break-word;
}

.section-blog .single-post-b .infos .by-and-date {
	margin-bottom: 0;
}

.section-blog .single-post-b .infos .by-and-date li {
	position: relative;
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

.section-blog .single-post-b .infos .by-and-date li a {
    text-decoration: none;
    color: #404752;
}

.section-blog .single-post-b .infos .by-and-date li:after {
	content: "";
    position: absolute;
    top: 20%;
    right: -10px;
    width: 1px;
    height: 60%;
    background-color: #87c3ff;
}

.section-blog .single-post-b .infos .by-and-date li:last-child:after {
	display: none;
}
.pt-7 {
    padding-top: 6rem!important;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 0px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 0px;
  }
  section {
    padding: 30px 0;
}
.breadcrumbs ol {
    padding: 0 0 0px 0 !important;
}
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b1438;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}
.terms-body h3 {
    color: #262626;
    font-weight: 700 !important;
    text-align: left;
    margin-bottom: 10px;
    font-size: 26px !important;
}
.terms-body p {
    text-align: justify;
    line-height: 25px;
}
.privacypolicy p {
    line-height: 1.6;
	text-align:justify;
}
.privacypolicy p strong {
    font-size: 26px;
	text-align:left;
}
.privacypolicy ul li {
    padding-left: 0px!important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0b1438;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}
.footer-info img{
	width:270px;
}
#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #f1f1f1;
  border-top: 4px solid #ff9900;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color:#000;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #263c98;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #ff9900;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff9900;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff9900;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ff9900;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #feba43;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* Media Query desktop, Tab, Mobile */

@media (max-width: 991px) {
.audience_col h4 {
    font-size: 18px;
    height: 40px;
}
#topbar .contact-info i a, #topbar .contact-info i span {
    font-size: 11px;
}
.popup-container{
	width:60% !important;
}
.why-us-us .content h3{
	text-align:center;
}
.why-us-us .content p{
	text-align:center !important;
}
.why-us-us .text-left{
	float: none;
    margin: auto;
    text-align: center;
}
.extrabutton{
	float:none;
	margin: 0 auto 15px !important;
    padding-top: 10px !important;
}
.icon-box{
	margin-top:5px !important;
}
.cta {
    padding: 30px 0 35px;
}
.pt-7 {
    padding-top: 4rem!important;
}
.iwu_col{
	margin-bottom:20px;
}
}
@media (max-width: 767px) {
#topbar .contact-info i a, #topbar .contact-info i span {
    font-size: 11px;
}
.d-none-mobile{
	display:none !important;
}
#topbar{
	display:none !important;
}
#header.header-scrolled {
    padding: 5px 0 5px;
}
.popup-container{
	width:60%;
}
.teamdetails_info {
    padding-left: 12px;
}
}
@media (max-width: 575px) {
.privacypolicy p {
    line-height: 1.6;
	text-align:justify;
}
.privacypolicy p strong {
    font-size: 22px;
    text-align: center;
    margin: auto;
    display: table;
    width: 100%;
}
.privacypolicy ul li {
    padding-left: 0px!important;
}	
.blog .entry .entry-title {
    font-size: 22px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}
.blog .entry .entry-content blockquote {
    padding: 30px;
}
.blog .entry .entry-content blockquote p{
	font-size:18px;
}
.blog .entry .entry-content p {
    font-size: 14px;
}
.teamdetails_info p {
    font-size: 14px;
}
.about .content h3 {
    font-size: 22px !important;
    text-align: center;
	padding-bottom: 0 !important;
}
.star{
	width:100%;
}
.wrapper p {
    text-align: center;
	font-size:14px;
}
.showcase h2 {
    margin-top: 150px;
    font-size: 2em;
}
.showcase p {
    font-size: 1em;
}
#hero h2 {
    font-size: 26px;
}
#hero p {
    font-size: 16px;
}
.why-us .content h5{
	 font-size: 16px;
	 margin-bottom: 15px;
}
.why-us .content p {
    margin-bottom: 5px;
}
#about{
	padding-bottom:5px;
}
.why-us-us {
    padding: 30px 0 15px 0;
}
.section-title p {
    font-size: 24px !important;
}
.content_about h4 {
    font-size: 16px;
}
.content_story {
    padding: 15px 0px 0px 0px;
}
.content_about {
    padding: 15px 0px 0px 0px;
}
.d-none-mobile{
	display:none;
}
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
 .about-us_us .icon-box .title {
    font-size: 15px;
}
.about-us_us .icon-box{
	margin-bottom:15px;
}
.why-us-us .content h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 5px;
}
.photos {
    margin: 30px 0 30px !important;
}
}
@media (max-width: 375px) {
.privacypolicy p {
    line-height: 1.6;
	text-align:center;
	font-size:14px;
}
.privacypolicy p strong {
    font-size: 20px;
    text-align: center;
    margin: auto;
    display: table;
    width: 100%;
}
.privacypolicy ul li {
    font-size: 14px;
    list-style: none;
    text-align: center;
    background: #dedede;
    padding: 8px;
	border-left:4px solid #263c98;
	border-right:4px solid #263c98;
}	
.terms-body h3 {
    font-weight: 700 !important;
    font-size: 18px !important;
}
.terms-body p {
	font-size: 14px;
    text-align: center;
}
.blog .entry .entry-content h3 {
    font-size: 18px;
	text-align: center;
}
.blog .entry .entry-title {
    font-size: 18px;
    font-weight: bold;
	text-align:center;
    padding: 0;
    margin: 0 0 20px 0;
}
.blog .entry .entry-meta a {
    font-size: 12px;
}
.blog .entry .entry-content blockquote {
    padding: 30px;
}
.blog .entry .entry-content blockquote p{
	font-size:16px;
}
.blog .entry .entry-content p {
    font-size: 14px;
	text-align: center;
}
.teamdetails_info h5{
	font-size:18px;
	text-align:center;
}
.section-title h5{
	font-size:18px;
	text-align:center;
}
.teamdetails_info ul{
	padding-left:0;
}
.teamdetails_info ul li{
	font-size: 14px;
    list-style: none;
    text-align: center;
    background: #dedede;
    padding: 8px;
	border-left:4px solid #263c98;
	border-right:4px solid #263c98;
}
.teamdetails_info p {
    text-align: center;
    font-size: 14px;
}
.about-us_us .icon-boxes h3{
	font-size: 20px !important;
	text-align:center !important;
}
.about-us_us .icon_iwu_col_box .title {
    margin-left: 18px !important;
	text-align:left !important;
}
.audience_col h4 {
    font-size: 18px;
    height: auto;
}
.about .wrapper h3 {
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
	text-align:center;
}
.footer-info img {
    width: 250px;
}
.title {
    text-align: center;
}
.sub-title {
    text-align: center;
}
.contents .category {
    left: 0;
    right: 0;
    display: table;
    margin: auto;
}
.section-blog .single-post .infos .title-post {
    line-height: 0.75em;
    text-align: center;
}
.cta h3 {
    font-size: 20px;
}
.cta p {
    color: #fff;
    font-size: 14px;
}
.about-us_us .icon-box .icon {
    float: none;
    text-align: center;
    margin: auto;
}
.about-us_us .icon-box .title {
    margin-left: 0;
    font-weight: 700;
    margin-top: 4px;
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 1.5;
    text-align: center;
	padding-bottom: 0;
}
.extrabutton {
    float: none;
    margin: 0 auto 15px !important;
    padding-top: 10px !important;
    text-align: center;
}
.why-us .content h5 {
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 4px solid #ff9900;
    border-top: 4px solid #ff9900;
	border-left: none;
	padding: 5px 0;
	line-height: 1.5;
}
.content_story p {
    font-size: 14px;
    text-align: center;
}
.content_about p {
    text-align: center;
    font-size: 14px;
}
.content_about h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
	border-top: 4px solid #263c98;
    border-bottom: 4px solid #263c98;
	border-left: none;
    padding-left: 0;
    text-align: center;
}
#hero h2 {
    font-size: 16px;
}
#hero p {
    font-size: 13px;
}
.section-title h2 {
    text-align: center;
	margin: 0 0 10px 0;
}
.section-title h2::after {
    width: auto;
    height: 1px;
    margin: 0px 0;
}
.section-title p {
    font-size: 20px !important;
	text-align:center;
}
.content_story p {
    font-size: 14px;
}
.about-us_us .icon-box .title {
    font-size: 14px;
}
}