/* ------- Google fonts ------- */
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700");
* {
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: #6383c0;
  color: #fff;
}

::selection {
  background: #6383c0;
  color: #fff;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  font-size: 16px;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  background: #ffff;
  overflow-wrap: break-word;
}

a {
  color: #003366;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  word-break: break-word;
  -webkit-word-break: break-word;
  white-space: normal;
  -webkit-white-space: normal;
  overflow-wrap: break-word;
  -webkit-overflow-wrap: break-word;
}

a:hover {
  color: #003366;
  text-decoration: none;
}

a:focus {
  outline: 0;
  color: #7c489a;
}

a:hover,
a:focus {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

img {
  border: none;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

::-webkit-input-placeholder {
  color: #7a7979;
  opacity: 1;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #7a7979;
  opacity: 1;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #7a7979;
  opacity: 1;
}

*::-moz-placeholder {
  color: #7a7979;
  opacity: 1;
}

input {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  font-size: 60px;
  color: #2f2e2b;
  margin-bottom: 15px;
  font-weight: 700;
}

h2 {
  font-size: 50px;
  color: #2f2e2b;
  margin-bottom: 20px;
  font-weight: 600;
}

h3 {
  font-size: 45px;
  color: #b6823b;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: none;
}

h4 {
  font-size: 40px;
  color: #2f2e2b;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: none;
}

h5 {
  font-weight: 600;
  color: #313130;
  font-size: 35px;
  margin-bottom: 15px;
}

h6 {
  font-weight: 600;
  color: #313130;
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  color: #2f2e2b;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
  line-height: 24px;
}

/* ------- Start custom preloader ---------- */
.loaded {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow: hidden;
}

.loadding {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*cursor: none;*/
  z-index: 10000;
  background: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.loader {
  height: 180px;
  width: 180px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 15px solid #7b479a;
  position: relative;
  text-align: center;
}

.loader .icon {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  animation-name: arrow;
  animation-duration: 1.2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-play-state: running;
  -webkit-animation-name: arrow;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-play-state: running;
}

.ptac_ldr .loader {
  padding: 25px;
}

.ptac_ldr .loader .icon {
  width: 100px;
  margin: auto;
  animation-name: arrow2;
  animation-duration: 1.2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-play-state: running;
  -webkit-animation-name: arrow2;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-play-state: running;
}

.ptac_ldr .loader .icon img {
  width: 100%;
}

@keyframes arrow {
  0% {
    bottom: 8px;
  }
  50% {
    bottom: 32px;
  }
  100% {
    bottom: 8px;
  }
}
@-webkit-keyframes arrow {
  0% {
    bottom: 8px;
  }
  50% {
    bottom: 32px;
  }
  100% {
    bottom: 8px;
  }
}
/* ------------- Arrow2 ------------*/
@keyframes arrow2 {
  0% {
    bottom: 30px;
  }
  50% {
    bottom: 55px;
  }
  100% {
    bottom: 30px;
  }
}
@-webkit-keyframes arrow2 {
  0% {
    bottom: 30px;
  }
  50% {
    bottom: 55px;
  }
  100% {
    bottom: 30px;
  }
}
/* ---------------- For sticky header: class="float-panel"  ------------------*/
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}
/* ----------------end For sticky header  ------------------*/
/* =================== Start custom css ================ */
.main_header {
  width: 100%;
  display: block;
  float: none;
  clear: both;
  position: relative;
}

.main_header .hdr_top {
  background: #ffffff;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 25px;
}

.hdr_top .logo {
  width: 465px;
  display: block;
  float: left;
  z-index: 1;
  text-align: center;
}

.hdr_top .logo a {
  display: inline-block;
}

.hdr_top .logo a img {
  width: 100%;
}

.hdr_top .logo-marker {
  display: inline-block;
  width: 210px;
  position: absolute;
  left: 30%;
  top: 0;
}

.hdr_top .logo-marker.ptac_mark1 {
  left: 16%;
  width: 205px;
}

.hdr_top .logo-marker img {
  width: 100%;
  object-fit: cover;
}

.hdr_top .right_side {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
}

.hdr_top .social_icon {
  display: inline-block;
  margin-right: 18px;
}

.hdr_top .social_icon li {
  display: inline;
  padding-right: 10px;
}

.hdr_top .social_icon li a {
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s 0.3s linear;
  transition: all 0.3s 0.3s linear;
}

.hdr_top .social_icon li a img {
  width: auto;
}

.hdr_top .social_icon li a:hover img {
  opacity: 0.8;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s 0.3s linear;
  transition: all 0.3s 0.3s linear;
}

.hdr_top .boxes {
  width: 130px;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.hdr_top .boxes a {
  width: 100%;
  padding: 72px 15px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f16543;
  background-size: 100% 100%;
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s 0.3s ease-in-out;
  transition: all 0.3s 0.3s ease-in-out;
}

.hdr_top .boxes a:hover {
  background: #d44926;
  -webkit-transition: all 0.3s 0.3s ease-in-out;
  -o-transition: all 0.3s 0.3s ease-in-out;
  transition: all 0.3s 0.3s ease-in-out;
}

.hdr_top .boxes a:nth-child(2) {
  background: #7b479a;
  -webkit-transition: all 0.3s 0.3s ease-in-out;
  -o-transition: all 0.3s 0.3s ease-in-out;
  transition: all 0.3s 0.3s ease-in-out;
}

.hdr_top .boxes a:nth-child(2):hover {
  background: #8144a5;
  -webkit-transition: all 0.3s 0.3s ease-in-out;
  -o-transition: all 0.3s 0.3s ease-in-out;
  transition: all 0.3s 0.3s ease-in-out;
}

/* ----------- Start header bottom section ---------- */
/* ------ =========> Menu Section <======== ------ */
.main_header .main-menu {
  width: 100%;
  display: block;
  float: right;
  padding: 15px 18px 5px;
  text-align: right;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}

.main_header .main-menu .homeNav {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 0;
  float: right;
}

.main_header .main-menu .homeNav .toggle-button {
  display: none;
  visibility: hidden;
}

.main_header .main-menu .homeNav .nav-logo {
  display: none;
}

.main_header .main-menu .nav-wrapper {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.main_header .main-menu .homeNav ul {
  display: flex;
  width: 100%;
  padding-bottom: 10px;
  flex-wrap: wrap;
  justify-content: flex-end !important;
  align-items: center;
}

.main-menu .homeNav ul.navbar-nav li {
  margin-left: 50px;
  position: relative;
}

.main-menu .homeNav ul.navbar-nav li:first-child {
  margin-left: 0;
}

.main-menu .homeNav ul.navbar-nav li:after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  transition-duration: 0.3s;
  background: #f16543;
  -webkit-transition-property: width;
  /* Safari */
  -webkit-transition-duration: .3s;
  /* Safari */
  transition-property: width;
  transition-duration: .3s;
}

.main-menu .homeNav ul.navbar-nav li a {
  color: #ffffff;
  font-size: 17px;
  line-height: 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  background: transparent;
  letter-spacing: 1px;
}

.main-menu .homeNav ul.navbar-nav li:hover a,
.main-menu .homeNav ul.navbar-nav li:focus a {
  color: #f0f0f0;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.main-menu .homeNav ul.navbar-nav li:hover:after,
.main-menu .homeNav ul.navbar-nav li.active:after {
  width: 100%;
}

.main-menu .homeNav ul.navbar-nav li.active a {
  color: #f0f0f0;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  float: none;
  min-width: 265px;
  padding: 0;
  background-color: #ffffff !important;
  border: 0 !important;
  border-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  box-shadow: none;
  display: block;
  opacity: 0;
  transition: transform 0.2s linear 0s, opacity 0.2s linear 0s;
  left: -99999px;
  z-index: 999999;
  box-shadow: 0px -1px 14px -5px rgba(0, 0, 0, 0.32);
  margin-top: 0px;
  padding-bottom: 8px;
}

ul.dropdown-menu {
  margin: 0 0;
  padding: 0 !important;
}

.dropdown-menu:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0px;
  height: 00px;
  width: 100%;
}

.dropdown-menu:after {
  position: absolute;
  /*content: "";*/
  content: none;
  left: 50px;
  top: -15px;
  height: 0px;
  width: 0;
  border-bottom: 15px solid rgba(13, 12, 12, 0.8);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

.main-menu .homeNav ul.navbar-nav li.dropdown a.dropdown-toggle:after {
  content: none;
}

.main-menu .homeNav ul.navbar-nav li.dropdown ul li {
  padding: 12px 15px 10px;
  border-bottom: 1px solid #dceaf5;
  text-align: left;
  float: none;
  position: relative;
  margin-left: auto;
  width: 100%;
}

.main-header .main-menu .homeNav ul.dropdown-menu {
  padding-bottom: 0;
}

.dropdown-menu:nth-child(2) .dropdown-menu {
  background: #f8f8f8 !important;
}

.dropdown-menu .dropdown-menu .dropdown-menu {
  background: #ffffff !important;
}

.main-menu .homeNav ul.navbar-nav li.dropdown ul li:last-child {
  border-bottom: none;
}

.main-menu .homeNav ul.navbar-nav li.dropdown ul li:hover {
  transition: all 0.5s;
  cursor: pointer;
}

.main-menu .homeNav ul.navbar-nav .dropdown ul.dropdown-menu li:after {
  content: none;
}

.main-menu .homeNav ul.navbar-nav li.dropdown ul li a {
  color: #2d5d8b;
  transition: all 0.5s;
  font-size: 16px;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-transform: capitalize;
}

.main-menu .homeNav ul.navbar-nav li.dropdown ul li:hover a {
  color: #7c489a;
  transition: all 0.5s;
}

.main-menu .homeNav ul li a:hover {
  color: #7c489a;
  transition: all 0.5s;
}

.main-menu .homeNav ul.navbar-nav li.dropdown ul.dropdown-menu li ul {
  top: 0;
  left: -100%;
  margin: auto;
  display: none;
}

/*
.main-menu .homeNav ul.navbar-nav li.dropdown:nth-last-child(-n+2) ul.dropdown-menu li.dropdown ul {
  left: -100%;
}*/
.main-menu .homeNav ul.navbar-nav li.dropdown ul.dropdown-menu li ul li a {
  color: #2d5d8b;
  transition: all 0.5s;
}

.main-menu .homeNav ul.navbar-nav li.dropdown ul.dropdown-menu li ul li:hover > a {
  color: #7c489a;
  transition: all 0.5s;
}

.main-menu .homeNav ul.navbar-nav li.dropdown ul.dropdown-menu li ul:before,
.main-menu .homeNav ul.navbar-nav li.dropdown ul.dropdown-menu li ul:after {
  content: none;
}

.main-menu .homeNav li.dropdown ul.dropdown-menu li:hover > ul.dropdown-menu {
  display: block;
}

.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown:focus > .dropdown-menu,
.navbar .dropdown:focus-within > .dropdown-menu {
  display: block;
}

.dropdown:hover .dropdown-menu {
  left: 0;
  opacity: 1;
  z-index: 1000;
  transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
}

.dropdown.mainmenu_child:hover .dropdown-menu {
  left: auto;
  right: 0;
}

.main-menu .homeNav ul.navbar-nav li.dropdown.mainmenu_child ul.dropdown-menu li ul {
  left: auto;
  right: 100%;
}

/* ----------= === ==== start header fix == ==== ==== ------------- */
.main_header .main-menu.hdr_fix {
  left: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  transition: all 0.5s ease 0s;
  z-index: 999;
  background: #7b4799;
  animation: slide-down 0.9s;
}

.main_header .main-menu.hdr_fix {
  box-shadow: 0px -6px 6px 10px #2e163c;
  /*border-bottom: 1px solid #dd1f26;*/
  padding: 12px 15px;
}

.main_header .main-menu.hdr_fix .nav-logo {
  display: block;
  width: 410px;
}

.main_header .main-menu.hdr_fix .nav-logo img {
  width: 100%;
  object-fit: cover;
}

.main-menu.hdr_fix ul.dropdown-menu {
  margin-top: 20px;
}

.main-menu.hdr_fix .dropdown-menu:before {
  top: -20px;
  height: 20px;
}

.main-menu.hdr_fix .search-icon {
  display: none;
}

/* ========= -------> start search funtion <--------- ========== */
.small_version {
  display: none;
}

.search-icon {
  display: inline-block;
  float: right;
  margin-left: 25px;
  text-align: center;
  width: 40px;
  padding: 0px;
  height: 40px;
}

/* Start search Box */
.search-box {
  z-index: 1000;
  overflow: hidden;
  position: absolute;
  top: 100%;
  border-top: 1px solid #505050;
  right: 0px;
  box-shadow: 0px 0px 0px 0px #000000;
  width: 100%;
  left: 0;
  right: 0;
  padding: 8px 25px;
  border-radius: 0;
  display: none;
  flex-wrap: wrap;
  background: #000000;
}

.search-box form {
  width: 100%;
  display: block;
}

.search-box .form-group {
  display: block;
  margin-bottom: 0;
  float: left;
  width: 90%;
  padding: 0 15px;
  min-height: 55px;
}

.search-box .form-group input[type="text"] {
  width: 100%;
  display: block;
  background: transparent;
  height: 50px;
  padding: 8px 15px;
  box-shadow: none;
  outline: none;
  border: none;
  border-radius: 0;
  /* border-bottom: 1px solid #5f5c5c;*/
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.search-box .form-group input[type="text"]:-webkit-autofill,
.search-box .form-group input[type="text"]:-webkit-autofill:hover,
.search-box .form-group input[type="text"]:-webkit-autofill:focus {
  -webkit-text-fill-color: #cecece;
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
}

.search-box .form-group::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c7c5c5;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.search-box .form-group::-moz-placeholder {
  /* Firefox 19+ */
  color: #c7c5c5;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.search-box .form-group:-ms-input-placeholder {
  /* IE 10+ */
  color: #c7c5c5;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.search-box .form-group:-moz-placeholder {
  /* Firefox 18- */
  color: #c7c5c5;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.search-box .btn-reset {
  width: 40px;
  cursor: pointer;
  float: right;
  box-shadow: none;
  outline: none;
  border: 1px solid #d0d0d0;
  color: #fff;
  border-radius: 2px;
  height: 40px;
  font-family: 'Open Sans', sans-serif;
  /*background: #c41600;*/
  margin: 6px;
  font-size: 0;
  background: url(../images/close.png) no-repeat center;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}

/* ----- start banner section ----- */
.banner {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 10px solid #6383c0;
}

.banner:after {
  content: "";
  /*display: block;*/
  display: none;
  background: url(../images/banner_icon.png) no-repeat;
  width: 330px;
  height: 310px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

.banner .owl-carousel {
  width: 100%;
  display: block;
  background: transparent;
  overflow: hidden;
}

.owl-carousel .owl-stage {
  width: 100%;
}

.banner.owl-carousel .owl-stage-outer {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.banner .owl-item {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}

.banner .owl-item .item {
  width: 100%;
  height: 620px;
  display: block;
}

.banner .item img {
  width: 100%;
  height: 620px;
}

.banner .vid {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
}

/*.banner .item video{
  max-width: 100%;
  max-height: 100%;
}*/
.banner .carousel-caption {
  width: 700px;
  display: block;
  top: inherit;
  bottom: 30%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0px;
  margin: auto;
}

.banner .carousel-caption.Left01 {
  right: inherit;
  width: 640px;
}

.banner .carousel-caption.Left02 {
  right: inherit;
  width: 728px;
}

.banner .carousel-caption.Right {
  left: inherit;
  width: 760px;
  right: 16%;
}

.banner .carousel-caption h1 {
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  word-break: normal;
  font-size: 70px;
  line-height: 62px;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: 'Futura Md BT';
  text-shadow: 7px 2px 28px #fbfbfb;
  -webkit-text-shadow: 7px 2px 28px #fbfbfb;
}

.banner .carousel-caption h1 span {
  display: block;
  padding-left: 16rem;
}

.banner .carousel-caption.Left {
  right: inherit;
  left: 8%;
  text-align: left;
}

.banner .carousel-caption.Left h1 span {
  padding-left: 14rem;
}

.banner .carousel-caption.Right h1 span {
  padding-left: 18.5rem;
}

.banner .carousel-caption.Left01 h1 span {
  display: block;
  padding-left: 15rem;
}

.banner .carousel-caption.Left02 h1 span {
  padding-left: 18rem;
}

.banner .owl-dots {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
}

.banner .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 30px;
  margin: 5px 3px;
  border: 2px solid #fff;
  background: transparent;
}

.banner .owl-dots .owl-dot.active span,
.banner .owl-dots .owl-dot:hover span {
  background: #7c489a;
  border: 2px solid #7c489a;
  transition: all 0.3s;
}

/* --------------- Strat our services section ------------------- */
.our_services {
  width: 100%;
  display: block;
  float: none;
  clear: both;
  background: #ffffff;
  padding: 90px 0 70px;
  position: relative;
  z-index: auto;
}

.our_services:after {
  content: "";
  display: block;
  background: url(../images/marker2.png) no-repeat;
  background-size: cover;
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: -20%;
  left: 13%;
}

.our_services ul {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.our_services ul li {
  width: 25%;
  display: block;
  text-align: center;
  padding: 5px 30px 15px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.our_services ul li:hover .services_icon {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.38);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.our_services ul .services_icon {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  /* width: 184px;
  height: 184px;*/
  background: #6383c0;
  width: 130px;
  height: 130px;
  border: 1px solid transparent;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.our_services ul .services_icon img {
  width: auto;
  margin-top: 0;
  margin-left: 0;
}

.our_services ul li .service_info {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  transform: none;
  padding: 35px 0 12px;
}

.our_services ul li h2 {
  display: block;
  color: #2c2c2c;
  font-size: 34px;
  line-height: 36px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.our_services ul li p {
  display: block;
  color: #303030;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.our_services ul .lear_services {
  display: block;
  width: 100%;
  text-align: center;
  margin: auto;
}

.our_services ul .btn-learn {
  width: 165px;
  display: inline-block;
  height: 50px;
  background: transparent;
  text-align: center;
  padding: 10px 15px;
  border: 2px solid #000b34;
  border-radius: 25px;
  box-shadow: none;
  outline: none;
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our_services ul .btn-learn:hover,
.our_services ul .btn-learn:active,
.our_services ul .btn-learn:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #000b34;
  color: #fff;
}

/* --------- Start growing Section --------- */
.growing_info {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  background: url(../images/growing_bg.jpg) no-repeat;
  /*background-position: top center;*/
  background-size: cover;
  padding: 70px 0 35px;
  text-align: center;
  position: relative;
}

.growing_info .small_logo {
  background: url(../images/short_logo.png) no-repeat;
  width: 82px;
  height: 82px;
  display: block;
  position: absolute;
  right: 60px;
  top: 52px;
}

.growing_info .growing_txt {
  width: 700px;
  display: block;
  margin: auto;
  text-align: center;
}

.growing_info .growing_txt h3 {
  display: inline-block;
  color: #ffffff;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 32px;
  padding-bottom: 8px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  position: relative;
}

.growing_info .growing_txt h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #7c489a;
  position: absolute;
  bottom: -8px;
}

.growing_info .growing_txt p {
  display: block;
  color: #fefefe;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.growing_info .growing_txt .btn-learn {
  display: inline-block;
  width: 163px;
  padding: 10px 18px;
  background: transparent;
  height: 50px;
  margin-top: 10px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.growing_info .growing_txt .btn-learn:hover,
.growing_info .growing_txt .btn-learn:active,
.growing_info .growing_txt .btn-learn:focus {
  background: #ffffff;
  color: #303030;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* -------------- Start services valu section ---------------*/
.services_value {
  width: 100%;
  display: block;
  background: #ffffff;
  float: none;
  clear: both;
  padding: 90px 0 25px;
}

.services_value .value_area {
  width: 100%;
  display: block;
  padding: 0 100px;
  text-align: center;
}

.services_value .value_area ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.services_value .value_area ul li {
  width: 33.3%;
  display: block;
  text-align: center;
}

.services_value .counter_box {
  width: 100%;
  margin-bottom: 5px;
  text-align: center;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

.services_value .counter_box span {
  display: block;
  text-align: center;
  color: #2d5d8b;
  font-size: 88px;
  line-height: 92px;
  margin-bottom: 5px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
}

.services_value .counter_box small {
  color: #2d5d8b;
  font-size: 88px;
  line-height: 92px;
  margin-bottom: 5px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
  margin-left: 2px;
  vertical-align: baseline;
}

.services_value .value_text {
  width: 100%;
  display: block;
  text-align: center;
  padding: 5px 15px 12px;
}

.services_value .value_text h4 {
  color: #2c2c2c;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.services_value .value_text p {
  width: 260px;
  margin: auto auto 20px;
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.services_value .value_text .btn-learn {
  width: 165px;
  display: inline-block;
  height: 50px;
  background: transparent;
  text-align: center;
  padding: 10px 15px;
  /* ---------- PTAC change -----------*/
  border: 2px solid #7b4799;
  border-radius: 25px;
  box-shadow: none;
  outline: none;
  color: #7b4799;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.services_value .value_text .btn-learn:hover,
.services_value .value_text .btn-learn:active,
.services_value .value_text .btn-learn:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* -------- PTAC change ----------*/
  background: #7b4799;
  color: #fff;
}

/* ------------------ Start organization css ------------ */
.organization {
  width: 100%;
  display: block;
  position: relative;
  clear: both;
  float: none;
  background: #fff;
  padding: 40px 0 55px;
}

.organization .org_hdr {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.organization .org_hdr h2 {
  color: #2d5d8b;
  display: inline-block;
  font-size: 34px;
  line-height: 50px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 8px;
}

.organization .org_hdr h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #2d5d8b;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.organization .org_hdr p {
  display: block;
  color: #2d5d8b;
  font-size: 26px;
  line-height: 32px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.organization .org_hdr p span {
  color: #7c489a;
}

/*----------- Start location area section ------------*/
.organization .org_menu {
  width: 100%;
  display: block;
  margin-top: 90px;
  text-align: left;
}

.organization .org_menu .org_hr {
  width: 100%;
  display: block;
  margin: 0;
  padding: 25px 22px;
  border: none;
  border-radius: 0;
  text-align: left;
  background: #003366;
}

.organization .org_menu .org_hr h4 {
  color: #ffffff;
  display: block;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 35px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: auto;
}

.organization .org_hr .navbar-toggler {
  display: none;
  opacity: 0;
}

.organization .org_menu ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.organization .org_menu ul li {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  text-align: left;
  background: #2d5d8b;
  border-bottom: 2px solid #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.organization .org_menu ul li:last-child {
  border-bottom-width: 0;
}

.organization .org_menu ul li a {
  display: block;
  width: 100%;
  padding: 20px 22px;
  color: #ffffff;
  text-align: left;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.organization .org_menu ul li a small {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
}

.organization .org_menu ul li a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7c489a;
}

.organization .org_menu ul li:hover a {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7c489a;
}

.organization .org_menu ul li.active a {
  background: #7c489a;
}

.organization .location_map {
  width: 100%;
  display: block;
  position: static;
  padding-right: 250px;
  text-align: left;
  margin-top: 20px;
}

.organization .location_map .common_location {
  width: 100%;
  text-align: left;
  display: none;
  position: relative;
}

.organization .location_map .common_location.active {
  display: block;
}

.organization .location_map .map_pic {
  width: 445px;
  text-align: left;
  position: relative;
}

.organization .location_map .map_pic img {
  width: 100%;
  vertical-align: middle;
}

.organization .location_map .location_icon {
  display: block;
  box-shadow: none;
  outline: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.organization .location_map .location_icon.common {
  top: 60%;
  left: 60%;
}

.organization .location_map .location_icon.icon1 {
  top: 48%;
  left: 45%;
}

.organization .location_map .location_icon.icon2 {
  top: 45%;
  left: 58%;
}

.organization .location_map .location_icon.icon3 {
  top: inherit;
  left: 60%;
  bottom: 30%;
}

.organization .location_map .location_icon.icon4 {
  top: 60%;
  left: 85%;
}

.organization .location_map .location_icon.icon5 {
  top: 12%;
  left: 75%;
}

.organization .location_map .location_icon.icon05 {
  top: 58%;
  left: 52%;
}

.organization .location_map .location_icon.icon6 {
  top: 77%;
  left: 22%;
}

.organization .location_map .location_icon.icon7 {
  top: 90%;
  left: 10%;
}

.organization .location_map .location_icon.icon8 {
  top: 78%;
  left: 30%;
}

.organization .location_map .location_icon.icon9 {
  top: 60%;
  left: 35%;
}

.organization .location_map .location_icon.icon01 {
  top: 82%;
  left: 20%;
}

.organization .location_map .location_icon.icon11 {
  top: 57%;
  left: 45%;
}

.organization .location_map .location_icon.icon12 {
  top: 3.5%;
  left: 60%;
}

.organization .location_map .location_icon.icon13 {
  top: 5px;
  left: 67%;
}

.organization .location_map .location_icon.icon14 {
  top: 39%;
  left: 75%;
}

.organization .location_map .location_icon.icon15 {
  top: 18%;
  left: 75%;
}

.organization .location_map .location_icon.icon16 {
  top: 35%;
  left: 67%;
}

.organization .location_map .location_icon.icon17 {
  top: 24%;
  left: 72%;
}

.organization .location_map .location_icon.icon18 {
  top: 30%;
  left: 70%;
}

.organization .location_map .location_icon {
  background: url(../images/inactive_icon.png) no-repeat center;
  background-size: 100% 100%;
  width: 18px;
  height: 25px;
  border: none;
  outline: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.organization .location_map .location_icon.active {
  background: url(../images/active_icon.png) no-repeat center;
  background-size: 100% 100%;
  width: 18px;
  height: 25px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.all_location_popup .location_wrapper {
  display: none;
}

.all_location_popup .location_active {
  display: block;
}

/*------- Start location popup -------------*/
.organization .locationpopup {
  width: 355px;
  min-height: 350px;
  display: none;
  position: absolute;
  top: 22%;
  right: 5%;
}

.organization .locationpopup.active {
  display: block;
}

.organization .popup_area {
  width: 100%;
  display: block;
  position: relative;
  background: #fff;
  box-shadow: 0px 3px 6px 2px #afafaf;
  padding: 22px 16px;
  z-index: 9;
}

.organization .popup_area .close {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  text-shadow: none;
  top: 5px;
  right: 5px;
  line-height: normal;
  font-size: 16px;
  border: 3px solid #7b479a;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  background: transparent;
  cursor: pointer;
}

.organization .popup_area .close .fa {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2d5d8b;
}

.organization .popup_area .close:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.organization .popup_area:before {
  content: "";
  background: url(../images/popup_after.png) no-repeat;
  width: 38px;
  height: 45px;
  background-size: cover;
  position: absolute;
  top: 20px;
  left: -38px;
}

.organization .popup_hdr {
  width: 100%;
  display: block;
  text-align: left;
}

.organization .info_hd {
  width: 100%;
  display: table;
  padding-bottom: 0px;
}

.organization .info_hd span,
.organization .info_hd h4 {
  display: table-cell;
  vertical-align: middle;
}

.organization .popup_hdr p {
  display: block;
  width: 100%;
  color: #303030;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.organization .info_hd span {
  width: 30px;
  text-align: left;
  vertical-align: top;
  padding-right: 6px;
}

.organization .info_hd h4 {
  color: #7c489a;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: auto;
  text-transform: uppercase;
}

.organization .types_area {
  width: 100%;
  display: block;
  clear: both;
  margin-top: 0px;
}

.organization .types_area span {
  display: block;
  width: 100%;
  padding-left: 32px;
  color: #7c489a;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.organization .types_area h5 {
  color: #1d324d;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 2px;
}

.organization .types_area ul {
  width: 100%;
  display: block;
}

.organization .types_area ul li {
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
  padding: 0 0 8px 12px;
  color: #303030;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.organization .types_area ul li:before {
  content: "\f105";
  font-size: 18px;
  font-family: 'FontAwesome';
  line-height: 18px;
  font-weight: 800;
  color: #7c489a;
  position: absolute;
  left: 0;
  top: 0;
}

.organization .popupcontent {
  width: 100%;
  display: block;
  margin-top: 5px;
  text-align: left;
  clear: both;
}

.organization .popupcontent h5 {
  color: #1d324d;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 2px;
}

.organization .popupcontent .link_detils {
  width: 100%;
  display: table;
  margin-bottom: auto;
}

.organization .popupcontent .link_detils span,
.organization .popupcontent .link_detils p {
  display: table-cell;
  vertical-align: middle;
}

.organization .popupcontent .link_detils span {
  width: 28px;
  text-align: center;
  padding-right: 6px;
  vertical-align: baseline;
}

.organization .popupcontent .link_detils p {
  color: #303030;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.organization .popupcontent .link_detils p a {
  display: inline-block;
  color: #303030;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.organization .popupcontent .link_detils p a:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #7c489a;
}

.organization .popupcontent .link_detils:nth-child(2n) p a {
  color: #62337c;
}

/* ------------- Start information section ------------------ */
.information {
  width: 100%;
  display: block;
  float: none;
  clear: both;
  background: #003366 url(../images/information_bg.jpg) no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  position: relative;
}

.information .place_area {
  max-width: 100%;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  padding-left: 190px;
}

.information .place_area .left_box {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
}

.information .place_area h2 {
  display: block;
  width: 100%;
  text-align: left;
  color: #ffffff;
  font-size: 80px;
  line-height: 85px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  -wekit-text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.information .place_area .right_box {
  background: #2d5d8b;
  /* Old browsers */
  background: -moz-linear-gradient(left, #2d5d8b 0%, #00032b 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #2d5d8b 0%, #00032b 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #2d5d8b 0%, #00032b 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /*  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#2d5d8b', endColorstr='#00032b', GradientType=1); */
  /* IE6-9 */
  opacity: .9;
  background-size: 100% 100%;
  width: 100%;
  padding: 100px 195px 130px 165px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  margin-left: 30px;
}

.information .place_area .box_area {
  width: 100%;
  display: block;
  text-align: left;
  position: relative;
}

.information .place_area .box_area:before {
  content: "";
  display: block;
  background: url(../images/box_conention.png) no-repeat;
  width: 80px;
  height: 70px;
  background-size: cover;
  position: absolute;
  top: -20%;
  left: -28%;
}

.information .place_area .box_area:after {
  content: "";
  display: block;
  background: url(../images/box_conention.png) no-repeat;
  width: 80px;
  height: 70px;
  background-size: cover;
  position: absolute;
  bottom: 10%;
  right: 0;
  transform: rotate(180deg);
}

.information .place_area .author {
  width: 100%;
  display: block;
  margin-top: 50px;
}

.information .place_area .author h6 {
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: auto;
}

.information .place_area .author p {
  color: #ffffff;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: auto;
  font-family: 'Open Sans', sans-serif;
}

.information .place_area .box_area p {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.information .place_area .box_area p a {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.information .place_area .box_area p a:hover {
  color: #1b91e8;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* ------------- Start information2 section ------------------ */
.information2 {
  width: 100%;
  display: block;
  float: none;
  clear: both;
  background: #003366 url(../images/information_bg2.jpg) no-repeat;
  background-position: top right;
  background-size: cover;
  position: relative;
}

.information2 .place_area {
  max-width: 100%;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  padding-right: 190px;
}

.information2 .place_area .left_box {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
}

.information2 .place_area h2 {
  display: block;
  width: 100%;
  text-align: right;
  color: #ffffff;
  font-size: 80px;
  line-height: 85px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  -wekit-text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.information2 .place_area .right_box {
  background: #2d5d8b;
  /* Old browsers */
  background: -moz-linear-gradient(left, #2d5d8b 0%, #00032b 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #2d5d8b 0%, #00032b 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #2d5d8b 0%, #00032b 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#2d5d8b', endColorstr='#00032b', GradientType=1); */
  /* IE6-9 */
  opacity: .9;
  background-size: 100% 100%;
  width: 100%;
  padding: 80px 195px 110px 165px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  margin-right: 30px;
}

.information2 .place_area .box_area {
  width: 100%;
  display: block;
  text-align: left;
  position: relative;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}

.information2 .place_area .box_area p {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.information2 .place_area .box_area h5 {
  color: #ffffff;
  font-size: 34px;
  line-height: 36px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  padding-bottom: 8px;
}

.information2 .place_area .box_area h5:before {
  content: "";
  display: block;
  width: 65px;
  height: 5px;
  background: #1b91e8;
  position: absolute;
  bottom: 0;
  left: 5px;
}

.information2 .place_area .box_area .learn {
  width: 100%;
  display: block;
  text-align: left;
  margin-top: 8px;
}

.information2 .place_area .box_area .btn-learn {
  display: inline-block;
  width: 163px;
  padding: 10px 18px;
  background: transparent;
  height: 50px;
  margin-top: 10px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.information2 .place_area .box_area .btn-learn:hover,
.information2 .place_area .box_area .btn-learn:active,
.information2 .place_area .box_area .btn-learn:focus {
  background: #ffffff;
  color: #303030;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* ---------------- Start blog section ------------- */
.gallery_area {
  width: 100%;
  display: block;
  float: none;
  clear: both;
  background: #003366;
  padding-top: 24px;
}

.gallery_area .gallery_headding {
  width: 100%;
  display: block;
  text-align: center;
}

.gallery_area .gallery_headding h4 {
  color: #ffffff;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.gallery_area .our_blog {
  width: 100%;
  display: block;
  position: relative;
  clear: both;
  float: none;
  padding: 0;
  margin: 20px auto auto;
  background: #f7f7f7;
  padding: 18px 100px 12px;
}

.gallery_area .our_blog .item {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 12px;
}

.gallery_area .our_blog .item a {
  width: 100%;
  height: 100%;
  display: block;
  background: #003366;
}

.gallery_area .our_blog .item a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery_area .our_blog .img_box {
  width: 100%;
  height: 355px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #fff;
}

.gallery_area .our_blog .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.gallery_area .our_blog .box-cntent {
  width: 100%;
  display: block;
  text-align: left;
  padding: 15px 22px;
}

.gallery_area .our_blog .box-cntent h4 {
  color: #ffffff;
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 6px;
  text-transform: none;
}

.gallery_area .our_blog .box-cntent p {
  display: block;
  color: #ffffff;
  margin-bottom: auto;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.gallery_area .our_blog .owl-nav {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
}

.gallery_area .our_blog .owl-nav .owl-prev {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  background-size: cover;
  position: absolute;
  left: 15px;
  top: 0px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all ease-in-out .3s;
}

.gallery_area .our_blog .owl-nav .owl-next {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  position: absolute;
  right: 15px;
  top: 0px;
  transition: all ease-in-out .3s;
}

.gallery_area .our_blog .owl-nav .owl-prev.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.gallery_area .our_blog .owl-nav .owl-next.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.gallery_area .our_blog .owl-nav:hover {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.8;
}

.gallery_area .our_blog.owl-theme .owl-dots {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 25px;
}

.gallery_area .our_blog.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border: 1px solid #6383c0;
  margin: 5px 3.5px;
  background: transparent;
}

.gallery_area .our_blog.owl-theme .owl-dots .owl-dot.active span {
  background: #6383c0;
}

/* ----------- Start Footer section ------------ */
.main_footer {
  width: 100%;
  display: block;
  float: none;
  clear: both;
  /* ------------ PTAC -------*/
  background: #7b4799;
  padding: 65px 0 40px;
}

.main_footer .quick_links {
  text-align: left;
  display: block;
}

.main_footer .quick_links p {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.main_footer .quick_links ul {
  display: block;
  width: 100%;
  text-align: left;
}

.main_footer .quick_links ul li {
  width: 100%;
  display: block;
  padding-bottom: 8px;
}

.main_footer .quick_links ul li a {
  display: inline-block;
  font-size: 16px;
  padding: 0;
  line-height: 24px;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main_footer .quick_links ul li a:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #e3b9fb;
}

.main_footer .about_info {
  width: 100%;
  display: block;
  text-align: left;
  padding-left: 15px;
}

.main_footer .about_info p {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.main_footer .about_intro {
  width: 100%;
  display: block;
  text-align: left;
}

.main_footer .about_intro p {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: inherit;
  margin-bottom: 12px;
}

.main_footer .about_intro a {
  display: inline-block;
  position: relative;
  text-align: left;
  color: #ffffff;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  padding-right: 20px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main_footer .about_intro a:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/ft_arrow.png) no-repeat;
  width: 12px;
  height: 12px;
  top: 5px;
  right: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.main_footer .about_intro a:hover {
  color: #e3b9fb;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main_footer .about_intro a:hover:after {
  right: -3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.main_footer .ft_contact {
  width: 100%;
  display: block;
  text-align: left;
  padding-left: 50px;
}

.main_footer .ft_contact p {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.main_footer .ft_table {
  width: 100%;
  display: table;
  margin-bottom: 15px;
}

.main_footer .ft_table span,
.main_footer .ft_table p {
  display: table-cell;
  vertical-align: middle;
}

.main_footer .ft_table span {
  width: 20px;
  height: 20px;
  text-align: left;
  vertical-align: baseline;
}

.main_footer .ft_table p {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: inherit;
  font-family: 'Open Sans', sans-serif;
  padding-left: 8px;
  margin-bottom: auto;
}

.main_footer .ft_table p a {
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main_footer .ft_table p a:hover {
  color: #b0c8e0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main_footer .view_location {
  display: inline-block;
  margin-top: 8px;
  padding-left: 55px;
  text-align: left;
}

.main_footer .view_location a {
  display: inline-block;
  position: relative;
  text-align: left;
  color: #ffffff;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  padding-right: 20px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main_footer .view_location a:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/ft_arrow.png) no-repeat;
  width: 12px;
  height: 12px;
  top: 5px;
  right: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.main_footer .view_location a:hover {
  color: #e3b9fb;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.main_footer .view_location a:hover:after {
  right: -3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.main_footer .icon_info {
  width: 100%;
  display: block;
  text-align: center;
  padding-left: 50px;
}

.main_footer .memdc_logo {
  width: 205px;
  display: block;
  margin: auto 0 45px auto;
}

.main_footer .memdc_logo a {
  display: inline-block;
}

.main_footer .memdc_logo a img {
  width: 100%;
}

.main_footer .social_links {
  width: 100%;
  display: block;
}

.main_footer .social_links ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-left: 15px;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.main_footer .social_links ul li {
  display: inline-block;
  margin-right: 15px;
}

.main_footer .social_links ul li:last-child {
  margin-right: 0;
}

.main_footer .company_info {
  width: 100%;
  display: block;
  margin-top: 45px;
  float: none;
  clear: both;
  position: relative;
}

.main_footer .company_info:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #6a3a86;
  box-shadow: 0 1px 0 0 #8953a7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.main_footer .copyright_info {
  width: 100%;
  margin-right: auto;
  padding-top: 35px;
  display: block;
  text-align: center;
}

.main_footer .copyright_info p {
  color: #e3b9fb;
  display: block;
  margin-bottom: auto;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.main_footer .copyright_info p a {
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main_footer .copyright_info p a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #e3b9fb;
}

.main_footer .copyright_info p a strong {
  text-decoration: underline;
}

/* -------------- ========================== * * * * * * * * * * * * * =============================== ------------------ */
/* ------------ Start inner section with sidebar ---------------- */
.inner_banner {
  width: 100%;
  display: block;
  margin: auto;
  border-bottom: 10px solid #f16543;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.inner_banner .item {
  width: 100%;
  min-height: 450px;
  display: block;
}

.inner_banner img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
}

.inner_banner .owl-carousel {
  width: 100%;
  display: block;
  background: transparent;
  overflow: hidden;
}

.inner_banner.owl-carousel .owl-stage-outer {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.inner_banner .owl-item {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}

.inner_banner .owl-dots {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
}

.inner_banner .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 30px;
  margin: 5px 3px;
  border: 2px solid #fff;
  background: transparent;
}

.inner_banner .owl-dots .owl-dot.active span,
.inner_banner .owl-dots .owl-dot:hover span {
  background: #7c489a;
  border: 2px solid #7c489a;
  transition: all 0.3s;
}

/* -------- Inner Section --------- */
.inner_sec {
  background: #ffffff;
  width: 100%;
  float: none;
  clear: both;
  /*padding: 45px 0 50px 190px;*/
  padding: 45px 0 50px 150px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.inner_sec .left_sec {
  width: 75%;
  display: block;
  padding-right: 82px;
  text-align: left;
}

.inner_sec .inner_headding {
  width: 100%;
  display: block;
  text-align: left;
}

.inner_sec .inner_headding h1 {
  color: #2d5d8b;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.inner_sec .inner_headding p {
  display: block;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 40px;
  font-family: 'Open Sans', sans-serif;
}

.inner_sec .inner_types {
  width: 100%;
  display: block;
  text-align: left;
}

.inner_sec .inner_types h2 {
  color: #7c489a;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.inner_sec .types {
  width: 100%;
  display: block;
  padding-top: 35px;
  text-align: center;
}

.inner_sec .types ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: -77px;
}

.inner_sec .types ul li {
  width: 48%;
  display: block;
  padding: 0 15px 85px 0;
}

.inner_sec .types ul li:nth-child(2n) {
  padding-left: 15px;
  padding-right: 0px;
}

.inner_sec .types ul .box {
  display: table;
  width: 100%;
}

.inner_sec .types ul .box .angle,
.inner_sec .types ul .box_info {
  display: table-cell;
  vertical-align: middle;
}

.inner_sec .types ul .box .angle {
  width: 100px;
  padding-right: 8px;
  text-align: center;
  vertical-align: baseline;
}

.inner_sec .types ul .box span {
  display: block;
  width: 70px;
  height: 70px;
  border: 4px solid #d6e3ed;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-top: auto;
  padding: 10px 8px 5px 6px;
}

.inner_sec .types ul .box span h2 {
  display: inline-block;
  width: 100%;
  text-align: center;
  overflow: hidden;
  word-break: normal;
  text-overflow: ellipsis;
  color: #6383c0;
  font-size: 36px;
  line-height: 38px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.inner_sec .types ul .box_info {
  text-align: left;
  padding-left: 15px;
}

.inner_sec .types ul .box_info h6 {
  display: block;
  color: #2d5d8b;
  font-size: 19px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.inner_sec .types ul .box_info h6 a {
  color: #2d5d8b;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.inner_sec .types ul .box_info h6 a:hover {
  color: #1b91e8;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.inner_sec .types ul .box_info p {
  color: #5b5b5b;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.inner_sec .success_story {
  width: 100%;
  display: block;
  clear: both;
  float: none;
}

.success_story .story_hdr {
  width: 100%;
  display: block;
  text-align: left;
}

.success_story .story_hdr h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 22px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 24px;
}

.success_story .story_area {
  width: 100%;
  display: block;
  background: #fbfbfb;
  padding: 30px 20px;
  margin-bottom: 35px;
  text-align: left;
  border-radius: 3px;
}

.success_story .story_area:last-child {
  margin-bottom: 26px;
}

.success_story .story_area h5 {
  color: #2d5d8b;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 6px;
}

.success_story .story_area .area_info {
  width: 100%;
  display: block;
}

.success_story .story_area .area_info p {
  color: #2d5d8b;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 22px;
  font-family: 'Roboto', sans-serif;
}

.success_story .story_area p span {
  display: block;
  margin-top: 14px;
  text-align: left;
}

.success_story .story_area p span a {
  color: #2d5d8b;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.success_story .story_area p span a:hover {
  color: #003366;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.success_story .story_area .area_info p a {
  color: #2d5d8b;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.success_story .story_area .area_info p a:hover {
  color: #003366;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.success_story .story_area p {
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 32px;
  font-family: 'Open Sans', sans-serif;
}

.inner_sec .author_said {
  width: 100%;
  display: block;
  padding: 35px 0 45px;
}

.inner_sec .main_point {
  width: 100%;
  position: relative;
  /* ---------- PTAc -----------*/
  background: #ededed;
  border-radius: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.inner_sec .main_point:after {
  content: "";
  display: block;
  background: url(../images/title_arrow.png) no-repeat;
  width: 36px;
  height: 24px;
  position: absolute;
  bottom: -22px;
  left: 65px;
}

.inner_sec .main_txt {
  width: 100%;
  display: block;
  position: relative;
  padding: 55px 30px 60px 140px;
}

.inner_sec .main_txt:after {
  content: "";
  display: block;
  background: url(../images/box_conention.png) no-repeat;
  width: 80px;
  height: 70px;
  background-size: cover;
  position: absolute;
  top: 15px;
  left: 5%;
}

.inner_sec .main_txt p {
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: auto;
}

.inner_sec .author_info {
  width: 100%;
  display: block;
  padding: 28px 0 0 12px;
}

.inner_sec .author_info h4 {
  color: #2d5d8b;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.inner_sec .author_info p {
  color: #2d5d8b;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.inner_sec .author_info p a {
  color: #2d5d8b;
  font-size: 15px;
  line-height: 20px;
  text-transform: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.inner_sec .author_info p a:hover {
  color: #003366;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* ------- Values ----------- */
.our_value {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: center;
  padding-bottom: 44px;
}

.our_value h3 {
  color: #2d5d8b;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 28px;
  text-align: left;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.our_value ul {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding-bottom: 35px;
}

.our_value ul li {
  width: 33.3%;
  display: block;
  /*padding: 0px 15px;*/
  border-right: 1px solid #d6e3ed;
}

.our_value ul li:last-child {
  padding-right: 0;
  border-right-width: 0;
}

.our_value ul li span {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  color: #5b5b5b;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.our_value ul .counter_box {
  width: 100%;
  text-align: center;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.our_value ul .counter_box span {
  display: inline-block;
  color: #67006c;
  font-size: 46px;
  line-height: 52px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
}

.our_value ul .counter_box small {
  color: #67006c;
  font-size: 46px;
  line-height: 52px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
  margin-right: 8px;
  vertical-align: baseline;
}

.our_value .value_text {
  width: 100%;
  display: block;
  text-align: center;
  padding: 18px 15px 12px;
}

.our_value .value_text h4 {
  color: #5b5b5b;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.our_value .value_text p {
  color: #5b5b5b;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.our_value p {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

/* ------------ our valu with more content ------------ */
.more_valu {
  width: 100%;
  display: block;
  clear: both;
}

.more_valu .our_value ul li {
  width: 25%;
}

.more_valu .our_value ul .counter_box span {
  font-size: 30px;
  line-height: 36px;
}

.more_valu .our_value ul .counter_box small {
  font-size: 30px;
  line-height: 36px;
}

.more_valu .our_value .value_text {
  padding-top: 5px;
}

/*.our_value .btn-download{*/
.btn-download {
  min-width: 267px;
  margin: auto;
  height: 50px;
  box-shadow: none !important;
  outline: none !important;
  border: 2px solid #7c489a;
  border-radius: 25px;
  text-align: center;
  padding: 12px 15px;
  background: transparent;
  color: #7c489a !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*.our_value .btn-download:hover, .our_value .btn-download:active, .our_value .btn-download:focus{*/
.btn-download:hover,
.btn-download:active,
.btn-download:focus {
  background: #7c489a;
  color: #ffffff !important;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* ------------------ Common section ---------------- */
.common_inner {
  width: 100%;
  display: block;
  text-align: left;
  clear: both;
  float: none;
}

.common_inner h1 {
  color: #2d5d8b;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.common_inner h2 {
  display: block;
  color: #7c489a;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.common_inner h3 {
  color: #2d5d8b;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}

.common_inner h4 {
  color: #2d5d8b;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}

.common_inner h5 {
  color: #2d5d8b;
  font-size: 19px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}

.common_inner h6 {
  color: #2d5d8b;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
}

.common_inner p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.common_inner p a {
  display: inline-block;
  color: #003366;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.common_inner p a:hover {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #7c489a;
}

.common_inner p strong {
  font-weight: 600;
}

.common_inner p b {
  color: #2d5d8b;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.common_inner .btn-link {
  min-width: 145px;
  display: inline-block;
  min-height: 50px;
  height: auto;
  background: transparent;
  text-align: center;
  padding: 10px 28px;
  border: 2px solid #7c489a;
  border-radius: 25px;
  box-shadow: none;
  outline: none;
  margin-bottom: 12px;
  text-decoration: none !important;
  color: #7c489a;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.common_inner .btn-link:hover,
.common_inner .btn-link:active,
.common_inner .btn-link:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7c489a;
  color: #fff;
}

.forum {
  width: 100%;
  display: block;
  clear: both;
  float: none;
}

.forum .forum_add {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.forum .forum_add span {
  text-align: left;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  margin-right: 5px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.forum .forum_add span {
  display: inline-block;
  vertical-align: middle;
}

.common_inner ul {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.common_inner ul li {
  width: 100%;
  display: block;
  padding: 0 8px 12px 22px;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 28px;
  position: relative;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.common_inner ul li:last-child {
  padding-bottom: 0;
}

.common_inner ul li:before {
  content: "\f061";
  font: normal normal normal 16px/2 "FontAwesome";
  line-height: 24px;
  display: block;
  color: #7c489a;
  position: absolute;
  top: 2px;
  left: 0;
}

.common_inner ul li > ul {
  margin: 10px 0 0 0;
  padding-bottom: 10px;
}

.common_inner ul li > ul li:before {
  color: #6383c0;
}

.common_inner ul li strong,
.common_inner ul li b {
  color: #2d5d8b;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.common_inner ol li strong,
.common_inner ol li b {
  color: #2d5d8b;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.common_inner ul li a,
.common_inner ol li a {
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.common_inner ul li a:hover,
.common_inner ol li a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #5b5b5b;
}

.common_inner ol {
  width: 100%;
  display: block;
  text-align: left;
  padding-top: 12px;
  margin-bottom: 15px;
}

.common_inner ol li {
  width: 100%;
  padding: 0 8px 14px 5px;
  list-style-position: inside;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.common_inner ol li:last-child {
  padding-bottom: 0;
}

.common_inner ol li > ol {
  margin-bottom: 0;
  padding-left: 15px;
}

.common_inner .table_secondary {
  width: 100%;
  display: block;
  margin-top: 22px;
}

.common_inner .table_secondary thead {
  background: #1b91e8;
}

.common_inner .table_secondary .table-bordered th,
.common_inner .table_secondary .table-bordered td {
  border: 1px solid #2d5d8b;
}

.table_secondary .table th {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  padding: 12px 15px;
  vertical-align: middle;
}

.table_secondary .table th sup {
  font-size: 28px;
  top: 2px;
  left: 1px;
}

.table_secondary .table td {
  color: #5b5b5b;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 24px;
  padding: 8px 15px;
  vertical-align: middle;
}

/* --------- Common value ----------- */
.common_value {
  width: 100%;
  display: block;
  margin: 18px 0 25px;
}

.common_value ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.common_value ul li {
  width: 33.3%;
  display: block;
  border-right: 1px solid #d6e3ed;
  text-align: center;
  padding: 0 15px;
}

.common_value ul li:last-child {
  padding-right: 0;
  border-right-width: 0;
}

.common_value ul li:before {
  content: none;
}

.common_value .counter_box {
  width: 60%;
  position: relative;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto 18px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: baseline;
  align-items: baseline;
}

.common_value .counter_box span {
  display: inline-block;
  color: #2d5d8b;
  font-size: 22px;
  line-height: 25px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-right: 5px;
  vertical-align: baseline;
}

.common_value .counter_box p {
  display: inline-block;
  color: #2d5d8b;
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-size: 22px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: auto;
  font-family: 'Roboto', sans-serif;
}

.common_inner ul li p {
  color: #5b5b5b;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.common_inner img.alignleft {
  float: left;
  margin: 5px 12px auto auto;
  box-shadow: 1px 1px 4px 2px #d4d4d4;
  display: inline-block;
  border: 1px solid #f4f4f4;
  padding: 3px;
}

.common_inner img.alignright {
  float: right;
  margin: 5px auto auto 12px;
  box-shadow: 1px 1px 4px 2px #d4d4d4;
  display: inline-block;
  border: 1px solid #f4f4f4;
  padding: 3px;
}

.common_inner img.aligncenter {
  float: none;
  box-shadow: 1px 1px 4px 2px #d4d4d4;
  display: inline-block;
  border: 1px solid #f4f4f4;
  padding: 3px;
}

.common_inner .our_partners {
  width: 100%;
  display: block;
  margin-top: 30px;
  padding-bottom: 62px;
}

.common_inner .more_partners {
  width: 100%;
  padding: 0 46px;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.common_inner .more_partners .item {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
}

.common_inner .more_partners .box {
  text-align: center;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.common_inner .more_partners .box a {
  text-align: center;
  width: 145px;
  height: 145px;
  margin: auto;
  border: 1px solid #daebf9;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.common_inner .more_partners .box a img {
  width: 145px;
  overflow: auto;
}

.common_inner .more_partners .name {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding-top: 10px;
}

.common_inner .more_partners .name p {
  color: #303030;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
}

.common_inner .more_partners .name p a {
  color: #303030;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.common_inner .more_partners .name p a:hover {
  color: #7c489a;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.common_inner .more_partners .owl-nav {
  width: 100%;
  display: block;
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
}

.common_inner .more_partners .owl-nav .owl-prev {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  background-size: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all ease-in-out .3s;
}

.common_inner .more_partners .owl-nav .owl-next {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  position: absolute;
  right: -5px;
  top: 0px;
  transition: all ease-in-out .3s;
}

.common_inner .more_partners .owl-nav .owl-prev.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.common_inner .more_partners .owl-nav .owl-next.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.common_inner .more_partners .owl-nav:hover {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.8;
}

.common_inner .loans_hdr {
  width: 100%;
  display: block;
  padding-top: 55px;
  clear: both;
  float: none;
  text-align: left;
}

.common_inner .loans_area {
  width: 100%;
  padding-bottom: 35px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
}

.common_inner .loans_area .loan_row {
  width: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex: 1 0 auto;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  -o-flex: 1 0 auto;
  flex: 1 0 auto;
  border-bottom: 1px solid #d6e3ed;
}

.common_inner .loans_area .loan_row:first-child .box {
  padding-top: 0;
}

.common_inner .loans_area .box {
  width: 50%;
  display: block;
  float: left;
  text-align: left;
  padding: 23px 55px 24px 0;
  border-right: 1px solid #d6e3ed;
}

.common_inner .loans_area .box:nth-child(2n) {
  border-right-width: 0;
  padding-left: 65px;
  padding-right: 0;
}

.common_inner .loans_area .loan_row:last-child {
  border-bottom-width: 0;
}

.common_inner .loans_area .box h3 {
  margin-bottom: 12px;
}

.common_inner .loans_area .box p {
  margin-bottom: 12px;
  display: block;
  /*  display: -webkit-box;
  max-width: 100%;
  height: 120px;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;*/
}

.common_inner .loans_area .box a {
  display: inline-block;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.common_inner .loans_area .box a:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #5b5b5b;
}

/*------- Start right section -------*/
.right_sec {
  width: 25%;
  display: block;
  text-align: left;
}

.right_sec .login_area {
  width: 100%;
  display: block;
  background: #7c489a;
  margin-bottom: 20px;
  text-align: left;
}

.right_sec .login_area a {
  width: 100%;
  height: 100%;
  text-align: left;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 15px 25px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  word-break: normal;
  text-transform: uppercase;
  margin-bottom: auto;
}

.right_sec .login_fn {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 25px;
  padding: 0 15px;
}

.right_sec .login_fn .btn-log {
  width: 210px;
  display: inline-block;
  height: 50px;
  background: transparent;
  text-align: center;
  padding: 10px 15px;
  border: 2px solid #2d5d8b;
  border-radius: 25px;
  box-shadow: none;
  outline: none;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.right_sec .login_fn .btn-log:hover,
.right_sec .login_fn .btn-log:active,
.right_sec .login_fn .btn-log:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #2d5d8b;
  color: #fff;
}

.right_sec .side_bar {
  width: 100%;
  display: block;
  padding: 0;
  margin: 10px 0 20px;
}

.right_sec .side_bar:first-child {
  margin-top: 0;
}

.right_sec .side_bar:last-of-type {
  margin-bottom: 0;
}

.right_sec .side_bar aside {
  width: 100%;
  display: block;
  text-align: left;
  clear: both;
}

.right_sec .side_bar .sidebar_hdr {
  background: #f16543;
  padding: 15px 25px;
  text-align: left;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.right_sec .side_bar .sidebar_hdr h2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  word-break: normal;
  text-transform: uppercase;
  margin-bottom: auto;
}

.right_sec .side_bar .sidebar_hdr h2 a {
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.right_sec .side_bar .sidebar_hdr h2 a:hover {
  color: #003366;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.right_sec .side_bar .sidedar_content {
  width: 100%;
  display: block;
  background: #ededed;
  padding: 25px 25px;
  text-align: left;
}

.right_sec .side_bar .sidedar_content ul {
  display: block;
  width: 100%;
  height: 100%;
}

.right_sec .side_bar .sidedar_content ul li {
  display: block;
  width: 100%;
  padding: 0;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.right_sec .side_bar .sidedar_content ul li a {
  display: inline-block;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  padding: 10px 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.right_sec .side_bar .sidedar_content ul li:first-child a {
  padding-top: 0;
}

.right_sec .side_bar .sidedar_content ul li:last-child a {
  padding-bottom: 6px;
}

.right_sec .side_bar .sidedar_content ul li a:hover {
  color: #003366;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.right_sec .side_bar .address_area {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 23px;
}

.right_sec .side_bar .address_area:last-child {
  margin-bottom: 8px;
}

.right_sec .side_bar .address_area p {
  display: block;
  color: #634740;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 5px;
}

.right_sec .side_bar .address_area span {
  display: inline-block;
  color: #634740;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.right_sec .side_bar .address_area span a {
  display: inline-block;
  color: #634740;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.right_sec .side_bar .address_area span a:hover {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #3f2924;
}

.right_sec .our_headquarters {
  width: 100%;
  display: block;
  margin: 0;
  padding: 31px 25px 36px;
  background: #7b4799;
  background-size: 100% 100%;
  text-align: left;
}

.right_sec .our_headquarters .headquat_hrd {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 18px;
}

.right_sec .our_headquarters .headquat_hrd h4 {
  color: #ffffff;
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  margin-bottom: auto;
}

.right_sec .our_headquarters .qut_add {
  width: 100%;
  display: table;
  margin-bottom: 15px;
}

.right_sec .our_headquarters .qut_add span,
.right_sec .our_headquarters .qut_add p {
  display: table-cell;
  vertical-align: middle;
}

.right_sec .our_headquarters .qut_add span {
  width: 20px;
  height: 20px;
  text-align: left;
  vertical-align: baseline;
}

.right_sec .our_headquarters .qut_add p {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: inherit;
  font-family: 'Open Sans', sans-serif;
  padding-left: 8px;
  margin-bottom: auto;
}

.right_sec .our_headquarters .qut_add p a {
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.right_sec .our_headquarters .qut_add p a:hover {
  color: #003366;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.right_sec .our_headquarters .view_location {
  display: inline-block;
  margin: 8px 0 0 5px;
  text-align: left;
}

.right_sec .our_headquarters .view_location a {
  display: inline-block;
  position: relative;
  text-align: left;
  color: #ffffff;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  padding-right: 20px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.right_sec .our_headquarters .view_location a:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/ft_arrow.png) no-repeat;
  width: 12px;
  height: 12px;
  top: 5px;
  right: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.right_sec .our_headquarters .view_location a:hover {
  color: #003366;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.right_sec .our_headquarters .view_location a:hover:after {
  right: -3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* ----------- Start services page section ----------*/
.our_clitns {
  width: 100%;
  display: block;
  text-align: left;
  clear: both;
  float: none;
  margin: 0 0 12px;
  padding: 15px 0 0 0;
}

.our_clitns h4 {
  color: #2d5d8b;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 28px;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.our_clitns .testimonial-slider {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  position: static;
}

.our_clitns .testimonial-slider .item {
  width: 100%;
  display: block;
}

.our_clitns .testimonial {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
}

.our_clitns .testimonial .content {
  padding: 70px 30px 45px;
  border-radius: 6px;
  margin-bottom: 40px;
  position: relative;
  background: #daebf9;
  min-height: 100px;
}

.our_clitns .testimonial .content:after {
  content: "";
  background: url(../images/Tcontent_after.png) no-repeat;
  width: 44px;
  height: 26px;
  background-size: cover;
  position: absolute;
  bottom: -25px;
  left: 16%;
}

.our_clitns .testimonial .content:before {
  content: "";
  background: url(../images/quets.png) no-repeat;
  width: 50px;
  height: 45px;
  background-size: cover;
  position: absolute;
  top: 20px;
  left: 30px;
}

.our_clitns .testimonial p {
  display: block;
  margin-bottom: 10px;
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.our_clitns .testimonial-pic {
  float: left;
  margin-top: 8px;
}

.our_clitns .testimonial-pic > img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #daebf9;
  margin-left: 20px;
  object-fit: cover;
}

.our_clitns .testimonial .testimonial-review {
  margin: 12px 0 0 15px;
  float: left;
  width: calc(100% - 145px);
}

.our_clitns .testimonial .testimonial-title {
  color: #2d5d8b;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

.our_clitns .testimonial > .testimonial-review span {
  color: #2d5d8b;
  display: block;
  font-weight: 400;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: auto;
}

.our_clitns .testimonial .testimonial-review h4 {
  display: block;
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: auto;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.our_clitns .testimonial .testimonial-review p {
  color: #303030;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: auto;
  text-transform: capitalize;
  font-family: 'Open Sans', sans-serif;
}

.our_clitns .testimonial .testimonial-review p a {
  color: #303030;
  text-transform: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.our_clitns .testimonial .testimonial-review p a:hover {
  color: #2d5d8b;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.our_clitns .testimonial-slider.owl-theme .owl-dots {
  margin-top: 28px;
}

.our_clitns .testimonial-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 3px;
  border: 1px solid #6383c0;
  background: transparent;
}

.our_clitns .testimonial-slider .owl-dots .owl-dot.active span {
  background: #6383c0;
}

/* ------------------- Start projects section ------------------ */
.projects {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  background: #f4faff;
  padding: 62px 0 92px;
  text-align: center;
}

.projects .projects_hdr {
  width: 100%;
  display: block;
  padding: 0 30px 53px;
  text-align: center;
}

.projects .projects_hdr h3 {
  color: #7c489a;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: auto;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.projects .projects_slider {
  width: 100%;
  display: block;
  text-align: left;
}

.projects .projects_slider .item {
  width: 100%;
  display: block;
}

.projects .projects_slider .project_box {
  width: 100%;
  display: block;
  position: relative;
}

.projects .projects_slider .project_box a {
  display: block;
  width: 100%;
  height: 100%;
}

.projects .projects_slider .project_box img {
  display: block;
  width: 100%;
  height: auto;
}

.projects .projects_slider .project_box .p_info {
  width: 100%;
  display: block;
  padding: 15px 30px;
  text-align: left;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}

.projects .projects_slider .project_box .p_info p {
  color: #ffffff;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.projects .projects_slider .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 45px 30px;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(124, 72, 154, 0.75);
}

.projects .projects_slider a:hover .overlay {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.projects .projects_slider a:hover .p_info {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.projects .projects_slider .p_intro {
  width: 100%;
  height: 100%;
  text-align: left;
  position: static;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.projects .projects_slider .p_intro h4 {
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.projects .projects_slider .p_intro p {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  white-space: normal;
  -ms-word-break: break-word;
  word-break: break-word;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

.projects .projects_slider .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.projects .projects_slider .owl-nav .owl-prev {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  background-size: cover;
  position: absolute;
  left: -65px;
  top: 0px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all ease-in-out .3s;
}

.projects .projects_slider .owl-nav .owl-next {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  position: absolute;
  right: -65px;
  top: 0px;
  transition: all ease-in-out .3s;
}

.projects .projects_slider .owl-nav .owl-prev.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.projects .projects_slider .owl-nav .owl-next.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.projects .projects_slider .owl-nav:hover {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.8;
}

.projects .projects_slider.owl-theme .owl-dots {
  margin-top: 28px;
}

.projects .projects_slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 3px;
  border: 1px solid #6383c0;
  background: transparent;
}

.projects .projects_slider .owl-dots .owl-dot.active span {
  background: #6383c0;
}

/* ----------------- Start partners section ------------------ */
.main_partners {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: center;
  background: #ffffff;
  padding: 70px 0;
}

.main_partners .partners_hdr {
  width: 100%;
  display: block;
  text-align: center;
}

.main_partners .partners_hdr h4 {
  color: #7c489a;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.main_partners .partners_area {
  width: 100%;
  display: block;
  padding-top: 40px;
}

.main_partners .partners_slider {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.main_partners .partners_slider .item {
  width: 100%;
  display: block;
}

.main_partners .partners_slider .partners_box {
  width: 100%;
  min-height: 100px;
  border: 1px solid #daebf9;
  background: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.main_partners .partners_slider.owl-theme .owl-dots {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 44px;
}

.main_partners .partners_slider.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border: 1px solid #6383c0;
  margin: 5px 3.5px;
  background: transparent;
}

.main_partners .partners_slider.owl-theme .owl-dots .owl-dot.active span {
  background: #6383c0;
}

/* ------------- Start blog post section --------------- */
.post_sec {
  background: #ffffff;
  width: 100%;
  float: none;
  padding-bottom: 35px;
  clear: both;
}

.post_intro {
  width: 100%;
  display: block;
  text-align: left;
  float: none;
  clear: both;
  padding-top: 45px;
}

.blog_post {
  width: 100%;
  display: block;
  text-align: left;
  padding-top: 15px;
}

.blog_post h1 {
  color: #2d5d8b;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.blog_post p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.blog_post span {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 25px;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.blog_post span a {
  color: #2d5d8b;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.blog_post span a:hover {
  color: #7c489a;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.blog_post h4 {
  color: #2d5d8b;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
}

.blog_post .post_area {
  width: 100%;
  display: block;
  text-align: left;
  clear: both;
}

.blog_post .post_area span {
  margin: 0 20px 12px 0;
  float: left;
  width: auto;
}

.blog_post .post_area span img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: cover;
  vertical-align: middle;
  margin-top: 5px;
}

.blog_post img.alignleft {
  float: left;
  max-width: 50%;
  margin: 5px 18px 8px auto;
  box-shadow: 1px 1px 4px 2px #d4d4d4;
  display: inline-block;
  border: 1px solid #f4f4f4;
  padding: 3px;
}

.blog_post img.alignright {
  float: right;
  max-width: 50%;
  margin: 5px auto 8px 18px;
  box-shadow: 1px 1px 4px 2px #d4d4d4;
  display: inline-block;
  border: 1px solid #f4f4f4;
  padding: 3px;
}

.blog_post img.aligncenter {
  float: none;
  max-width: 50%;
  margin-bottom: 16px;
  box-shadow: 1px 1px 4px 2px #d4d4d4;
  display: inline-block;
  border: 1px solid #f4f4f4;
  padding: 3px;
}

.blog_post .post_area .txt p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.blog_post .post_area .txt p a {
  display: inline-block;
  color: #003366;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.blog_post .post_area .txt p a:hover {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #7c489a;
}

.blog_post .post_area .txt ul {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.blog_post .post_area .txt ul li {
  width: 100%;
  display: block;
  padding: 0 8px 12px 22px;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 28px;
  position: relative;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.blog_post .post_area .txt ul li:last-child {
  padding-bottom: 0;
}

.blog_post .post_area .txt ul li:before {
  content: "\f061";
  font: normal normal normal 16px/2 "FontAwesome";
  line-height: 24px;
  display: block;
  color: #7c489a;
  position: absolute;
  top: 2px;
  left: 0;
}

.blog_post .post_area .txt ul li > ul {
  margin: 10px 0 0 0;
  padding-bottom: 10px;
}

.blog_post .post_area .txt ul li > ul li:before {
  color: #6383c0;
}

.blog_post .post_area .txt ul li strong,
.blog_post .post_area .txt ul li b {
  color: #2d5d8b;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.blog_post .post_area .txt ol li strong,
.blog_post .post_area .txt ol li b {
  color: #2d5d8b;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.blog_post .post_area .txt ul li a,
.blog_post .post_area .txt ol li a {
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog_post .post_area .txt ul li a:hover,
.blog_post .post_area .txt ol li a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #5b5b5b;
}

.blog_post .post_area .txt ol {
  width: 100%;
  display: block;
  text-align: left;
  padding-top: 12px;
  margin-bottom: 15px;
}

.blog_post .post_area .txt ol li {
  width: 100%;
  padding: 0 8px 14px 5px;
  list-style-position: inside;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.blog_post .post_area .txt ol li:last-child {
  padding-bottom: 0;
}

.blog_post .post_area .txt ol li > ol {
  margin-bottom: 0;
  padding-left: 15px;
}

/* ----------- Start workforce section ----------- */
.inner_sec.workforce_sec .left_sec {
  padding-right: 125px;
}

.work_inv {
  width: 100%;
  display: block;
}

.work_inv .our_value ul {
  padding-top: 23px;
}

.work_inv .our_value {
  padding-bottom: 22px;
}

.succes_info {
  width: 100%;
  display: block;
  padding-bottom: 25px;
}

.succes_info .testimonial-slider {
  margin-top: 35px;
}

.succes_info .our_clitns .testimonial-slider.owl-theme .owl-dots {
  margin-top: 66px;
}

/* -------------- industries services --------------*/
.inner_sec.Industri_sec .inner_headding p {
  margin-bottom: 21px;
}

.ind_services {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  padding: 62px 0 20px;
}

.ind_services ul {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.ind_services ul li {
  width: 33.3%;
  display: block;
  text-align: center;
  padding: 0 15px 25px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.ind_services ul li:hover .ind_icon {
  box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.38);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.ind_services ul li:first-child {
  padding-left: 0;
}

.ind_services ul li:last-child {
  padding-right: 0;
}

.ind_services ul .ind_icon {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  width: 135px;
  height: 135px;
  background: #6383c0;
  border: 1px solid #cccccc;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.ind_services ul .ind_icon img {
  width: auto;
  margin-top: 0;
  margin-left: 0;
}

.ind_services ul li .ind_info {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  transform: none;
  padding: 68px 0 25px;
}

.ind_services ul li span {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 6px;
  color: #2c2c2c;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.ind_services ul li h4 {
  display: block;
  width: 100%;
  text-align: center;
  color: #2c2c2c;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.ind_services ul li p {
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
  display: block;
  margin: auto;
  overflow: hidden;
}

.ind_services ul .btn-learn {
  width: 165px;
  display: inline-block;
  height: 50px;
  background: transparent;
  text-align: center;
  padding: 10px 15px;
  border: 2px solid #000b34;
  border-radius: 25px;
  box-shadow: none;
  outline: none;
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ind_services ul .btn-learn:hover,
.ind_services ul .btn-learn:active,
.ind_services ul .btn-learn:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #000b34;
  color: #fff;
}

.ind_valu {
  width: 100%;
  display: block;
  padding-top: 28px;
}

.ind_valu .our_value ul {
  padding-bottom: 19px;
}

.ind_valu .our_value .btn-download {
  margin-top: 15px;
}

/*----------------- Start parallax values ---------------*/
.parllax_sec {
  width: 100%;
  display: block;
  position: relative;
  clear: both;
  float: none;
  background: url(../images/parallax_bg.jpg) no-repeat center;
  background-attachment: fixed;
  padding: 10rem 0 3.5rem;
  background-size: cover;
  height: 100%;
}

.parllax_sec:before {
  content: "";
  background: #06121e;
  opacity: 0.4;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
}

.parllax_sec .our_value ul .counter_box span,
.parllax_sec .our_value ul .counter_box small,
.parllax_sec .our_value .value_text h4 {
  color: #ffffff;
}

.parllax_sec .our_value .value_text p {
  color: #fbfbfb;
}

/* -------------------- Strat Connect Area ------------------ */
.connect_area {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  position: relative;
}

.connect_area .organization .location_map {
  padding-right: 15px;
  margin-top: auto;
}

.connect_area .organization {
  position: static;
  padding-top: 0;
}

.connect_area .organization .org_menu .org_hr h4 {
  font-size: 22px;
  line-height: 28px;
}

.connect_area .organization .org_menu ul li a {
  font-size: 18px;
  line-height: 22px;
}

.connect_area .organization .org_menu ul li a small {
  font-size: 13px;
  line-height: 18px;
}

.connect_area .organization .location_map .map_pic {
  margin: 0 auto;
}

.organization .org_menu {
  margin-top: 55px;
}

.connect_area .organization .locationpopup {
  right: 12%;
  width: 385px;
  top: 12%;
}

.connect_area .organization .popup_area:before {
  content: none;
}

.connect_area .organization .popup_area {
  padding: 18px 15px;
}

.connect_area .organization .popupcontent .link_detils p {
  font-size: 14px;
  line-height: 24px;
}

.connect_area .organization .popupcontent .link_detils {
  margin-bottom: 6px;
}

/* -------------- Start newsleatter section --------------- */
.newsleatter {
  width: 100%;
  display: block;
  background: url(../images/news_bg.jpg) no-repeat;
  background-size: cover;
  padding: 58px 0 78px;
  text-align: left;
  position: relative;
}

.newsleatter:after {
  content: "";
  background: url(../images/news_icon.png) no-repeat;
  width: 343px;
  height: 229px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 12px;
}

.newsleatter .news_hdr {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
}

.newsleatter .news_hdr h3 {
  display: block;
  color: #ffffff;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: auto;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.newsleatter .news_hdr p {
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.newsleatter .news_entry {
  width: 100%;
  display: block;
}

.newsleatter .news_entry form {
  width: 100%;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  transition: none;
  background: transparent;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.newsleatter .news_entry form label {
  font-size: 0;
  line-height: 0;
  text-indent: -999px;
  visibility: hidden;
  display: none;
}

.newsleatter .news_entry .form-group {
  width: 300px;
  margin-right: 12px;
  display: block;
}

.newsleatter .news_entry .ctct-button {
  display: none;
}

.newsleatter .news_entry .ctct-form-field {
  width: 300px;
  margin-right: 12px;
  display: block;
}

.newsleatter .news_entry .ctct-form-field.ctct-form-field-hidden {
  display: none;
  visibility: hidden;
}

.newsleatter .news_entry .ctct-form-field.ctct-form-field-submit {
  width: auto;
  margin: 0;
}

.newsleatter .news_entry input {
  width: 100%;
  height: 48px;
  background: #fff;
  border-radius: 3px;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
  box-shadow: none;
  outline: none;
  border: none;
}

.newsleatter .news_entry input[type="submit"] {
  width: 140px;
  height: 48px;
  border-radius: 3px;
  box-shadow: none;
  outline: none;
  border: none;
  background: #7c489a;
  text-align: center;
  padding: 12px 15px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.newsleatter .news_entry input[type="submit"]:hover,
.newsleatter .news_entry input[type="submit"]:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #003366;
}

.newsleatter .news_entry .ctct-disclosure {
  display: none;
}

/* ---------------- Start contact page section -----------------*/
.inner_sec.contact_sec .left_sec {
  padding-right: 112px;
}

.contact_area {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  padding-top: 8px;
  margin-bottom: 1.2rem;
}

.contact_area .side_menu {
  width: 30%;
  display: block;
  float: left;
  padding: 0;
}

.contact_area .side_menu .location_hdr {
  width: 100%;
  display: block;
  background: #003366;
  padding: 18px 15px 14px;
}

.contact_area .side_menu .location_hdr h4 {
  color: #ffffff;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: auto;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.contact_area .side_menu ul {
  width: 100%;
  display: block;
}

.contact_area .side_menu ul li {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  background: #2d5d8b;
  border-bottom: 2px solid #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact_area .side_menu ul li:last-child {
  border-bottom-width: 0;
}

.contact_area .side_menu ul li a {
  width: 100%;
  display: inline-block;
  text-align: left;
  color: #ffffff;
  padding: 22px 15px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: 'Roboto', sans-serif;
}

.contact_area .side_menu ul li small {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: 'Open Sans', sans-serif;
}

.contact_area .side_menu ul li.active {
  background: #7c489a;
}

.contact_area .side_menu ul li:hover > a {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7c489a;
}

.contact_area .map_area {
  width: 70%;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
}

.contact_area .common_area {
  width: 100%;
  float: none;
  text-align: left;
  display: none;
}

.contact_area .common_area.active {
  display: block;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.common_area {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 0.3s;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 0.3s;
  animation: fadeIn ease-in 0.3s;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.common_area.active {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.contact_area .common_area .location_map {
  width: 100%;
  text-align: left;
  height: 337px;
  margin-bottom: 22px;
}

.contact_area .common_area .location_map iframe {
  width: 100%;
  height: 100%;
}

.contact_area .common_area .location_details {
  width: 100%;
  text-align: left;
  padding-left: 30px;
}

.contact_area .common_area .location_details h4 {
  display: block;
  color: #2d5d8b;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.contact_area .common_area .location_details p {
  display: block;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.contact_area .common_area .location_details p a {
  color: #6383c0;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.contact_area .common_area .location_details p a:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #2d5d8b;
}

.contact_area .location_details .lt_table {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.contact_area .location_details .lt_table span,
.contact_area .location_details .lt_table p {
  display: inline-block;
  vertical-align: middle;
}

.contact_area .location_details .lt_table span {
  text-align: left;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 30px;
  margin-right: 5px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.contact_area .location_details .lt_table p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: auto;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.contact_area .location_details .lt_table p a {
  display: inline-block;
  color: #5b5b5b;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.contact_area .location_details .lt_table p a:hover {
  color: #2d5d8b;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.contact_area .common_area .located_map {
  width: 100%;
  text-align: left;
  height: 100%;
  margin-bottom: 22px;
}

.contact_area .common_area .located_map .map_location {
  width: 100%;
  display: block;
  text-align: center;
  height: 620px;
  padding: 0 15px;
}

.contact_area .common_area .located_map .map_location img {
  display: block;
  align-items: center;
  object-fit: contain;
  margin: auto;
  height: 100%;
  width: 100%;
}

.contact_part {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: center;
  padding-top: 54px;
}

.contact_part ul {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 31px;
}

.contact_part ul li {
  width: 33.3%;
  display: block;
  padding: 0;
  border-right: 1px solid #d6e3ed;
}

.contact_part ul li:last-child {
  padding-right: 0;
  border-right-width: 0;
}

.contact_part ul .box {
  width: 100%;
  padding: 35px 20px 45px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.contact_part ul .box h2 {
  width: 100%;
  display: block;
  word-break: normal;
  white-space: normal;
  overflow-wrap: break-word;
  color: #2d5d8b;
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 34px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
}

.contact_part ul .box p {
  display: block;
  color: #5b5b5b;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.contact_part ul .box p a {
  color: #5b5b5b;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.contact_part ul .box p a:hover {
  color: #7c489a;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.contact_part p {
  display: block;
  text-align: left;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.contact_part p a:nth-child(2) {
  color: #6383c0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.contact_part p a:first-child {
  color: #5d5d5d;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.contact_part p a:hover:first-child {
  color: #6383c0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.contact_part p a:hover:nth-child(2) {
  color: #5d5d5d;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* -------------> mobile version <------------- */
.contact_area .location_hdr .location-button {
  display: none;
  opacity: 0;
  box-shadow: none;
  outline: none;
  border: none;
  padding: 0 50px 0 0;
  position: relative;
  text-align: left;
}

.location-icon {
  width: 30px;
  height: 20px;
  position: absolute;
  top: 6px;
  right: 5px;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.location-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.location-icon span {
  background: #f3e5f5;
}

.location-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.location-icon span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.location-icon span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.location-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 8px;
}

.location-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.location-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 8px;
}

/* ----------- Start contact form -------------*/
.contact_form {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  margin-top: 38px;
  padding-bottom: 28px;
}

.contact_form .form_hdr {
  width: 100%;
  display: block;
  text-align: left;
}

.contact_form .form_hdr h2 {
  color: #7c489a;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.contact_form form {
  width: 100%;
  display: block;
  margin-top: 21px;
}

.contact_form .form-row-flex {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.contact_form .form-row-flex .form-group {
  width: calc((100% - 15px) / 3);
}

.contact_form .form-row-flex .form-group:last-child {
  margin-right: 0;
}

.contact_form .form-group input {
  width: 100%;
  display: block;
  border: 1px solid #dddddd;
  height: 44px;
  padding: 15px 18px;
  border-radius: 3px;
  color: #5b5b5b;
  font-size: 16px;
  box-shadow: none;
  outline: none;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
}

.contact_form .form-row {
  margin: auto;
  width: 100%;
}

.contact_form .form-row .form-group {
  width: 100%;
  display: block;
}

.contact_form .form-row .form-group textarea {
  border: 1px solid #dddddd;
  border-radius: 3px;
  box-shadow: none;
  outline: none;
  height: 115px;
  padding: 15px 18px;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
}

.contact_form .form_submit {
  width: 100%;
  display: block;
  text-align: right;
}

.contact_form .btn-send {
  width: 140px;
  height: 48px;
  display: inline-block;
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 3px;
  background: #7c489a;
  text-align: center;
  padding: 8px 18px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact_form .btn-send:hover,
.contact_form .btn-send:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #2d5d8b;
}

/* ------------------ Start meet our section ----------------- */
.our_staff {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  padding-top: 30px;
}

.our_staff .boxes {
  width: 100%;
  display: inline-block;
  margin-bottom: 62px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our_staff .boxes:hover > .staff_pic img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.our_staff .boxes .staff_pic {
  display: block;
  width: 285px;
  margin-right: 30px;
  text-align: center;
  float: left;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.our_staff .boxes .staff_pic img {
  width: 285px;
  padding-right: 30px;
  object-fit: cover;
  overflow: hidden;
  height: auto;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.our_staff .boxes:nth-child(2n) .staff_pic img {
  padding: 0 0 0 30px;
}

.our_staff .boxes .staff_info {
  display: block;
  text-align: left;
}

.our_staff .boxes .staff_hdr {
  width: 67.5%;
  margin: 0 0 0 auto;
  display: block;
  text-align: left;
  border-bottom: 1px solid #d6e3ed;
}

.our_staff .boxes .staff_hdr h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: 'Roboto', sans-serif;
}

.our_staff .boxes .staff_hdr p {
  color: #2c2c2c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.our_staff .boxes .staff_hdr p a {
  color: #6383c0;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.our_staff .boxes .staff_hdr p a:hover {
  color: #003366;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.our_staff .staff_says {
  padding-top: 20px;
}

.our_staff .staff_says p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.our_staff .boxes:nth-child(2n) .staff_pic {
  float: right;
  /*padding: 0 0 0 30px;*/
}

.our_staff .boxes:nth-child(2n) .staff_hdr {
  margin: 0 auto 0 0;
}

.our_staff .boxes:last-child {
  margin-bottom: 34px;
}

/* -------------- Start team member section ----------------*/
.team_members {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  background: #eaeff9;
  text-align: center;
  padding: 62px 0 66px;
  position: relative;
}

.team_members.bg-grey {
  background: #f7f7f7;
}

.team_members.bg-white {
  background: #ffffff;
}

.team_members.bg-white .team_slide .owl-stage-outer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.team_members:after {
  content: "";
  background: url(../images/team_bg.png) no-repeat;
  width: 400px;
  height: 299px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 22px;
}

.team_members.bg-grey:after {
  right: inherit;
  left: 66px;
  background: url(../images/grey_mark.png) no-repeat;
}

.team_members.bg-white:after {
  right: inherit;
  left: inherit;
  right: 22px;
  background: url(../images/white_mark.png) no-repeat;
}

.team_members.supprot_bg:after {
  right: inherit;
  left: 66px;
}

.team_members .member_hdr {
  width: 100%;
  display: block;
  text-align: center;
  padding-bottom: 10px;
}

.team_members .member_hdr h2 {
  color: #7c489a;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: auto;
  font-family: 'Roboto', sans-serif;
}

.team_members .team_slide {
  max-width: 100%;
  display: block;
  margin: auto;
  padding: 18px 95px 12px;
  z-index: 99;
  vertical-align: middle;
}

.team_members .team_slide .owl-stage-outer {
  width: 100%;
  padding: 15px 0;
  margin-right: 12px;
}

.team_members .team_slide .item {
  width: 100%;
  display: block;
  text-align: center;
}

.team_members .team_slide .box {
  background: #ffffff;
  padding: 0;
  margin: 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team_members.bg-white .team_slide .box {
  background: #fbfbfb;
}

.team_slide .box:hover {
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team_slide .box:hover .member_pic img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team_members .team_slide .member_pic {
  width: 100%;
  height: 246px;
  margin-bottom: 5px;
  overflow: hidden;
}

.team_members .team_slide .member_pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.team_members .team_slide .member_dsr {
  width: 100%;
  display: block;
  text-align: center;
  padding: 12px 15px 27px;
}

.team_members .team_slide .member_info {
  width: 100%;
  text-align: center;
  float: none;
}

.team_members .team_slide .member_info h4 {
  color: #2d5d8b;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.team_members .team_slide .member_info h4 a {
  color: #2d5d8b;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team_members .team_slide .member_info h4 a:hover {
  color: #7c489a;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team_members .team_slide .member_info p {
  color: #2c2c2c;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.team_members .team_slide .social_area {
  width: 100%;
  display: block;
  margin-top: 12px;
}

.team_members .team_slide .social_area ul {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.team_members .team_slide .social_area ul li {
  min-width: 35px;
  display: inline-block;
  margin: 0 5px;
}

.team_members .team_slide .social_area ul li a {
  background: #6383c0;
  width: 35px;
  height: 35px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.team_members .team_slide .social_area ul li a i {
  color: #ffffff;
  font-size: 14px;
  line-height: 32px;
  font-weight: 500;
}

.team_members .team_slide .social_area ul li a:hover {
  background: #7c489a;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team_members .team_slide .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.team_members .team_slide .owl-nav .owl-prev {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  background-size: cover;
  position: absolute;
  left: -5px;
  top: -12px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all ease-in-out .3s;
}

.team_members .team_slide .owl-nav .owl-next {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  position: absolute;
  right: -5px;
  top: -12px;
  transition: all ease-in-out .3s;
}

.team_members .team_slide .owl-nav .owl-prev.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.team_members .team_slide .owl-nav .owl-next.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.team_members .team_slide .owl-nav:hover {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.8;
}

.team_members .team_slide.owl-theme .owl-dots {
  margin-top: 28px;
}

.team_members .team_slide .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 3px;
  border: 1px solid #6383c0;
  background: transparent;
}

.team_members .team_slide .owl-dots .owl-dot.active span {
  background: #6383c0;
}

/* ----------------------- Start our directors --------------- */
.our_directors {
  width: 100%;
  display: block;
  clear: both;
  float: none;
}

.our_directors .alm-reveal {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex: auto;
  -moz-flex: auto;
  -ms-flex: auto;
  -o-flex: auto;
  flex: auto;
  justify-content: flex-start;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  margin-bottom: 15px;
}

.our_directors .box {
  display: block;
  width: 23.5%;
  margin-right: 14px;
  border: 1px solid #e7e7e7;
  text-align: center;
  padding: 0;
}

.our_directors .alm-reveal .box:last-child {
  margin-right: 0;
}

.our_directors .box a {
  display: block;
  width: 100%;
  cursor: default;
  pointer-events: none;
  -ms-word-break: break-all;
  word-break: break-all;
  /* Non standard for WebKit */
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
}

.our_directors .dir_pic {
  width: 100%;
  display: block;
  overflow: hidden;
  height: 230px;
}

.our_directors .dir_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.our_directors .dir_info {
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px 8px 22px;
}

.our_directors .dir_info span {
  display: block;
  color: #2d5d8b;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.our_directors .dir_info h4 {
  color: #2d5d8b;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 5px;
}

.our_directors .dir_info p {
  color: #2c2c2c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
}

.our_directors .dir_info small {
  display: block;
  color: #2c2c2c;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
}

.our_directors .box:hover .dir_pic img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

/* ------------- One more contact small section ---------------------*/
.contact_demo {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  position: relative;
  background: #6383c0;
  padding: 23px 20px;
  text-align: left;
}

.contact_demo:after {
  content: "";
  display: block;
  background: url(../images/infoC_bg.png) no-repeat;
  width: 148px;
  height: 101px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 10px;
}

.contact_demo .contact_txt {
  width: 100%;
  display: block;
  text-align: left;
  padding-bottom: 18px;
}

.contact_demo .contact_txt h2 {
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: auto;
}

.contact_demo .location_links {
  width: 100%;
  display: block;
}

.contact_demo .location_links ul {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
}

.contact_demo .location_links ul li {
  display: table;
  vertical-align: middle;
  margin-right: 22px;
}

.contact_demo .location_links ul li:last-child {
  margin-right: 0;
}

.contact_demo .location_links ul li span,
.contact_demo .location_links ul li p {
  display: table-cell;
  vertical-align: middle;
}

.contact_demo .location_links ul li span {
  width: 28px;
  text-align: center;
  padding-right: 5px;
  vertical-align: top;
}

.contact_demo .location_links ul li p {
  margin-left: 3px;
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: auto;
  font-family: 'Roboto', sans-serif;
}

.contact_demo .location_links ul li p a {
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.contact_demo .location_links ul li p a:hover {
  color: #0d3861;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* -------------- Strat Community Initiatives Planning -----------------*/
.emd_btn {
  width: 100%;
  display: block;
  margin: 0;
  text-align: left;
  padding-bottom: 22px;
}

.success_story .story_preparation {
  width: 100%;
  display: block;
  height: 470px;
  position: relative;
  background: transparent;
  text-align: left;
}

.success_story .story_preparation img,
.success_story .story_preparation iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.oceans_video {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  padding: 42px 0 33px;
}

.oceans_video .video_hdr {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 22px;
}

.oceans_video .video_hdr h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
}

.oceans_video .video_area {
  width: 100%;
  display: block;
  height: 464px;
  background: #d6dce1;
  margin: 0;
  padding: 0;
}

.oceans_video .video_area iframe {
  width: 100%;
  height: 100%;
}

/* ----------------- About section ----------------*/
.about_sec .common_inner .loans_hdr {
  padding-top: 0px;
}

/*---------------- Strat newsroom content section ----------------*/
.newsroom_area {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  margin-top: 20px;
}

.newsroom_area .newsroom_content {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: #fafafa;
  margin-bottom: 35px;
}

.newsroom_area .newsroom_content:hover .newsblog img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.newsroom_area .newsblog {
  width: 40%;
  min-height: 365px;
  margin: 0;
  padding: 0;
  background: #e2e2e2;
  overflow: hidden;
}

.newsroom_area .newsblog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.newsroom_area .news_txt {
  width: 60%;
  padding: 28px 30px;
  text-align: left;
}

.newsroom_area .news_txt h4 {
  width: 100%;
  display: block;
  text-align: left;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2d5d8b;
  font-family: 'Roboto', sans-serif;
}

.newsroom_area .news_txt span {
  display: block;
  width: 100%;
  color: #a1a1a1;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.newsroom_area .news_txt p {
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.newsroom_area .news_link {
  width: 100%;
  display: block;
  text-align: left;
  margin-top: 5px;
  clear: both;
}

.newsroom_area .news_link a {
  display: inline-block;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.newsroom_area .news_link a:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #5b5b5b;
}

.newsroom_area .all_news {
  width: 100%;
  display: block;
  text-align: center;
}

.btn-link {
  min-width: 150px;
  display: inline-block;
  height: 50px;
  background: transparent;
  text-align: center;
  padding: 12px 28px;
  border: 2px solid #7c489a;
  border-radius: 25px;
  box-shadow: none;
  outline: none;
  margin-bottom: 12px;
  text-decoration: none !important;
  color: #7c489a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7c489a;
  color: #fff;
}

/* ----------Strat release slider content ------------*/
.releases_area {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  background: #f2f8fd;
  position: relative;
  padding: 45px 30px 32px;
}

.releases_area:after {
  content: "";
  background: url(../images/white_mark.png) no-repeat;
  width: 380px;
  height: 275px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 22px;
}

.releases_area .releaseing_info {
  width: 100%;
  display: block;
  padding: 0 10rem;
}

.releases_area .release_hdr {
  width: 100%;
  display: block;
  text-align: center;
  padding-bottom: 32px;
}

.releases_area .release_hdr h4 {
  color: #094179;
  font-size: 34px;
  line-height: 36px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.releases_area .release_slide {
  width: 100%;
  padding: 0 70px;
  position: relative;
  display: block;
}

.releases_area .release_slide .owl-stage-outer {
  padding: 0 15px;
}

.releases_area .release_slide .item {
  width: 100%;
  display: block;
  text-align: left;
  border-right: 1px solid #cbd8e2;
}

.releases_area .release_slide .posted {
  width: 100%;
  display: block;
  padding: 5px 20px 5px 5px;
}

.releases_area .release_slide .posted a {
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.releases_area .release_slide .posted a:hover h4 {
  color: #6383c0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.releases_area .release_slide .posted h4 {
  color: #003366;
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.releases_area .release_slide .posted p {
  width: 100%;
  display: block;
  color: #7d8b97;
  font-size: 12px;
  line-height: 23px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.releases_area .release_slide .item.b-none {
  border-right-width: 0;
}

.releases_area .release_slide .owl-nav {
  width: 100%;
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
}

.releases_area .release_slide .owl-nav .owl-prev {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  background-size: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all ease-in-out .3s;
}

.releases_area .release_slide .owl-nav .owl-next {
  background: url(../images/owl_arrowhover.png) no-repeat;
  width: 33px;
  height: 33px;
  position: absolute;
  right: -5px;
  top: 0px;
  transition: all ease-in-out .3s;
}

.releases_area .release_slide .owl-nav .owl-prev.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.releases_area .release_slide .owl-nav .owl-next.disabled {
  background: url(../images/owl_arrow.png) no-repeat;
  opacity: 1;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.releases_area .release_slide .owl-nav:hover {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.8;
}

.releases_area .release_slide.owl-theme .owl-dots {
  margin-top: 28px;
}

.releases_area .release_slide .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 3px;
  border: 1px solid #6383c0;
  background: transparent;
}

.releases_area .release_slide .owl-dot.active span {
  background: #6383c0;
}

/* ------------- Start news details section -------------*/
.cat_content {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  margin-top: 35px;
}

.cat_content h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
}

.cat_content span {
  display: block;
  width: 100%;
  color: #a1a1a1;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.cat_content span a {
  color: #2d5d8b;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.cat_content span a:hover {
  color: #003366;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.cat_content .post_pic {
  width: 350px;
  min-height: 275px;
  display: block;
  float: left;
  margin: 8px 18px 8px 0;
}

.cat_content .post_pic img {
  width: 100%;
  object-fit: cover;
}

.cat_content .post_txt {
  padding-top: 5px;
}

.cat_content .post_txt p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

/* --------------- Contact preloader ---------------- */
div.wpcf7 .ajax-loader {
  display: block !important;
}

/*---------- Start accordion ------------*/
.job_option {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  margin: 25px auto 12px;
}

.job_option .job_hdr {
  width: 100%;
  display: block;
  text-align: left;
}

.job_option .job_hdr h4 {
  color: #2d5d8b;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Roboto', sans-serif;
}

.job_option .job_hdr p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.job_option #accordion .panel {
  border: 0px none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 14px;
  width: 100%;
  display: block;
  clear: both;
}

.job_option #accordion p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.job_option #accordion .panel-heading {
  padding: 0px;
  margin: 0;
  width: 100%;
  display: block;
  border-radius: 0px;
  border: 1px solid #003366;
}

.job_option #accordion .panel-title {
  color: #2d5d8b;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0px;
  width: 100%;
  display: block;
}

.job_option #accordion .panel-title span {
  width: 58%;
  color: #2d5d8b;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0px;
}

.job_option #accordion .panel_icons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  padding-right: 0px;
}

.job_option #accordion .panel_icons li {
  display: inline-block;
  margin-right: 18px;
  color: #2d5d8b;
}

.job_option #accordion .panel_icons li:last-child {
  margin-right: 0;
}

.job_option #accordion .panel_icons li i {
  font-size: 16px;
  line-height: 22px;
  width: 22px;
  text-align: center;
}

.job_option #accordion .panel_icons li span {
  width: auto;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}

.job_option #accordion .panel-title > a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8px 50px 8px 18px;
  position: relative;
  background: #fbfbfb;
  transition: 0.4s ease;
  color: #2d5d8b;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.job_option #accordion .panel-title > a.collapsed {
  background: #fff;
  color: #2d5d8b;
}

.job_option #accordion .panel-title > a:hover {
  background: #6383c0;
  color: #fff;
}

.job_option #accordion .panel-title > a:hover span,
.job_option #accordion .panel-title > a:hover i {
  color: #fff;
}

.job_option #accordion .panel-title > a:after,
.job_option #accordion .panel-title > a.collapsed:after {
  content: "\f068";
  font-family: "FontAwesome";
  font-weight: 900;
  color: #003366;
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 0px;
  padding: 12.5px;
  line-height: 16px;
}

.job_option #accordion .panel-title > a:hover:after {
  color: #fff;
}

.job_option #accordion .panel-title > a.collapsed:after {
  content: "\f067";
  color: #003366;
  font-size: 18px;
  transition: 0.4s ease;
}

.job_option #accordion .panel-title > a.collapsed:hover:after {
  color: #fff;
}

.job_option #accordion .panel-body {
  color: #5b5b5b;
  background: #fff;
  padding: 14px 18px;
  line-height: 24px;
  border: 1px solid #003366;
  border-top: 0px none;
}

.job_option #accordion .panel-body h4 {
  color: #2d5d8b;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
}

.job_option #accordion .panel-body p {
  color: #5b5b5b;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.job_option #accordion .panel-body ul {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.job_option #accordion .panel-body ul li {
  width: 100%;
  display: block;
  padding: 0 8px 6px 18px;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 26px;
  position: relative;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.job_option #accordion .panel-body ul li:last-child {
  padding-bottom: 0;
}

.job_option #accordion .panel-body ul li:before {
  content: "\f061";
  font: normal normal normal 14px/2 "FontAwesome";
  line-height: 24px;
  display: block;
  color: #7c489a;
  position: absolute;
  top: 2px;
  left: 0;
}

.job_option #accordion .panel-body ul li > ul {
  margin: 10px 0 0 0;
  padding-bottom: 10px;
}

.job_option #accordion .panel-body ul li > ul li:before {
  color: #6383c0;
}

.btn-apply {
  min-width: 150px;
  display: inline-block;
  height: 50px;
  background: transparent;
  text-align: center;
  padding: 10px 28px;
  border: 2px solid #7c489a;
  border-radius: 25px;
  box-shadow: none;
  outline: none;
  margin-bottom: 12px;
  text-decoration: none !important;
  color: #7c489a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.btn-apply:hover,
.btn-apply:active,
.btn-apply:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7c489a;
  color: #fff;
}

/*------------ Start mobile accordion ------------*/
.small_menu {
  width: 100%;
  display: none;
  clear: both;
  float: none;
  margin: 0;
}

.small_menu .content_area {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
}

.small_menu .content_area button {
  box-shadow: none;
  outline: none;
  border-radius: 0;
  border: none;
  width: 100%;
  margin: 0;
  padding: 12px 15px;
  text-align: left;
}

/* ------ Animated Button ------- */
.small_menu .animated-icon {
  width: 35px;
  height: 30px;
  text-align: center;
  position: absolute;
  top: 12px;
  right: 8px;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.small_menu .animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.small_menu .animated-icon span {
  background: #ffffff;
}

.small_menu .animated-icon span:nth-child(1) {
  top: 0px;
}

.small_menu .animated-icon span:nth-child(2),
.animated-icon2 span:nth-child(3) {
  top: 10px;
}

.small_menu .animated-icon span:nth-child(3) {
  top: 10px;
}

.small_menu .animated-icon span:nth-child(4) {
  top: 20px;
}

.small_menu .animated-icon.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.small_menu .animated-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.small_menu .animated-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.small_menu .animated-icon.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.small_menu button.navbar-toggler {
  width: 100%;
  display: block;
  background: #003366;
  text-align: left;
  padding-right: 50px;
}

.small_menu button.navbar-toggler:after {
  content: none;
}

.small_menu button h4 {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  word-break: normal;
  text-transform: uppercase;
  margin-bottom: auto;
}

.small_menu button.dropdown-button {
  background: #6383c0;
  border-bottom: 1px solid #9bb3e2;
  color: #fbfbfb;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.small_menu button.dropdown-button:after {
  top: 15px;
}

.small_menu article {
  border-bottom-width: 0;
  padding: 18px 15px;
}

.small_menu article.content_part {
  width: 100%;
  display: block;
  background: #edf7fe;
  padding: 18px 15px;
}

.small_menu article.content_part ul {
  width: 100%;
  display: block;
}

.small_menu article.content_part ul li {
  display: block;
  width: 100%;
  padding: 0;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.small_menu article.content_part ul li a {
  display: inline-block;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  padding: 10px 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.small_menu article.content_part ul li a:hover {
  color: #003366;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.small_menu .address_area {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 23px;
}

.small_menu .address_area:last-child {
  margin-bottom: 8px;
}

.small_menu .address_area p {
  display: block;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 5px;
}

.small_menu .address_area span {
  display: inline-block;
  color: #2d5d8b;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.small_menu .address_area span a {
  display: inline-block;
  color: #2d5d8b;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.small_menu .address_area span a:hover {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #003366;
}

.small_menu .qut_add {
  width: 100%;
  display: table;
  margin-bottom: 15px;
}

.small_menu .qut_add span,
.small_menu .qut_add p {
  display: table-cell;
  vertical-align: middle;
}

.small_menu .qut_add span {
  width: 20px;
  height: 20px;
  text-align: left;
  vertical-align: baseline;
}

.small_menu .qut_add p {
  color: #2d5d8b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: inherit;
  font-family: 'Open Sans', sans-serif;
  padding-left: 8px;
  margin-bottom: auto;
  vertical-align: baseline;
}

.small_menu .qut_add p a {
  color: #2d5d8b;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.small_menu .qut_add p a:hover {
  color: #003366;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.small_menu .view_location {
  display: inline-block;
  margin: 8px 0 0 5px;
  text-align: left;
}

.small_menu .view_location a {
  display: inline-block;
  position: relative;
  text-align: left;
  color: #2d5d8b;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  padding-right: 20px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.small_menu .view_location a:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/sm_arrow.png) no-repeat;
  width: 12px;
  height: 12px;
  top: 5px;
  right: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.small_menu .view_location a:hover {
  color: #003366;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.small_menu .view_location a:hover:after {
  right: -3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*--------------- Start gallery images -------------*/
.gallery {
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  background: #fbfbfb;
  padding: 25px 0 15px;
  text-align: center;
}

.gallery h4 {
  color: #003366;
  font-size: 34px;
  margin-bottom: 25px;
  line-height: 38px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.gallery p {
  display: block;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 40px;
  font-family: 'Open Sans', sans-serif;
}

.gallery ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gallery ul li {
  width: calc(100%/4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 280px;
}

.gallery ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.gallery ul li.content .content-overlay {
  background: rgba(124, 72, 154, 0.75);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7c489a+0,7a4499+100&0.75+0,0.7+100 */
  background: -moz-linear-gradient(top, rgba(124, 72, 154, 0.75) 0%, rgba(122, 68, 153, 0.75) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(124, 72, 154, 0.75) 0%, rgba(122, 68, 153, 0.75) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(124, 72, 154, 0.75) 0%, rgba(122, 68, 153, 0.75) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#bf7c489a', endColorstr='#b37a4499', GradientType=0); */
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.gallery ul li.content:hover .content-overlay {
  opacity: 1;
}

.gallery ul li .content-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery ul li .content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.gallery ul li.content:hover .content-details {
  opacity: 1;
}

.gallery ul li .content-details span {
  box-shadow: none;
  outline: none;
  background: transparent;
  display: inline-block;
  width: 65px;
  height: 68px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery ul li .content-details span img {
  width: 100%;
  object-fit: cover;
}

.gallery ul li .content-details span:hover {
  box-shadow: none;
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery .view_events {
  width: 100%;
  display: block;
  margin-top: 25px;
  text-align: center;
}

/*----------- Business lending page content css -------------*/
.inner_sec.busisness_lend {
  padding-bottom: 18px;
}

.inner_lending {
  background: #ffffff;
  width: 100%;
  float: none;
  clear: both;
  /* padding: 45px 0 50px 190px; */
  padding: 45px 0 18px 150px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.inner_lending .site_left {
  width: 75%;
  display: block;
  padding-right: 82px;
  text-align: left;
}

.inner_lending .common_inner {
  padding-top: 15px;
}

.inner_lending .author_said {
  width: 100%;
  display: block;
  padding: 22px 0 32px;
}

.inner_lending .main_point {
  width: 100%;
  position: relative;
  background: #daebf9;
  border-radius: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.inner_lending .main_point:after {
  content: "";
  display: block;
  background: url(../images/title_arrow.png) no-repeat;
  width: 36px;
  height: 24px;
  position: absolute;
  bottom: -22px;
  left: 65px;
}

.inner_lending .main_txt {
  width: 100%;
  display: block;
  position: relative;
  padding: 55px 30px 60px 140px;
}

.inner_lending .main_txt:after {
  content: "";
  display: block;
  background: url(../images/box_conention.png) no-repeat;
  width: 80px;
  height: 70px;
  background-size: cover;
  position: absolute;
  top: 15px;
  left: 5%;
}

.inner_lending .main_txt p {
  color: #303030;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: auto;
}

.inner_lending .author_info {
  width: 100%;
  display: block;
  padding: 28px 0 0 12px;
}

.inner_lending .author_info h4 {
  color: #2d5d8b;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.inner_lending .author_info p {
  color: #2d5d8b;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

/*------------ ======== Start Directors login =========== --------------*/
.bord_login {
  width: 100%;
  clear: both;
  float: none;
}

.bord_login .modal {
  background: rgba(6, 18, 30, 0.9);
  right: 0;
  bottom: 0;
}

.bord_login .modal-content {
  border: none;
  border-radius: 0;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 35px 30px;
}

.bord_login .modal-dialog {
  max-width: 350px;
  margin: 10rem auto;
}

.bord_login .modal-header {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  width: 100%;
  text-align: left;
}

.bord_login .modal-header .site_logo {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.bord_login .modal-header .site_logo img {
  width: 100%;
}

.bord_login .modal-header p {
  display: block;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 18px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.bord_login .modal-header button {
  box-shadow: none;
  outline: none;
  width: 28px;
  height: 28px;
  border: 2px solid #7896b5;
  border-radius: 50%;
  text-align: center;
  padding: 0px;
  position: absolute;
  top: -15px;
  right: -20px;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bord_login .modal-header button:hover {
  opacity: .8;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bord_login .modal-header button span {
  color: #7896b5;
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  box-shadow: none;
  outline: none;
  text-shadow: none;
}

.bord_login .modal-body {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.bord_login .modal-body .md-form {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
  margin-bottom: 18px;
}

.bord_login .modal-body .md-form label {
  width: 100%;
  display: block;
  text-align: left;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
}

.bord_login .modal-body .md-form input {
  width: 100%;
  box-shadow: none;
  outline: none;
  border: 1px solid #e4e4e4;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 24px;
  border-radius: 0;
  height: 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-transform: none;
}

.bord_login .modal-footer {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
}

.bord_login .modal-footer .btn-singin {
  box-shadow: none;
  outline: none;
  width: 116px;
  height: 40px;
  text-align: center;
  background: #6383c0;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 8px 18px;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bord_login .modal-footer .btn-singin:hover {
  border: 1px solid #6383c0;
  background: transparent;
  color: #6383c0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/*------------ Gallery inner section -------------*/
.gallery_posted {
  width: 100%;
  display: block;
  float: none;
  clear: both;
  background: #fff;
  padding: 30px 0;
}

.gallery_posted .gallery_intro {
  width: 100%;
  display: block;
  margin-bottom: 25px;
  clear: both;
}

.gallery_posted .gallery_hdr {
  width: 100%;
  display: block;
  text-align: left;
}

.gallery_posted .gallery_hdr h4 {
  color: #003366;
  font-size: 26px;
  margin-bottom: 0px;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.gallery_posted .gallery_hdr h4 span {
  color: #003366;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}

.gallery_posted .gbox {
  width: 100%;
  height: 250px;
  display: block;
  margin-top: 25px;
  position: relative;
  background: #f6f6f6;
  border-radius: 0px;
  overflow: hidden;
}

.gallery_posted .gbox img {
  width: 100%;
  object-fit: cover;
}

.gallery_posted .gbox a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.gallery_posted .gbox .content-overlay {
  background: rgba(124, 72, 154, 0.75);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7c489a+0,7a4499+100&0.75+0,0.7+100 */
  background: -moz-linear-gradient(top, rgba(124, 72, 154, 0.75) 0%, rgba(122, 68, 153, 0.75) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(124, 72, 154, 0.75) 0%, rgba(122, 68, 153, 0.75) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(124, 72, 154, 0.75) 0%, rgba(122, 68, 153, 0.75) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#bf7c489a', endColorstr='#b37a4499', GradientType=0); */
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.gallery_posted .gbox:hover .content-overlay {
  opacity: 1;
}

.gallery_posted .gbox .content-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_posted .gbox .content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.gallery_posted .gbox:hover .content-details {
  opacity: 1;
}

.gallery_posted .gbox .content-details span {
  box-shadow: none;
  outline: none;
  background: transparent;
  display: inline-block;
  width: 65px;
  height: 68px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery_posted .gbox .content-details span img {
  width: 100%;
  object-fit: cover;
}

.gallery_posted .gbox .content-details span:hover {
  box-shadow: none;
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* ------------ Upcoming Events area ---------------*/
.upcoming_area {
  width: 100%;
  clear: both;
  float: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.upcoming_area .boxes {
  width: 42%;
  margin-bottom: 28px;
  background: #fafafa;
  display: block;
}

.upcoming_area .boxes a {
  display: inline-block;
  padding: 25px 18px;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.upcoming_area .boxes h5 {
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #2d5d8b;
  text-transform: inherit;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.upcoming_area .boxes p {
  color: #5b5b5b;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.upcoming_area .boxes a:hover {
  background: #6383c0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.upcoming_area .boxes a:hover > h5 {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff;
}

.upcoming_area .boxes a:hover > p {
  color: #cad8f3;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.view_item {
  width: 100%;
  display: block;
  text-align: center;
}

.featured_events {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  padding-top: 65px;
}

.featured_events .featured_hdr {
  width: 100%;
  display: block;
  text-align: left;
  padding-bottom: 13px;
}

.featured_events .featured_hdr h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}

.featured_events .featured_intro {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.featured_events .item {
  width: 42%;
  display: block;
  background: #fafafa;
}

.featured_events .item:hover .featured-pic img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.featured_events .item .featured-pic {
  width: 100%;
  display: block;
  height: 276px;
  overflow: hidden;
}

.featured_events .item .featured-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.featured_events .item .featured_content {
  width: 100%;
  display: block;
  padding: 30px 30px 40px;
}

.featured_events .item .featured_content h4 {
  color: #2d5d8b;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 6px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.featured_events .item .featured_content span {
  display: block;
  margin-bottom: 10px;
  color: #a1a1a1;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.featured_events .item .featured_content p {
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.featured_events .item .featured_content a {
  display: inline-block;
  color: #2d5d8b;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.featured_events .item .featured_content a:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #5b5b5b;
}

/* ------- =========== Start Board of Directors Meetings ========== -------*/
.bord_area {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  padding-bottom: 15px;
}

.bord_area .bord_hdr {
  width: 100%;
  display: block;
  text-align: left;
}

.bord_area .bord_hdr h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
}

/*------ ========= Data table Responsive ===========----*/
.bord_area .bord_details {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
  border: 1px solid #e4e4e4;
  border-collapse: collapse;
  box-sizing: content-box;
}

.bord_area .bord_details .dataTables_wrapper {
  width: 100%;
  overflow: auto;
}

.bord_area .bord_details table.dataTable {
  width: 100%;
  overflow-x: auto;
  margin-top: 0 !important;
  border: none;
  font-family: 'Roboto', sans-serif;
}

.bord_area .bord_details table.dataTable thead {
  background: #6383c0;
}

.bord_area .bord_details table.dataTable tr th {
  border-top: 0;
  border-bottom-width: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 22px;
  padding: 15px 15px;
  font-weight: 400;
}

.bord_area .bord_details .dataTables_scrollBody table {
  border-top: none;
}

.bord_area .bord_details .table-striped tbody tr:nth-of-type(odd) {
  background: #f5f5f5;
}

.bord_area .dataTables_scrollBody table tr td {
  min-width: 152px;
  white-space: normal;
  word-break: break-all;
  color: #5c5c5c;
  font-size: 15px;
  line-height: 18px;
  vertical-align: middle;
  font-weight: 400;
  padding: 12px 15px;
}

.bord_area .dataTables_scrollBody table tr td {
  border-bottom: 1px solid #e4e4e4;
}

.bord_area .dataTables_scrollBody table tr td a {
  color: #2d5d8b;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bord_area .dataTables_scrollBody table tr td a:hover {
  color: #003366;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* ------------- Fancybox bg -----------*/
.fancybox-container {
  background: rgba(6, 18, 30, 0.9);
}

/* ------------- call information ------------*/
.call_info {
  width: 100%;
  display: block;
  text-align: left;
  clear: both;
  float: none;
  padding: 20px 0 55px;
}

.call_info h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.call_info p {
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.call_info .ph_area {
  width: 100%;
  display: block;
  text-align: left;
  position: relative;
  padding-top: 8px;
}

.call_info .ph_area .btn-call {
  min-width: 300px;
  height: 60px;
  display: inline-block;
  box-shadow: none;
  outline: none;
  text-align: right;
  padding: 16px 30px 16px 50px;
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  border-radius: 5px;
  border: 1px solid transparent;
  background: #6383c0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.call_info .ph_area .btn-call:hover {
  border: 1px solid #6383c0;
  background: transparent;
  color: #6383c0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.call_info .ph_area span {
  width: 88px;
  height: 88px;
  border: none;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  padding: 25px;
  position: absolute;
  top: -8px;
  left: 18px;
  box-shadow: 0px 11px 17px 0 rgba(0, 0, 0, 0.22);
}

.call_info .pin {
  width: 100%;
  display: block;
  text-align: left;
  clear: both;
  float: none;
  padding: 10px 30px 0 120px;
}

.call_info .pin p {
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

/*--------------- member orientation -------------*/
.member_org {
  width: 100%;
  display: block;
  text-align: left;
  padding-top: 25px;
}

.member_org h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 6px;
}

.member_org p {
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.member_org ul {
  width: 100%;
  display: block;
}

.member_org ul li {
  width: 100%;
  display: block;
  padding: 0 8px 8px 24px;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 28px;
  position: relative;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.member_org ul li:before {
  content: "\f061";
  font: normal normal normal 16px/2 "FontAwesome";
  line-height: 24px;
  display: block;
  color: #7c489a;
  position: absolute;
  top: 2px;
  left: 0;
}

.member_org ul li span {
  display: block;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

/* ---------------- Doing Business section ----------------*/
.zones {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
  padding: 8px 0 52px;
}

.zones h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.zones .zones_area {
  width: 100%;
  display: block;
  position: relative;
  overflow-x: hidden;
  padding-top: 18px;
}

.zones .zones_area .item {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 12px;
}

.zones .zones_area .item a {
  width: 100%;
  height: 100%;
  display: block;
  background: #003366;
}

.zones .zones_area .zones_pic {
  width: 100%;
  height: 180px;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #fff;
}

.zones .zones_area .zones_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.zones .zones_area .boxes {
  width: 100%;
  display: block;
  text-align: left;
  padding: 12px 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.zones .zones_area .boxes h5 {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.zones .zones_area .boxes p {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.zones .zones_area .item a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.zones .zones_area .owl-nav {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.zones .zones_area .owl-prev {
  background: url(../images/owl_arrowhover.png) no-repeat !important;
  width: 33px;
  height: 33px;
  background-size: cover;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.zones .zones_area .owl-next {
  background: url(../images/owl_arrowhover.png) no-repeat !important;
  width: 33px;
  height: 33px;
  background-size: cover;
  transition: all ease-in-out .3s;
}

.zones .zones_area .owl-nav [class*='owl-']:hover {
  opacity: 0.8;
}

/* ----------- location header text ---------------*/
.contact_area.hdr_txt {
  width: 100%;
  display: block;
  text-align: left;
  padding-bottom: 12px;
}

.contact_area.hdr_txt h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.contact_area.hdr_txt p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

/*------------- Zone information ---------*/
.zone_information {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
  padding-top: 55px;
}

.zone_information h4 {
  color: #2d5d8b;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.zone_information p {
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.zone_information p a {
  color: #2d5d8b;
  font-weight: 700;
}

.zone_information ul {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.zone_information ul li {
  width: 100%;
  display: block;
  padding: 0 8px 12px 22px;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 28px;
  position: relative;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.zone_information ul li:before {
  content: "\f061";
  font: normal normal normal 16px/2 "FontAwesome";
  line-height: 24px;
  display: block;
  color: #7c489a;
  position: absolute;
  top: 2px;
  left: 0;
}

.zone_information ul li a {
  color: #2d5d8b;
  font-weight: 700;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.zone_information ul li a:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #5b5b5b;
}

.zone_information ul li strong {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.zone_information .btn-link {
  margin-bottom: 32px;
  color: #7c489a;
}

.zone_information .btn-link:hover,
.zone_information .btn-link:active,
.zone_information .btn-link:focus {
  color: #fff;
}

.zone_location {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 12px;
}

.zone_location .box_sec {
  width: calc(100% /2);
  background: #f5f5f5;
  border: 1px solid #e4e4e4;
  padding: 22px 15px;
}

.zone_location .box_sec:nth-child(2n) {
  border-left-width: 0;
}

.zone_location .box_hdr {
  width: calc(100% / 2);
  border-right: 1px solid #e4e4e4;
  background: #6383c0;
  padding: 18px 15px;
  text-align: left;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.zone_location .box_hdr:last-child {
  border-right-width: 0;
}

.zone_location .box_hdr h4 {
  color: #ffffff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}

.zone_location .box_sec ul {
  width: 100%;
  display: block;
}

.zone_location .box_sec ul li {
  color: #5c5c5c;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  padding: 0 8px 6px 22px;
  position: relative;
}

.zone_location .box_sec ul li:before {
  content: "\f061";
  font: normal normal normal 16px/2 "FontAwesome";
  line-height: 24px;
  display: block;
  color: #7c489a;
  position: absolute;
  top: 0px;
  left: 0;
}

.zone_location .box_sec ul li a {
  color: #2d5d8b;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.zone_location .box_sec ul li a:hover {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #003366;
}

/* -------------- =========== Back to scorll ============ ---------------*/
#back_top {
  position: fixed;
  z-index: 9999;
  right: 30px;
  bottom: 15px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}

#back_top span {
  position: static;
  height: 58px;
  width: 58px;
  padding: 12px 8px 5px;
  margin: auto;
  display: block;
  border: 5px solid #7b479a;
  box-sizing: border-box;
  border-radius: 50%;
  -moz-border-radius: 50%;
  text-align: center;
  box-shadow: 0px 2px 8px 0px #676767;
}

#back_top span.br_org {
  border-color: #f16543;
}

#back_top span img {
  display: block;
  width: 100%;
  height: 100%;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-6px);
  }
}
/* --------------------------- Start PTAC section css ---------------------*/
.main_header.ptac_hdr .main-menu.hdr_fix .nav-logo {
  width: 70px;
}

.ptac_hdr .hdr_top .logo {
  width: 205px;
}

.ptac_hdr .hdr_top .boxes a {
  padding-bottom: 32px;
}

.our_value.ptac_value {
  padding-bottom: 18px;
}

.our_value.ptac_value .value_text h4 {
  margin-bottom: 26px;
}

.our_clitns.ptac_brochure {
  padding-bottom: 18px;
}

.newsroom_area.search_area .news_txt {
  width: 100%;
}

.newsroom_area.search_area .link-more .more-link {
  min-width: 150px;
  display: inline-block;
  height: 50px;
  background: transparent;
  text-align: center;
  padding: 12px 28px;
  border: 2px solid #7c489a;
  border-radius: 25px;
  box-shadow: none;
  outline: none;
  margin-bottom: 12px;
  text-decoration: none !important;
  color: #7c489a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.newsroom_area.search_area .link-more a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7c489a;
  color: #fff;
}

.newsroom_area.search_area .screen-reader-text {
  display: none;
}

.common_inner .heading_with_icon {
  color: #565656;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  max-width: 97%;
}

.common_inner .heading_with_icon::after {
  content: "";
  height: 25px;
  width: 25px;
  position: absolute;
  background: url(../images/logo-icon.png) no-repeat center;
  background-size: contain;
  left: -15px;
  top: -12px;
}

.newsleatter.ptac_news:after {
  content: none;
  display: none;
}

/* ----------- Add PTAc events search accordin ----------------*/
.inner_headding .events_searching {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  margin-top: 42px;
}

.inner_headding .events_searching #accordion .panel {
  border: none;
  box-shadow: none;
  margin-bottom: 5px;
}

.inner_headding .events_searching #accordion .panel-heading {
  padding: 0;
  border: none;
  background: transparent;
}

.inner_headding .events_searching #accordion .panel-title {
  display: block;
  margin: 0;
  padding: 0;
}

.inner_headding .events_searching #accordion .panel-title a {
  display: block;
  padding: 15px 32px 15px 18px;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
  background: #7b4799;
  position: relative;
  border-bottom: none;
  border-radius: 0;
}

.inner_headding .events_searching #accordion .panel-title a.collapsed {
  border-radius: 0px;
}

.inner_headding .events_searching #accordion .panel-title a:before,
.inner_headding .events_searching #accordion .panel-title a.collapsed:before {
  content: "\f106";
  font-family: "FontAwesome";
  font-weight: 400;
  font-size: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.inner_headding .events_searching #accordion .panel-title a.collapsed:before {
  content: "\f107";
}

.inner_headding .events_searching #accordion .panel-body {
  background: #ededed;
  font-size: 14px;
  color: #555;
  line-height: 25px;
  padding: 22px 18px;
  position: relative;
  border: none;
}

/* ---------------- Select box ------------------*/
.inner_headding .select2-hidden-accessible {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.inner_headding .select2-container {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #646464;
  width: 100% !important;
  height: 40px !important;
  box-shadow: none;
  outline: none;
}

.inner_headding .selection {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #dedede;
  padding: 0;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 0 4px;
}

.inner_headding .select2-container--default .select2-selection--single {
  background: transparent;
  border: none;
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
  padding: 5px 12px;
  box-shadow: none;
  outline: none;
}

.inner_headding .select2-selection__arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  top: 8px;
  right: 10px;
}

.inner_headding .select2-selection__arrow b {
  display: none;
}

.inner_headding .select-styled:hover {
  /*background-color: #b83729;*/
}

.inner_headding .select-styled:active,
.select-styled.active {
  /* background-color: #ab3326;*/
}

.inner_headding .select2-container--open .select2-selection__arrow:after,
.select-styled.active:after {
  content: "\f106";
  top: 7px;
}

.inner_headding .select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #ffffff;
  padding: 8px 0;
  box-shadow: 0px 3px 10px -5px rgba(0, 0, 0, 0.45);
  -webkit-box-shadow: 0px 3px 10px -5px rgba(0, 0, 0, 0.45);
}

.inner_headding .select2-container--default .select2-selection--single .select2-selection__rendered {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  border: none;
  color: #646464;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  padding: 0px !important;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.inner_headding .select2-results__options li:hover {
  color: #7b4799;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.inner_headding .select-options li:before {
  content: none !important;
}

.inner_headding .select-options li[rel="hide"] {
  display: none;
}

/*----- start PTAC searching content area ------*/
.inner_headding .search_content {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
}

.inner_headding .inner_sec .search_content p {
  display: block;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 15px;
}

.inner_headding .search_content form {
  display: block;
  clear: both;
  float: none;
  margin-top: 15px;
}

.inner_headding .search_content form .form-row-flex {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
  -ms-align-items: baseline;
  align-items: baseline;
}

.inner_headding .search_content form .form-group {
  display: block;
  width: 158px;
}

.inner_headding .search_content form .form-group.large {
  width: calc((100% / 2) - 85px);
}

.inner_headding .search_content form .form-group.lrg {
  width: 330px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.inner_headding .search_content form .form-group.middle {
  width: calc(100% - 500px);
}

.inner_headding .search_content form .form-group label {
  display: block;
  width: 100%;
  clear: both;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 8px;
}

.inner_headding .search_content ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #646464;
}

.inner_headding .search_content ::-moz-placeholder {
  /* Firefox 19+ */
  color: #646464;
}

.inner_headding .search_content :-ms-input-placeholder {
  /* IE 10+ */
  color: #646464;
}

.inner_headding .search_content :-moz-placeholder {
  /* Firefox 18- */
  color: #646464;
}

.select2-selection__placeholder::placeholder {
  color: #646464 !important;
}

.select2-selection__placeholder:-ms-input-placeholder {
  color: #646464 !important;
}

.select2-selection__placeholder::-ms-input-placeholder {
  color: #646464 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #646464 !important;
}

.inner_headding .search_content form .form-group.lrg .input-group {
  width: calc((100% / 2) - 4px);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-around;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.inner_headding .search_content form .form-group.lrg .input-group input {
  display: block;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #646464;
  width: 100%;
  min-height: 40px;
  padding: 5px 28px 5px 8px;
  border: 1px solid #dedede;
  box-shadow: none;
  outline: none;
}

.inner_headding .search_content form .form-group.lrg .input-group span {
  width: 25px;
  display: block;
  position: absolute;
  top: 12px;
  right: 5px;
  text-align: center;
}

.inner_headding .search_content form .form-group.middle input {
  width: 100%;
  height: 40px;
  display: block;
  padding: 8px 12px;
  background-color: #ffffff;
  border: 1px solid #dedede;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #646464;
  box-shadow: none;
  outline: none;
}

.inner_headding .form_btn {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.inner_headding .search_content form input[type="submit"] {
  min-width: 140px;
  height: 40px;
  display: block;
  text-align: center;
  padding: 6px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid transparent;
  background: #f16543;
  box-shadow: none !important;
  outline: none !important;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 8px 0px 12px 7px;
}

.inner_headding .search_content form input[type="submit"]:hover {
  border: 1px solid #f16543;
  color: #f16543;
  background: transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.inner_headding .search_content form input[type="reset"] {
  min-width: 140px;
  height: 40px;
  display: block;
  text-align: center;
  padding: 6px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  color: #f16543;
  border: 1px solid #f16543;
  background: transparent;
  box-shadow: none !important;
  outline: none !important;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 8px 8px 12px 0;
}

.inner_headding .search_content form input[type="reset"]:hover {
  border: 1px solid transparent;
  background: #f16543;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* ---------------- Box search area -------------- */
.inner_headding .events_area {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-top: 34px;
}

.inner_headding .events_area .Sbox {
  width: calc((100% / 2) - 30px);
  border: 1px solid #dedede;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.inner_headding .Sbox a {
  display: inline-block;
  width: 100%;
}

.inner_headding .events_area .Sbox .Spic {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #ededed;
  text-align: center;
}

.inner_headding .Sbox a:hover .Spic img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.inner_headding .Spic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.inner_headding .events_area .Sbox .Sinfo {
  width: 100%;
  display: block;
  background: #fff;
  padding: 15px 22px;
  text-align: left;
}

.inner_headding .events_area .Sbox .Sinfo h4 {
  display: block;
  color: #2d5d8b;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 8px;
}

.inner_headding .events_area .Sbox .Sinfo p {
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 5px;
  color: #2d5d8b;
}

.inner_headding .events_area .Sbox .Sinfo a {
  display: inline-block;
  color: #7b4799;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.inner_headding .events_area .Sbox .Sinfo a:hover {
  color: #2d5d8b;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* ------------ Datepicker css -----------*/
.ui-datepicker .ui-datepicker-header .ui-corner-all {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
  top: 2px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
  top: 2px;
}

/* ----------- Events search inner page ----------- */
.infoE_hdr {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: baseline;
  align-items: baseline;
}

.infoE_hdr h2 {
  width: 83%;
  padding-right: 15px;
}

.infoE_hdr .singup_area {
  width: calc(100% - 85%);
  text-align: left;
}

.inner_sec.events_sec {
  padding: 45px 0 150px;
}

.events_inr {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  padding-top: 15px;
}

.events_inr h1 {
  color: #2d5d8b;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.events_inr h2 {
  color: #7c489a;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 12px;
}

.events_inr p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

.events_inr span {
  display: block;
  color: #5c5c5c;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 14px;
}

.events_inr p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
}

.events_inr p strong {
  color: #2d5d8b;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  margin-right: 3px;
}

.events_inr .event_map {
  width: 100%;
  height: 465px;
  display: block;
  clear: both;
  float: none;
  margin-top: 18px;
  background: #fff;
}

.events_inr .event_map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events_inr img.alignright {
  float: right;
  max-width: 50%;
  margin: 35px 15px 8px auto;
  box-shadow: 1px 1px 4px 2px #d4d4d4;
  display: inline-block;
  border: 1px solid #f4f4f4;
  padding: 3px;
}

.events_inr .back_page {
  width: 100%;
  display: block;
  text-align: left;
  margin: 22px auto 8px;
}

.events_inr .btn-back {
  min-width: 140px;
  height: 50px;
  display: inline-block;
  text-align: center;
  padding: 12px 15px;
  border-radius: 3px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid transparent;
  background: #f16543;
  box-shadow: none !important;
  outline: none !important;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 8px 0px;
}

.events_inr .btn-back:hover,
.events_inr .btn-back:active,
.events_inr .btn-back:focus {
  border: 1px solid #f16543;
  color: #f16543;
  background: transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* ----------- Start ptac modal poup ----------------*/
.singup_area {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
  margin-top: 15px;
}

.singup_area button {
  width: 155px;
  min-height: 40px;
  display: inline-block;
  box-shadow: none !important;
  outline: none !important;
  border: 1px solid transparent;
  background: #0ba000;
  text-align: center;
  padding: 10px 28px;
  border-radius: 25px;
  margin-bottom: 5px;
  text-decoration: none !important;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.singup_area button:hover,
.singup_area button:active,
.singup_area button:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #0ba000;
  opacity: 1;
  background: transparent;
  border: 1px solid #0ba000;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #1a1a1a;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black w/ opacity */
  padding-top: 60px;
  z-index: 9999;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto;
  /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.singup_modal .close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: -15px;
  top: -18px;
  background: #7b4799;
  color: #ffffff;
  font-size: 25px;
  line-height: 13px;
  text-shadow: none;
  float: none;
  opacity: 1 !important;
  font-weight: 700;
  padding: 8px !important;
  margin: 0 !important;
  border-radius: 30px;
}

.singup_modal .close:hover,
.singup_modal .close:focus {
  color: #f8f8f8;
  cursor: pointer;
}

body.event {
  position: fixed;
  top: 0;
  left: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Start form section ----------- */
.singup_modal form {
  width: 565px;
  display: block;
  margin: 5% auto;
  min-height: 320px;
  border-radius: 0;
}

.singup_modal .modal-content {
  border: none;
}

.singup_modal .modal-header {
  padding: 12px 15px 6px 15px;
  display: block;
  text-align: center;
  border-bottom: 1px solid #f16543;
}

.singup_modal .modal-header h4 {
  text-align: center;
  display: block;
  width: 100%;
  color: #7c489a;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 32px;
  margin-bottom: 6px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.singup_modal .modal-header p {
  display: block;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0px;
}

.singup_modal .sing_info {
  width: 100%;
  display: block;
  text-align: left;
  clear: both;
}

.singup_modal .sing_info p {
  display: block;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: 'Open Sans', sans-serif;
}

.singup_modal .modal-body {
  padding: 12px 18px;
}

.singup_modal .modal-body .container {
  max-width: 100%;
  padding: 0;
}

.singup_modal .form_group {
  width: 100%;
  display: block;
  margin-bottom: 6px;
  text-align: left;
}

.singup_modal .form_group label {
  width: 100%;
  display: block;
  text-align: left;
  color: #2d5d8b;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 6px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.singup_modal .form_group input {
  width: 100%;
  display: block;
  height: 40px;
  padding: 8px 12px;
  background-color: #ffffff;
  border: 1px solid #dedede;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #646464;
  box-shadow: none;
  outline: none;
}

.singup_modal .form_submit {
  width: 100%;
  display: block;
  clear: both;
  margin-top: 12px;
  padding-bottom: 5px;
  text-align: center;
}

.singup_modal .form_submit input[type="submit"] {
  width: 135px;
  height: 45px;
  border-radius: 3px;
  box-shadow: none;
  outline: none;
  border: none;
  background: #7c489a;
  text-align: center;
  padding: 8px 15px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.singup_modal .form_submit input[type="submit"]:hover,
.singup_modal .form_submit input[type="submit"]:focus {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #003366;
}

.singup_modal .form_group input::placeholder {
  color: #848080;
}

.singup_modal .form_group input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #848080;
}

.singup_modal .form_group input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #848080;
}

/* Add Zoom Animation */
.modal_animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* Change styles for span and cancel button on extra small screens */
/* --------- ptac location section -------------*/
.ptac_location {
  width: 100%;
  display: block;
  text-align: center;
  padding-top: 45px;
}

.ptac_location .organization .org_menu ul li small {
  width: 100%;
  display: inline-block;
  margin-top: 6px;
}

.ptac_location .organization .org_menu ul li a {
  padding-bottom: 0;
}

.ptac_location .organization .org_menu ul li small {
  display: inline-block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: capitalize;
}

.ptac_location .organization .org_menu ul li small a {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
  padding: 0px 22px 12px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
  background: transparent !important;
}

.ptac_location .organization .org_menu ul li.active {
  background: #7c489a;
}

.ptac_location .organization .org_menu ul li:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7c489a;
}

/* -------------- Start client map --------------*/
.client_map {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  margin-top: 25px;
  height: 700px;
}

.client_map iframe {
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=custom.css.map */
/* ----- Resources information --- */
.resources-box {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #c0d0ee;
  border-bottom-width: 0;
  margin: 30px 0 55px;
}

.resources-box .box-row {
  display: flex;
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #c0d0ee;
}

.resources-box .box {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 26px;
  border-left: 1px solid #c0d0ee;
}

a {
  display: inline-block;
}

p {
  display: block;
  color: #003366;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0px;
}

.resources-box .box:nth-child(odd) {
  border-left-width: 0;
}

.resources-box .box-row:nth-child(odd) .box:nth-child(2) {
  background: #f4f4f4;
}

.resources-box .box-row:nth-child(even) .box:first-child {
  background: #f4f4f4;
}

/* ----- Strat accordion section ----- */
.research_sec .panel-group {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  text-align: left;
}

.research_sec .panel-hedding {
  margin-bottom: 30px;
}

.research_sec .panel-hedding h3 {
  text-transform: uppercase;
}

.research_sec .job_info {
  width: 100%;
  display: block;
  margin-bottom: 16px;
}

.research_sec #accordion .panel-body .job_info ul {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}

.research_sec #accordion .panel-body .job_info ul li {
  width: 48%;
  display: inline-block;
  color: #5d5d5d;
  font: normal 400 14px/22px 'Open Sans', sans-serif;
  padding: 0 0 8px;
}

.research_sec #accordion .panel-body .job_info ul li span {
  color: #5d5d5d;
  padding-right: 6px;
  font: normal 700 14px/22px 'Open Sans', sans-serif;
  text-transform: capitalize;
}

.research_sec #accordion .panel-body .job_info ul li:before {
  content: none;
}

.research_sec #accordion .panel {
  border: 0px none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 20px;
  width: 100%;
  display: block;
  clear: both;
}

.research_sec #accordion .panel:last-child {
  margin-bottom: 0;
}

.research_sec #accordion .panel-box {
  margin-bottom: 26px;
}

.research_sec #accordion p {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.research_sec #accordion .panel-heading {
  padding: 0px;
  margin: 0;
  width: 100%;
  display: block;
  border-radius: 0px;
  border: 1px solid #c0d0ee;
}

.research_sec #accordion .panel-title {
  color: #2d5d8b;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0px;
  width: 100%;
  display: block;
}

.research_sec #accordion .panel-title > a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 60px 20px 25px;
  position: relative;
  background: #ffffff;
  transition: 0.4s ease;
  color: #2d5d8b;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.research_sec #accordion .panel-title > a.collapsed {
  background: #fff;
  color: #2d5d8b;
}

.research_sec #accordion .panel-title > a:hover {
  color: #7b479a;
  background: #fcfeff;
}

.research_sec #accordion .panel-title > a:after,
.research_sec #accordion .panel-title > a.collapsed:after {
  content: "";
  background: url(../images/arrow-up.png) no-repeat center;
  background-size: cover;
  width: 14px;
  height: 15px;
  position: absolute;
  top: 24px;
  right: 22px;
}

.research_sec #accordion .panel-title > a:hover:after {
  color: #2d5d8b;
}

.research_sec #accordion .panel-title > a.collapsed:after {
  content: "";
  background: url(../images/arrow-down.png) no-repeat center;
  background-size: cover;
  width: 14px;
  height: 15px;
}

.research_sec #accordion .panel-title > a.collapsed:hover:after {
  color: #7b479a;
}

.research_sec #accordion .panel-body {
  color: #5d5d5d;
  background: #ffffff;
  padding: 20px 23px 5px;
  line-height: 24px;
  border: 1px solid #c0d0ee;
  border-top: 0px none;
}

.research_sec #accordion .panel-body h3 {
  color: #2d5d8b;
  font-size: 17px;
  line-height: 24px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

.research_sec #accordion .panel-body h3 a {
  color: #003366;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.research_sec #accordion .panel-body h3 a:hover {
  color: #7b479a;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.research_sec #accordion .panel-body p {
  color: #2d5d8b;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 14px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.research_sec #accordion .panel-body ul {
  width: 100%;
  display: block;
}

.research_sec #accordion .panel-body ul li {
  width: 100%;
  display: block;
  padding: 0 15px 12px 23px;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.research_sec #accordion .panel-body ul li.main {
  color: #2d5d8b;
  padding: 0 15px 6px 23px;
  line-height: 24px;
}

.research_sec #accordion .panel-body ul li:before {
  content: "";
  background: url(../images/arrow-right.png) no-repeat center;
  width: 15px;
  height: 14px;
  background-size: cover;
  position: absolute;
  top: 5px;
  left: 0px;
}

.research_sec #accordion .panel-body ul li:last-child {
  padding-bottom: 8px;
}

.research_sec #accordion .panel-body ul li > ul {
  margin: 12px 0 0 0;
  padding-bottom: 10px;
}

.research_sec #accordion .panel-body ul li > ul li {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.research_sec #accordion .panel-body ul li.main_hdr > ul li {
  color: #5b5b5b;
}

.research_sec #accordion .panel-body ul li > ul li:before {
  content: "";
  background: url(../images/arrow-right-small.png) no-repeat center;
  width: 14px;
  height: 13px;
  background-size: cover;
  position: absolute;
  top: 5px;
  left: 0px;
}

.research_sec #accordion .panel-body ul li a {
  color: #2d5d8b;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.research_sec #accordion .panel-body ul li a:hover {
  color: #7b469a;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.accordion_sec {
  width: 100%;
  display: block;
  text-align: left;
}

.accordion_sec h3 {
  color: #2d5d8b;
  font-size: 28px;
  line-height: 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ------ Ptac location map css ----- */
.ptac-locations {
  margin-top: 70px;
  border-top: 1px solid #cccccc;
}

.ptac-locations .organization {
  padding-bottom: 0;
  padding-top: 45px;
}

.ptac-locations .location-hdr {
  display: block;
  text-align: left;
  margin-bottom: 35px;
}

.ptac-locations .location-hdr h3 {
  display: block;
  color: #7c489a;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.ptac-locations .organization .org_menu .org_hr {
  display: none;
}

/* ---- ptac map location icon ---- */
.ptac-locations .organization .location_map .location_icon,
.ptac-locations .organization .location_map .location_icon.active {
  width: 22px;
  height: 30px;
}

/*--- start central icons ---*/
.ptac-locations .organization .location_map .location_icon.icon1 {
  top: 56%;
  left: 60%;
}

.ptac-locations .organization .location_map .location_icon.icon2 {
  top: 59%;
  left: 58%;
}

.ptac-locations .organization .location_map .location_icon.icon3 {
  top: inherit;
  left: 66%;
  bottom: 31%;
}

.ptac-locations .organization .location_map .location_icon.icon4 {
  top: 49%;
  left: 49%;
}

/*--- start north icons ---*/
.ptac-locations .organization .location_map .location_icon.icon5 {
  /*top: 16%;
  left: 68%;*/
  top: 12%;
  left: 76%;
}

.ptac-locations .organization .location_map .location_icon.icon6 {
 /*  top: 21%;
 left: 66%; */
   top: 16%;
  left: 75%;
}

.ptac-locations .organization .location_map .location_icon.icon7 {
  top: 28%;
  left: 78%;
}

.ptac-locations .organization .location_map .location_icon.icon8 {
  top: 4%;
  left: 61%;
}

.ptac-locations .organization .location_map .location_icon.icon9 {
  top: 14%;
  left: 71%;
}

.ptac-locations .organization .location_map .location_icon.icon10 {
  top: 1.5%;
  left: 66%;
}

.ptac-locations .organization .location_map .location_icon.icon11 {
  top: 12%;
  left: 72%;
}

.ptac-locations .organization .location_map .location_icon.icon12 {
  top: 9%;
  left: 73%;
}

.ptac-locations .organization .location_map .location_icon.icon13 {
  top: 34%;
  left: 66%;
}

/*--- start midcoast icons ----*/
.ptac-locations .organization .location_map .location_icon.icon14 {
    top: 59%;
  left: 42%;
}

.ptac-locations .organization .location_map .location_icon.icon15 {
    top: 76%;
    left: 33%;
}

.ptac-locations .organization .location_map .location_icon.icon16 {
  top: 78%;
  left: 27%;
 /* top: 76%;
 left: 27%; */
}

/*--- start SOUTHWEST icons ----*/
.ptac-locations .organization .location_map .location_icon.icon17 {
/* top: 75%;
left: 23%; */
  top: 75%;
  left: 20%;
}

.ptac-locations .organization .location_map .location_icon.icon18 {
  top: 93%;
  left: 9%;
}

.ptac-locations .organization .location_map .location_icon.icon19 {
  top: 83%;
  left: 19%;
}

/*--- start downeast icons ----*/
.ptac-locations .organization .location_map .location_icon.icon20 {
  top: 51.5%;
  left: 90.2%;
}

.ptac-locations .organization .location_map .location_icon.icon21 {
  top: 62%;
  left: 84%;
}

/* ---- popup conntent link -----*/
.ptac-locations .organization .popupcontent .link_detils p a b {
  color: #7b4799;
  font-weight: 700;
}

.ptac-locations .organization .locationpopup {
  width: 320px;
  top: 35%;
  right: -8%;
}

/* ---- Start upcoming events sections -----*/
.upcoming-events {
  background: #ededed url(../images/events-bg.jpg) no-repeat top right;
  background-size: 100% 100%;
  width: 100%;
  padding: 55px 110px 55px 145px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.events-hdr {
  margin-top: 12px;
  text-align: left;
  margin-bottom: 30px;
  width: 100%;
  display: block;
}

.events-hdr h3 {
  display: block;
  color: #7c489a;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 32px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

/* --- slider ----*/
.events-info {
  width: 67%;
  position: relative;
}

.events-slider .item {
  width: 100%;
  background: #ffffff;
  text-align: left;
}

.events-slider .item .pic-box {
  background: #878787;
  text-align: center;
  height: 175px;
  overflow: hidden;
}

.events-slider .item .pic-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-slider .content {
  padding: 22px 45px 20px 20px;
  text-align: left;
}

.events-slider .content p {
  width: 100%;
  display: block;
  color: #7c489a;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.events-slider .content a {
  display: inline-block;
  color: #f06443;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 24px;
  position: relative;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.events-slider .content a i {
  font-weight: 900;
  position: relative;
  left: 0;
  margin-left: 5px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.events-slider .content a:hover i {
  left: 5px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.events-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #a7a7a7;
}

.events-slider .owl-dots .owl-dot.active span {
  background: #7c489a;
}

.events-slider .owl-dots .owl-dot:hover span {
  background: #7c487c;
}

/* ----- news letter ------*/
.events-letter {
  width: 33%;
  padding-left: 30px;
}

.events-letter .form-sec {
  background: rgba(92, 27, 129, 0.8);
  padding: 60px 30px;
}

.newsleatter_hdr {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 18px;
}

.newsleatter_hdr h3 {
  font-size: 35px;
  line-height: 36px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}

.newsleatter_hdr h3 span {
  font-size: 26px;
  line-height: 28px;
  display: block;
}

.events-letter form {
  width: 100%;
  display: block;
  padding: 0;
  height: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
}

.events-letter form input{
  width: 100%;
  height: 60px;
  margin-bottom: 6px;
  padding: 16px 18px;
  color: #7f7e7e;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 0;
}

.events-letter .form-submit {
  width: 100%;
  margin-bottom: 18px;
}

.events-letter input[type=submit] {
  width: 100%;
  height: 60px;
  display: block;
  background: #f16543;
  padding: 8px 25px;
  color: #ffffff;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 28px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  box-shadow: none;
  outline: none;
  border: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.events-letter input[type=submit]:hover {
  color: #f16543;
  background: transparent;
  border: 1px solid #f16543;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.events-letter .ctct-disclosure{
  display: none;
}

/* Bid Submission */
.bidAnnounce h2 {
  color: #2d5d8b;
  font-size: 28px;
  line-height: 1.4;
}

.frmWrapper {
  padding: 45px 30px 72px;
  background: #f3f3f3;
  font-family: "Roboto", sans-serif;
  color: #535353;
  line-height: 1.4;
}
.frmWrapper .fieldRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 35px;
}
.frmWrapper .fieldRow:last-of-type {
  margin-bottom: 0;
}
.frmWrapper .fieldRow.submitField {
  margin-bottom: 0;
}
.frmWrapper .fieldSet {
  width: 48.2%;
}
.frmWrapper .fieldSet.fullWidth {
  width: 100%;
}
.frmWrapper input,
.frmWrapper textarea {
  width: 100%;
  border: 1px solid #dadada;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.4;
  padding: 12px 18px;
}
.frmWrapper input:focus,
.frmWrapper textarea:focus {
  outline: none;
}
.frmWrapper input {
  height: 60px;
}
.frmWrapper textarea {
  height: 140px;
}
.frmWrapper label {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}
.frmWrapper label i {
  color: #f16543;
  font-style: normal;
  padding-left: 6px;
}
.frmWrapper .multiInput {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.frmWrapper .multiInput > span {
  width: 28%;
}
.frmWrapper .multiInput > span:last-child {
  width: 38%;
}
.frmWrapper .radioCheck {
  min-height: 60px;
  display: flex;
  align-items: center;
}
.frmWrapper .radioCheck label {
  font-weight: 400;
  color: #666666;
  cursor: pointer;
  margin-bottom: 0;
}
.frmWrapper .radioCheck label input {
  height: 0;
  width: 0;
  position: absolute;
  opacity: 0;
}
.frmWrapper .radioCheck label input:checked + span::after {
  opacity: 1;
}
.frmWrapper .radioCheck label input:checked + span::before {
  border-color: #7b4799;
}
.frmWrapper .radioCheck label:hover span::before {
  border-color: #7b4799;
}
.frmWrapper .radioCheck label span {
  padding-left: 38px;
  position: relative;
}
.frmWrapper .radioCheck label span::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #adadad;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.frmWrapper .radioCheck label span::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #7b4799;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.frmWrapper .radioCheck .wpcf7-list-item {
  margin-left: 40px;
}
.frmWrapper .radioCheck .wpcf7-list-item.first {
  margin-left: 0;
}
.frmWrapper #dueDate {
  background-image: url(../images/date-icon.png);
  background-repeat: no-repeat;
  background-position: center right 18px;
}
.frmWrapper .submitField {
  justify-content: flex-end;
  margin-top: -14px;
  align-items: center;
}
.frmWrapper .submitField input[type="submit"] {
  width: 175px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  background: #7b4799;
  border-radius: 4px;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  order: 2;
}
.frmWrapper .submitField input[type="submit"]:hover {
  background: #f16543;
}
.frmWrapper .submitField .ajax-loader {
  margin-left: 0;
  margin-right: 8px;
}
.frmWrapper span.wpcf7-not-valid-tip {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 8px;
  font-weight: 500;
}
.frmWrapper div.wpcf7-validation-errors,
.frmWrapper div.wpcf7-acceptance-missing {
  border: 2px solid #f00;
  text-align: center;
  font-size: 18px;
  padding: 10px 20px;
  line-height: 1.3;
  margin: 0;
  margin-top: 35px;
}

.pagination_wrap .page-link{
    color: #002060;
    border-color: #002060;
}
.pagination_wrap .page-item:first-child .page-link, .pagination_wrap .page-item:last-child .page-link{
    border-radius: 0;
}
.pagination_wrap{
    justify-content: center;
}
.pagination_wrap ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.pagination_wrap ul li{
    padding: 0;
}
.pagination_wrap ul li::before{
    content: none;
}
.pagination_wrap ul li .page-numbers{
    display: block;
    border: 0.0625rem solid #002060;
    padding: 0.375rem 0.75rem;
}
.pagination_wrap ul li:not(:first-child) .page-numbers{
    margin-left: -0.0625rem;
}
.pagination_wrap ul li a:hover{
    background: #002060;
    color: #fff;
}

/*# sourceMappingURL=custom.css.map */
