/*-----------------------------------------------------------------------------------
 *
 * Theme Name: Fixity - Handyman Services WordPress Theme
 * Description: Handyman Services WordPress Theme
 * Author: Website Design Templates
 * Version: 1.0
 *
 * ----------------------------------------------------------------------------------- */
/* ----------------------------------
 *
 * Table of contents
 *
 * 01. Common styles
 * 02. Button Style
 * 03. Navigation
 * 04. Navigation for one page
 * 05. Onepage sidebar
 * 06. Page title
 * 07. Section title
 * 08. Banner
 * 09. Video
 * 10. Portfolio
 * 11. Pagination
 * 12. Owl carousel
 * 13. Accordion style
 * 14. Tabs
 * 15. Pages
 * 16. Pricing table
 * 17. Card styles
 * 18. List styles
 * 19. Team
 * 20. About section
 * 21. Testimonial
 * 22. Blog
 * 23. Others
 * 24. Footer
 *
 * ---------------------------------- */
/*==============================
 *    Common styles
 *    ================================ */
/* loader */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}
#preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #063b8b;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #063b8b;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}
@keyframes LoaderCicle {
  /* theme color and basic options */
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  color: #001c41;
}
body {
  color: #42545e;
}
a, a:active, a:focus {
  color: #42545e;
}
.elementor .elementor-widget-text-editor {
  color: #42545e !important;
}
a:hover, a:active {
  color: #063b8b;
  text-decoration: none;
}
.bg-primary {
  background-color: #063b8b !important;
}
.bg-secondary {
  background-color: #ecba16 !important;
}
.bg-dark {
  background-color: #001c41 !important;
}
.text-primary {
  color: #063b8b !important;
}
.text-secondary {
  color: #ecba16 !important;
}
.text-dark {
  color: #001c41 !important;
}
.text-primary-hover:hover {
  color: #063b8b !important;
}
.text-secondary-hover:hover {
  color: #ecba16 !important;
}
.min-height-700 {
  min-height: 700px;
}
.min-height-475 {
  min-height: 475px;
}
.min-vh-85 {
  min-height: 85vh;
}
.min-height-700 {
  min-height: 700px !important;
}
.border-radius-15 {
  border-radius: 15px;
}
.common-shadow {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.primary-overlay[data-overlay-dark]:before {
  background: #063b8b;
}
.secondary-overlay[data-overlay-dark]:before {
  background: #ecba16;
}
.dark-overlay[data-overlay-dark]:before {
  background: #001c41;
}
.left-overlay-secondary[data-overlay-dark]:before {
  background: rgba(236, 186, 22, 0.76);
  background: linear-gradient(-90deg, transparent, #ecba16 65%);
}
.left-overlay-dark[data-overlay-dark]:before {
  background: rgba(0, 1, 0, );
  background: linear-gradient(-90deg, transparent, #001c41 80%);
}
.bg-primary-light {
  background: rgba(6, 59, 139, 0.8);
}
.text-white-hover:hover {
  color: #ecba16 !important;
}
.dotted-seprator {
  border-top: 1px dotted rgba(0, 0, 0, 0.15);
}
.box-shadows {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.extra-section {
  padding-bottom: 275px;
}
.hover-style1 {
  overflow: hidden;
  border-radius: 0.25rem;
}
.hover-style1 img {
  transition: all 0.3s linear 0s;
}
.hover-style1:hover img {
  transform: scale(1.05);
}
.shape-img-one {
  transform: rotate(180deg);
}
.vw-lg-50 {
  width: 50vw;
}
@media only screen and (max-width: 991px) {
  /* scroll to top */  .vw-lg-50 {
    width: auto;
    text-align: center;
  }
}
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 35px;
  height: 35px;
  line-height: 30px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  /* list-style01 */
}
.scroll-to-top i {
  color: #fff;
}
.scroll-to-top:hover {
  color: #232323;
  background: #fff;
}
.scroll-to-top:hover i {
  color: #232323;
}
.scroll-to-top:visited {
  color: #232323;
  text-decoration: none;
}
.list-style01 li {
  line-height: 32px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  /* list-style02 */
}
.list-style01 li:last-child {
  margin-bottom: 0;
}
.list-style01 li:before {
  content: "\e64c";
  font-family: 'themify';
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  line-height: 35px;
  color: #063b8b;
}
.list-style02 li {
  display: inline-block;
  margin-right: 2rem;
  /* list-style03 */
}
.list-style02 li:last-child {
  margin-right: 0;
}
.list-style02 li a {
  color: rgba(255, 255, 255, 0.6);
}
.list-style02 li a:hover {
  color: #ecba16;
}
.list-style03 li {
  margin-bottom: 15px;
  /* list-style04 */
}
.list-style03 li:last-child {
  margin-bottom: 0;
}
.list-style03 li a {
  color: rgba(255, 255, 255, 0.6);
}
.list-style03 li a:hover {
  color: #ecba16;
}
.list-style04 {
  list-style: none;
  padding: 0;
  margin: 0;
  /* list-style05 */
}
.list-style04 li {
  margin-bottom: 15px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
}
.list-style04 li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0px;
}
.list-style05 {
  list-style: none;
  margin-bottom: 35px;
  padding: 0;
  /* list-style07 */
}
.list-style05 li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px dotted #ededed;
}
.list-style05 li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list-style07 {
  list-style: none;
  margin-bottom: 35px;
  padding: 0;
}
.list-style07 li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e4e4e4;
}
.list-style07 li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  /* list-style08 */  .list-style07 {
    margin-bottom: 30px;
  }
}
.list-style08 {
  margin: 0;
  padding: 0;
  /*==============================
 *    Button styles
 *    ================================ */
  /* button style */
}
.list-style08 li {
  margin-bottom: 20px;
}
.list-style08 li:last-child {
  margin-bottom: 0;
}
.list-style08 li a {
  color: #fff;
  font-size: 16px;
}
.list-style08 li a:hover {
  color: #ecba16;
}
.butn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px !important;
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  padding: 15px 32px !important;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
  background-color: #063b8b;
  letter-spacing: 1.6px;
  border: none;
  /* button style 02 */
}
.butn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: #ecba16;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}
.butn:hover, .butn:active, .butn:focus {
  color: #fff !important;
}
.butn:hover:before, .butn:active:before, .butn:focus:before {
  top: -40%;
}
.butn.white:before {
  background-color: #fff;
}
.butn.white:hover, .butn.white:active, .butn.white:focus {
  color: #063b8b !important;
}
.butn.white-hover:hover, .butn.white-hover:active, .butn.white-hover:focus {
  background-color: #fff;
  color: #001c41 !important;
}
.butn.white-hover:hover:before, .butn.white-hover:active:before, .butn.white-hover:focus:before {
  background-color: #fff;
}
.butn.secondary {
  background-color: #ecba16;
}
.butn.secondary:before {
  background-color: #063b8b;
}
.butn.md {
  padding: 12px 28px !important;
}
.butn.sm {
  padding: 8px 24px !important;
}
.butn-2 {
  position: relative;
  z-index: 9999;
  display: inline-block;
  font-size: 16px;
  line-height: normal;
  padding: 16px 30px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  color: #fff;
  background-color: #063b8b;
  border: none;
  will-change: transform;
  transition: color 0.3s ease, border-color 0.3s ease, background-position 0.3s ease, background-color 0s linear 0.3s;
  border-radius: 10px;
}
.butn-2.secondary {
  background-color: #ecba16;
}
.butn-2.secondary:hover:before, .butn-2.secondary:active:before, .butn-2.secondary:focus:before, .butn-2.secondary:hover:after, .butn-2.secondary:active:after, .butn-2.secondary:focus:after {
  background: #063b8b;
  width: 53%;
  transition: all 0.6s ease;
  opacity: 1;
}
.butn-2:before {
  position: absolute;
  top: 50%;
  right: 0;
  margin: auto;
  width: 0;
  content: ' ';
  color: #fff;
  height: 100%;
  z-index: -1;
  transition: all 0.5s ease;
  transform: translateY(-50%);
  opacity: 0;
}
.butn-2:after {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  width: 0;
  content: ' ';
  color: #fff;
  background: #ecba16;
  height: 100%;
  z-index: -1;
  transition: all 0.5s ease;
  transform: translateY(-50%);
  opacity: 0;
}
.butn-2:hover, .butn-2:active, .butn-2:focus {
  color: #fff !important;
}
.butn-2:hover:before, .butn-2:active:before, .butn-2:focus:before, .butn-2:hover:after, .butn-2:active:after, .butn-2:focus:after {
  background: #ecba16;
  width: 54%;
  transition: all 0.6s ease;
  opacity: 1;
  transform: translateY(-51%);
}
.butn-2.sm {
  padding: 10px 20px !important;
  font-size: 14px;
}
.butn-2.md {
  padding: 12px 24px;
}
@media screen and (max-width: 575px) {
  /* link button */  .butn-2 {
    margin-top: 20px;
  }
}
.link-btn {
  font-weight: 500;
  color: #3b3b3b;
  line-height: 20px;
  /* ===================================
    Navigation
====================================== */
}
.link-btn:after {
  color: #063b8b;
  content: '\f0a9';
  font-family: Font Awesome\ 5 Free;
  font-weight: 600;
  font-size: 15px;
  padding-left: 5px;
  vertical-align: middle;
}
.link-btn.white {
  color: #fff;
}
.link-btn.white:hover {
  color: #e2e2e2;
}
.link-btn.white:hover:after {
  color: #e2e2e2;
}
.link-btn.white:after {
  color: #fff;
  content: '\f0a9';
  font-family: Font Awesome\ 5 Free;
  font-weight: 600;
  font-size: 15px;
  vertical-align: middle;
  padding-left: 8px;
}
.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}
.top-bar-info ul {
  margin-bottom: 0;
}
.top-bar-info li {
  font-weight: 500;
  color: #fff;
  list-style-type: none;
  font-size: 14px;
  padding: 0 5px 0;
  display: inline-block;
  margin-bottom: 0;
}
.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}
.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0;
}
.top-social-icon {
  padding: 0;
  float: right;
  margin: 0;
}
.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}
.top-social-icon li:last-child {
  padding-right: 0;
}
.top-social-icon li:last-child a {
  padding-right: 0;
}
.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 3px;
}
.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.navbar-nav li.active > a, .navbar-nav li.active > a, .navbar-nav li.active > a {
  color: #063b8b;
}
.navbar-light .navbar-nav li.current-menu-item > a, .navbar-light .navbar-nav li.current-menu-parent > a, .navbar-light .navbar-nav li.current-menu-ancestor > a {
  color: #063b8b;
}
.navbar-light .navbar-nav > li.current-menu-item.current_page_item.active > a {
  color: #ecba16;
}
.attr-nav > ul > li > a.butn {
  color: #fff;
}
.navbar-light.navbar > ul > li.current > a:after, .navbar-light.navbar > ul > li.current-menu-item > a:after, .navbar-light.navbar > ul > li.current-menu-ancestor > a:after {
  border-color: transparent #063b8b #063b8b transparent;
}
.menu_area-light .navbar-light.navbar > ul > li.current > a:after {
  border-color: transparent #ecba16 #ecba16 transparent;
}
.menu_area-light .navbar-light.navbar > ul > li.current-menu-item > a:after {
  border-color: transparent #ecba16 #ecba16 transparent;
}
.menu_area-light.scrollHeader .navbar-light .navbar-nav li.current > a {
  color: #063b8b;
}
.menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-item > a {
  color: #063b8b;
}
.menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-item > a:hover {
  color: #063b8b;
}
.menu_area-light.scrollHeader .navbar-light.navbar > ul > li.current > a:after {
  border-color: transparent #063b8b #063b8b transparent;
}
.menu_area-light.scrollHeader .navbar-light.navbar > ul > li.current-menu-item > a:after {
  border-color: transparent #063b8b #063b8b transparent;
}
.menu_area-light .navbar-light.navbar > ul > li.current-menu-ancestor > a:after, .menu_area-light .navbar-light.navbar > ul > li.current-menu-ancestor.current-menu-item > a:after {
  border-color: transparent #ecba16 #ecba16 transparent;
}
.menu_area-light.scrollHeader .navbar-light .navbar-nav > li > a.nav-link:hover, .menu_area-light.scrollHeader .navbar-light .navbar-nav > li > a.nav-link:active, .menu_area-light.scrollHeader .navbar-light .navbar-nav > li > a.nav-link:focus {
  color: #063b8b;
}
.menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-ancestor > a, .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-ancestor.current-menu-item > a {
  color: #063b8b;
  color: #063b8b;
}
.menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-item > a, .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current > a:hover {
  color: #063b8b;
}
.menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-ancestor > a:hover, .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-ancestor.current-menu-item > a:hover {
  color: #063b8b;
}
.menu_area-light.scrollHeader .navbar-light.navbar > ul > li.current-menu-ancestor > a:after, .menu_area-light.scrollHeader .navbar-light.navbar > ul > li.current-menu-ancestor.current-menu-item > a:after {
  border-color: transparent #063b8b #063b8b transparent;
}
@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #063b8b;
  }
  .header-style1 .navbar-toggler:after {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .header-style1 .navbar-toggler:before {
    background: #fff;
  }
  .header-style1 .navbar-toggler.menu-opened:after, .header-style1 .navbar-toggler.menu-opened:before {
    background: #fff;
  }
}
.header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.current-menu-ancestor > a, .header-style2 .navbar-nav li.current-menu-item > a, .header-style2 .navbar-nav li.current-menu-parent > a {
  color: #063b8b;
}
.header-style2 .navbar > ul > li.current > a:after, .header-style2 .navbar > ul > li.current-menu-item > a:after, .header-style2 .navbar > ul > li.current-menu-ancestor > a:after {
  border-color: transparent #063b8b #063b8b transparent;
}
.header-style2.scrollHeader .navbar-nav li.current > a {
  color: #063b8b;
}
.header-style2.scrollHeader .navbar-nav li.current-menu-item > a:hover {
  color: #063b8b;
}
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #063b8b #063b8b transparent;
}
.header-style2.scrollHeader .navbar > ul > li.current-menu-item > a:after {
  border-color: transparent #063b8b #063b8b transparent;
}
.header-style2.scrollHeader .navbar-nav li.current-menu-ancestor > a, .header-style2.scrollHeader .navbar-nav li.current-menu-ancestor.current-menu-item > a {
  color: #063b8b;
}
.header-style2.scrollHeader .navbar-nav li.current-menu-item > a, .header-style2.scrollHeader .navbar-nav li.current > a:hover {
  color: #063b8b;
}
.header-style2.scrollHeader .navbar-nav li.current-menu-ancestor > a:hover, .header-style2.scrollHeader .navbar-nav li.current-menu-ancestor.current-menu-item > a:hover {
  color: #063b8b;
}
.header-style2.scrollHeader .navbar > ul > li.current-menu-ancestor > a:after, .header-style2.scrollHeader .navbar > ul > li.current-menu-ancestor.current-menu-item > a:after {
  border-color: transparent #063b8b #063b8b transparent;
}
.header-style2 .navbar-nav li.has-sub a:hover, .header-style2 .navbar-nav li.has-sub a:active, .header-style2 .navbar-nav li.has-sub a:focus {
  color: #063b8b;
}
.navbar > ul > li.has-sub > a:hover:after, .navbar > ul > li.has-sub > a:active:after, .navbar > ul > li.has-sub > a:focus:after {
  border-color: transparent #063b8b #063b8b transparent;
}
@media screen and (min-width: 992px) {
  .header-style1 .navbar-light .navbar-nav li.current > a {
    color: #063b8b;
  }
  .header-style1 .navbar-light.navbar > ul > li.current > a:after {
    border-color: transparent #063b8b #063b8b transparent;
  }
  .header-style1.scrollHeader .navbar-light.navbar > ul > li.current > a:after {
    border-color: transparent #063b8b #063b8b transparent;
  }
  .menu_area-light .navbar-light .navbar-nav li.has-sub a:hover, .menu_area-light .navbar-light .navbar-nav li.has-sub a:active, .menu_area-light .navbar-light .navbar-nav li.has-sub a:focus {
    color: #063b8b;
  }
  .menu_area-light .navbar-light .navbar-nav > li > a.nav-link:hover, .menu_area-light .navbar-light .navbar-nav > li > a.nav-link:active, .menu_area-light .navbar-light .navbar-nav > li > a.nav-link:focus {
    color: #ecba16;
  }
  .header-style1 .navbar > ul > li.has-sub > a.nav-link:hover:after, .header-style1 .navbar > ul > li.has-sub > a.nav-link:active:after, .header-style1 .navbar > ul > li.has-sub > a.nav-link:focus:after {
    border-color: transparent #ecba16 #ecba16 transparent;
  }
  .menu_area-light .navbar-light .navbar-nav li.current > a, .menu_area-light .navbar-light .navbar-nav li.current-menu-ancestor > a {
    color: #ecba16;
  }
  .menu_area-light .navbar-light .navbar-nav li.current-menu-ancestor .current-menu-ancestor > a {
    color: #ecba16;
  }
  .menu_area-light.scrollHeader .navbar-light .navbar-nav > li.has-sub > a:hover {
    color: #063b8b;
  }
  .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current > a:hover {
    color: #063b8b;
  }
  .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-item > a:hover {
    color: #063b8b;
  }
  .menu_area-light.scrollHeader .navbar-light.navbar > ul > li.current > a:after {
    border-color: transparent #063b8b #063b8b transparent;
  }
  .menu_area-light.scrollHeader .navbar-light.navbar > ul > li.current-menu-item > a:after {
    border-color: transparent #063b8b #063b8b transparent;
  }
  .menu_area-light .navbar-light.navbar > ul > li.current > a:after, .menu_area-light .navbar-light.navbar > ul > li.current-menu-item > a:after {
    border-color: transparent #063b8b #063b8b transparent;
  }
  .header-style1.scrollHeader .navbar-light .navbar-nav li.current > a, .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current > a, .header-style1.scrollHeader .navbar-light .navbar-nav li.current > a:hover {
    color: #063b8b;
  }
  .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current > a, .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-ancestor > a {
    color: #063b8b;
  }
  .header-style1.scrollHeader .navbar > ul > li.has-sub > a.nav-link:hover:after, .header-style1.scrollHeader .navbar > ul > li.has-sub > a.nav-link:active:after, .header-style1.scrollHeader .navbar > ul > li.has-sub > a.nav-link:focus:after {
    border-color: transparent #063b8b #063b8b transparent;
  }
  .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-ancestor > a:hover, .menu_area-light.scrollHeader .navbar-light .navbar-nav li.current-menu-ancestor.current-menu-item > a:hover {
    color: #063b8b;
  }
  .menu_area-light.scrollHeader .navbar-light.navbar > ul > li.current-menu-ancestor > a:after, .menu_area-light.scrollHeader .navbar-light.navbar > ul > li.current-menu-ancestor.current-menu-item > a:after {
    border-color: transparent #063b8b #063b8b transparent;
  }
}
@media screen and (max-width: 991px) {
  /*==============================
 *    Main Banner
 *    ================================ */
  /*slider fade*/  .navbar-light .navbar-nav li.current-menu-item > a, .navbar-light .navbar-nav li.current-menu-parent > a, .navbar-light .navbar-nav li.current-menu-ancestor > a {
    color: #063b8b;
  }
  .menu_area-light .navbar-light .navbar-nav li.current > a, .menu_area-light .navbar-light .navbar-nav li.active > a {
    color: #063b8b;
  }
}
.slider-fade {
  /* banner-style01 */
}
.slider-fade .bg-img {
  background-size: cover;
}
.slider-fade .owl-nav {
  margin: 0;
}
.slider-fade .owl-nav .owl-next {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  height: 50px;
  width: 50px;
  line-height: 56px !important;
  background: #063b8b !important;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
  color: #fff !important;
}
.slider-fade .owl-nav .owl-prev {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  height: 50px;
  width: 50px;
  line-height: 56px !important;
  background: #063b8b !important;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0;
  color: #fff !important;
  left: 30px;
}
.slider-fade .owl-nav .owl-next {
  right: 30px;
}
.slider-fade .owl-nav i {
  font-size: 20px;
  color: #fff;
}
.slider-fade .owl-nav .owl-next:hover, .slider-fade .owl-nav .owl-prev:hover {
  background: #ecba16 !important;
}
.slider-fade.owl-carousel.owl-theme .owl-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  margin: 0;
  left: 0;
}
.slider-fade .item {
  height: 85vh;
}
.slider-fade .video_btn {
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: rgba(255, 255, 255, 0.1);
}
.slider-fade .video_btn:before, .slider-fade .video_btn:after {
  content: none;
}
.slider-fade .icon {
  animation-delay: 0.8s;
}
.slider-fade span {
  animation-delay: 1.2s;
}
.slider-fade h1 {
  animation-delay: 1.6s;
}
.slider-fade .butn {
  animation-delay: 2s;
}
.banner-style01 .banner-heading {
  position: relative;
}
.banner-style01 .banner-heading span.small-text {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  color: #ecba16;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 45px;
}
.banner-style01 .banner-heading span.small-text:before {
  position: absolute;
  left: 0px;
  top: 7px;
  width: 30px;
  height: 2px;
  background-color: #ecba16;
  content: "";
}
.banner-style01 .slider-fade .owl-nav .owl-prev, .banner-style01 .slider-fade .owl-nav .owl-next {
  position: absolute;
  transform: translateY(-50%);
  height: 60px;
  width: 60px;
  line-height: 56px !important;
  background: #063b8b !important;
  transition: all 0.3s ease;
  margin: 0;
  color: #fff !important;
  border-radius: 0;
}
.banner-style01 .slider-fade .owl-nav .owl-prev {
  top: 50%;
  left: 30px;
}
.banner-style01 .slider-fade .owl-nav .owl-next {
  top: 50%;
  right: 30px;
}
.banner-style01 .slider-fade .owl-nav i {
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .banner-style01 .slider-fade .owl-nav .owl-prev, .banner-style01 .slider-fade .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    line-height: 50px !important;
  }
  .banner-style01 .slider-fade .owl-nav i {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  /* slider-fade1 */  .banner-style01 .banner-heading span.small-text {
    margin-bottom: 15px;
  }
}
.slider-fade1 {
  /*==============================
 *    Section heading
 *    ================================ */
  /* heading-style01 */
}
.slider-fade1 .title {
  animation-delay: 1.2s;
}
.slider-fade1 .small-title {
  animation-delay: 0.8s;
  position: relative;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  padding-left: 45px;
}
.slider-fade1 .small-title:before {
  position: absolute;
  left: 0px;
  top: 7px;
  width: 30px;
  height: 2px;
  background-color: #ecba16;
  content: "";
}
.slider-fade1 a {
  animation-delay: 1.6s;
}
.slider-fade1.owl-theme .owl-nav {
  margin-top: 0;
}
.slider-fade1.owl-carousel.owl-theme .owl-dots {
  position: absolute;
  bottom: 50px;
  width: 100%;
  margin: 0;
  left: 0;
}
.slider-fade1.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  cursor: pointer;
  margin-left: 12px;
}
.slider-fade1.owl-theme .owl-dots .owl-dot:first-child {
  margin-left: 0;
}
.slider-fade1.owl-theme .owl-dots .owl-dot span {
  display: inline-block;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  background-color: #fff;
  border: 3px solid transparent;
  border-radius: 50%;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  transition: 0.3s;
  margin: 0;
}
.slider-fade1.owl-theme .owl-dots .owl-dot.active span, .slider-fade1.owl-theme .owl-dots .owl-dot:hover span {
  background-color: transparent;
  border-color: #ecba16;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.slider-fade1.owl-theme .owl-nav [class*='owl-'] {
  position: absolute;
  right: inherit;
  top: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border: none;
  background: #063b8b;
  border-radius: 60px;
  line-height: 65px;
  transition-duration: 500ms;
  left: 15px;
  text-align: center;
  margin: auto;
  opacity: 0.2;
}
.slider-fade1.owl-theme .owl-nav .owl-next {
  top: 0;
  bottom: 0;
  left: inherit;
  right: 15px;
}
.slider-fade1.owl-theme .owl-nav .owl-next:hover {
  opacity: 1;
  background: #063b8b;
}
.slider-fade1.owl-theme .owl-nav .owl-prev:hover {
  opacity: 1;
  background: #063b8b;
}
.slider-fade1 .owl-nav i, .slider-fade1 .owl-nav span {
  font-weight: 600;
  color: #fff;
  transition-duration: 500ms;
  font-size: 20px;
}
.slider-fade1 .owl-nav .owl-next:hover i, .slider-fade1 .owl-nav .owl-prev:hover i {
  color: #fff;
}
.heading-style01 {
  /* heading-style02 */
}
.heading-style01 .small-text {
  text-transform: uppercase;
  padding-left: 45px;
  position: relative;
  display: inline-block;
  color: #ecba16;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.heading-style01 .small-text:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: #ecba16;
  content: "";
}
.heading-style01 h2 {
  margin-bottom: 0;
  line-height: 1;
  font-weight: 800;
}
.heading-style02 {
  /*==============================
 *    Page title
 *    ================================ */
}
.heading-style02 span {
  position: relative;
  z-index: 1;
  padding-left: 10px;
  padding-bottom: 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #063b8b;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
}
.heading-style02 span:before {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  top: -1px;
  content: "";
  left: -10px;
  background-color: #ecba16;
  border-radius: 50%;
}
.page-title-section {
  padding: 190px 0 100px;
}
.page-title-section h1 {
  font-size: 60px;
  line-height: 1;
  color: #fff;
  word-wrap: break-word;
  word-break: break-word;
}
.page-title-section ul {
  margin: 0;
  display: inline-block;
}
.page-title-section ul li {
  display: inline-block;
  vertical-align: middle;
}
.page-title-section ul li:after {
  content: "\e622";
  font-weight: 700;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  font-family: themify;
  padding: 0 5px 0 10px;
}
.page-title-section ul li:last-child:after {
  content: none;
}
.page-title-section ul li:last-child {
  opacity: 0.8;
  color: #ecba16;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.page-title-section ul li a {
  color: #ecba16;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.page-title-section ul li:hover a {
  color: #ecba16;
}
@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 175px 0 90px;
  }
  .page-title-section h1 {
    font-size: 54px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 145px 0 85px;
  }
  .page-title-section h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  /*==============================
 *    card-style
 *    ================================ */
  /* card-style01 */  .page-title-section h1 {
    font-size: 40px;
  }
}
.card-style01 {
  position: relative;
  overflow: hidden;
}
.card-style01 .service-img:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 18%;
  z-index: 2;
  transition: all 0.3s ease;
  background-color: #063b8b;
}
.card-style01:hover .service-img:before {
  background: #063b8b;
  height: 100%;
}
.card-style01 .service-img img {
  opacity: 1;
}
.card-style01:hover .service-img img {
  opacity: 0;
}
.card-style01 .card-body {
  position: absolute;
  padding: 0;
  left: 30px;
  width: 100%;
  bottom: 20px;
  z-index: 9;
  height: 9%;
  transition: all 0.3s ease;
}
.card-style01:hover .card-body {
  height: 85%;
}
.card-style01 .card-footer {
  position: absolute;
  padding: 50px 35px;
  left: 0;
  width: 100%;
  bottom: -100%;
  z-index: 9;
  transition-delay: 0.1s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.card-style01:hover .card-footer {
  bottom: 0;
}
@media screen and (max-width: 575px) {
  /* card-style02 */  .card-style01 .card-footer {
    padding: 35px 30px;
  }
}
.card-style02 {
  transition: all 0.5s ease 0s;
  height: 100%;
}
.card-style02:hover {
  transform: translateY(-10px);
}
.card-style02 .arrow-icon a {
  width: 40px;
  height: 40px;
  background-color: #063b8b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-style02:hover h3 a {
  color: #ecba16;
}
.card-style02:hover .arrow-icon a {
  background-color: #ecba16;
}
.card-style02 .card-number {
  position: absolute;
  bottom: 15%;
  right: 10%;
  font-size: 100px;
  color: #063b8b;
  opacity: 0.1;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  /* card-style03 */  .card-style02 .card-number {
    font-size: 85px;
  }
}
.card-style03 {
  background: linear-gradient(to right, #ecba16, 50%, #f1f6fb 0%, #f1f6fb 100%) no-repeat scroll right bottom / 210% 100% transparent;
  transition: all 0.3s ease;
  /* card-style04 */
}
.card-style03:hover {
  background-position: left bottom;
}
.card-style03 h3 a {
  color: #063b8b;
}
.card-style03:hover h3 a {
  color: #fff;
}
.card-style04 {
  /* card-style05 */
}
.card-style04:hover .team-icon {
  transition: all ease-in-out 0.5s;
  opacity: 1;
  transform: translateY(-30px);
}
.card-style04 .team-icon {
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  background: #fff;
  padding: 8px 0;
  margin: 0 50px;
  text-align: center;
  display: inline-block;
}
.card-style04 .team-icon ul li {
  margin: 0 15px;
}
.card-style04 .team-icon ul li a {
  color: #063b8b;
  transition: all ease-in-out 0.3s;
}
.card-style04 .team-icon ul li a:hover {
  color: #ecba16;
}
.card-style05 {
  position: relative;
  display: block;
  /* card-style06 */
}
.card-style05 .card-body {
  position: relative;
  display: block;
  padding: 0 0 110px 0;
}
.card-style05 .title {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  min-height: 110px;
  z-index: 1;
}
.card-style05 .title .blue-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #063b8b;
  z-index: -1;
}
.card-style05 .title .card-text {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 270px;
  background: #fff;
  padding-top: 27px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 24px;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0.1s;
  z-index: 2;
}
.card-style05 .card-text h3 a:hover {
  color: #ecba16;
}
.card-style05 .title .card-butn {
  position: relative;
  display: block;
  padding-top: 65px;
  padding-left: 30px;
}
.card-style05 .title .icon {
  position: absolute;
  bottom: 12px;
  right: 20px;
}
.card-style05 .title .text {
  position: relative;
  display: block;
  height: 0;
  opacity: 0;
  padding-top: 0;
  transition: all 0.3s ease-in-out 0.1s;
}
.card-style05:hover .title .card-text {
  padding-top: 37px;
  padding-bottom: 43px;
}
.card-style05:hover .title .text {
  opacity: 1;
  height: 90px;
  padding-top: 9px;
}
.card-style06 {
  /* card-style07 */
}
.card-style06 .card-body .icon-holder .box {
  position: absolute;
  top: -6px;
  right: -3px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  background-color: rgba(6, 59, 139, 0.4);
  transition: all 500ms ease;
}
.card-style06:hover .icon-holder .box {
  background-color: #063b8b;
}
.card-style06 .card-body .img-box {
  position: relative;
  display: inline-block;
  z-index: 9;
}
.card-style06 .card-body .img-box img {
  transform: scale(1);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.card-style06:hover .icon-holder img {
  transform: scale(0.9);
}
.card-style07 {
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
  border: none;
  height: 100%;
  /* card-style08 */
}
.card-style07 .card-label {
  padding: 5px 10px;
  background-color: #ecba16;
  display: inline-block;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.card-style07 .card-price {
  background-color: #fff;
  position: absolute;
  bottom: -32px;
  left: 30px;
  width: 195px;
  height: 70px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-style07 .card-month {
  position: absolute;
  right: 30px;
  bottom: -15px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #272c49;
  padding: 5px 20px;
  border-radius: 35px;
}
.card-style08 {
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
  /* card-style09 */
}
.card-style08 .category {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
}
.card-style08 .category a {
  display: inline-block;
  margin-left: 5px;
  padding: 4px 10px 3px 10px;
  color: #fff;
  font-weight: 600;
  z-index: 9;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.5s ease;
  background-color: #063b8b;
}
.card-style08 .category a:hover, .card-style08 .category a:active, .card-style08 .category a:focus {
  background-color: #ecba16;
}
.card-style08 .card-footer {
  border-color: rgba(0, 0, 0, 0.085);
}
.card-style08 .card-footer i {
  vertical-align: text-top;
}
.card-style08 .card-img:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 59, 139, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.card-style08:hover .card-img:before {
  opacity: 1;
  transition: 0.4s;
}
.card-style09 {
  transition: 0.3s;
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
  position: relative;
  height: 100%;
  /* card-style10 */
}
.card-style09:before {
  content: '';
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.card-style09:hover:before {
  opacity: 1;
}
.card-style09:hover .card-body {
  background-color: rgba(6, 59, 139, 0.4);
}
.card-style09:hover h3, .card-style09:hover p, .card-style09:hover a, .card-style09:hover .card-footer i {
  color: #fff;
}
.card-style09 .card-body {
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.card-style09 .card-footer {
  background-color: #fff;
  border-top-color: #eee;
}
.card-style09:hover .card-footer {
  background-color: rgba(6, 59, 139, 0.4);
  border-top-color: rgba(255, 255, 255, 0.2);
}
.card-style09:hover .card-icon {
  -webkit-transform: translateY(-10px) translate3d(0, -10px, 0);
  -moz-transform: translateY(-10px) translate3d(0, -10px, 0);
  -ms-transform: translateY(-10px) translate3d(0, -10px, 0);
  transform: translateY(-10px) translate3d(0, -10px, 0);
  background: #ecba16;
}
.card-style09 .card-icon {
  width: 110px;
  height: 110px;
  text-align: center;
  background: #063b8b;
  line-height: 110px;
  margin: -100px auto 20px auto;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  -ms-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  -o-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}
.card-style09 .card-border::before {
  position: absolute;
  content: "";
  background: #eee;
  width: 1px;
  height: 45px;
  top: 10%;
  transition: 0.3s;
}
.card-style09 .card-border::after {
  position: absolute;
  content: "";
  background: #eee;
  width: 1px;
  height: 45px;
  transition: 0.3s;
  bottom: 30px;
  opacity: 0;
  transition: 0.3s;
}
.card-style09:hover .card-border::after {
  background: #ecba16;
  opacity: 1;
  bottom: -45px;
  transition: 0.3s;
}
.card-style09 .card-icon img {
  padding: 29px;
}
.card-style10 {
  height: 100%;
  /*card-style11*/
}
.card-style10 .card-img {
  position: relative;
}
.card-style10 .card-img img {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.card-style10 .card-img .icon {
  position: absolute;
  display: inline-block;
  height: 70px;
  width: 70px;
  background: #fff;
  text-align: center;
  line-height: 70px;
  left: 30px;
  font-size: 25px;
  color: #063b8b;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 20px 0 #e12454 33;
  box-shadow: 0px 10px 20px 0 rgba(6, 59, 139, 0.2);
  bottom: -35px;
}
.card-style10 .card-body h3 a:hover {
  color: #ecba16 !important;
}
.card-style10 .icon img {
  transition: 0.5s all;
  vertical-align: middle;
}
.card-style10:hover .icon img {
  transform: rotatey(180deg);
}
.card-style11 .card-body {
  transition: all 0.4s ease;
}
.card-style11:hover .card-body {
  background-color: #063b8b;
  transition: all 0.4s ease;
}
.card-style11 .card-body h3 a, .card-style11 .card-body p {
  color: black;
}
.card-style11:hover .card-body h3 a, .card-style11:hover .card-body p {
  color: white;
}
.card-style11 .card-body a span {
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  margin-left: 0;
  line-height: 1px;
}
.card-style11:hover .card-body a span {
  font-size: 18px;
  opacity: 1;
  margin-right: 10px;
  visibility: visible;
  color: white;
  line-height: 1px;
}
.card-style11 .card-body a i {
  margin-left: 0;
  transition: all 0.3s ease;
}
.card-style11:hover .card-body a i {
  color: white;
}
.service-block {
  position: relative;
  top: -50px;
  background: transparent;
  z-index: 9;
  /*card-style12*/
}
.card-style12 {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border: 0;
}
.card-style12:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-180deg, transparent, #000 175%);
}
.card-style12 img {
  transition: 0.5s;
}
.card-style12 .title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  border-radius: 4px;
  padding: 10px 15px;
  transition: 0.5s;
  color: #fff;
  border-color: #063b8b;
  background-color: #063b8b;
}
.title h4 span {
  background-color: #fff;
  color: #3b3b3b;
  margin: 0 10px 0 0;
  padding: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 15px;
  text-align: center;
  border-radius: 4px;
}
.card-style12 .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.1);
  transition: 0.5s;
  padding: 20px;
  background: rgba(6, 59, 139, 0.85);
  opacity: 0;
  border-radius: 4px;
  visibility: hidden;
  margin: 20px;
  z-index: 1;
}
.card-style12 .content .inner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  right: 25px;
  margin: 0 auto;
}
.card-style12 .content .inner-content a {
  color: #fff;
}
.card-style12 .content .inner-content a:hover {
  color: rgba(226, 226, 226, 0.9);
}
.card-style12:hover .content {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.card-style12:hover .title {
  opacity: 0;
  visibility: hidden;
}
.card-style12:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
@media screen and (max-width: 1199px) {
  /*card-style13*/  .card-style12 .content {
    margin: 15px;
    padding: 15px;
  }
}
.card-style13 .card-body {
  position: relative;
  margin: -60px 25px 0 25px;
  padding: 60px 40px 40px 40px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.card-style13 .card-body:before {
  position: absolute;
  width: 0;
  height: 3px;
  background: #ecba16;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: '';
  z-index: 3;
  transition: all 0.4s ease-out;
}
.card-style13 .card-img-top {
  border-radius: 0;
}
.card-style13:hover .card-body:before {
  width: 100%;
}
@media screen and (max-width: 1399px) {
  .card-style13 .card-body {
    padding: 60px 30px 30px 30px;
  }
}
@media screen and (max-width: 991px) {
  /*==============================
 *    Story video
 *    ================================ */  .card-style13 .card-body {
    padding: 50px 18px 30px 18px;
  }
}
.video_btn {
  position: relative;
  z-index: 1;
  height: 80px;
  width: 80px;
  background: #ecba16;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
}
.video_btn:hover i, .video_btn:focus i {
  color: #fff;
}
.video_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video_btn.small {
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.video_btn.small:after {
  height: 50px;
  width: 50px;
}
.video_btn.small:before {
  height: 65px;
  width: 65px;
}
@media screen and (max-width: 1199px) {
  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 75px;
  }
  .video_btn:after {
    height: 75px;
    width: 75px;
  }
  .video_btn:before {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 991px) {
  .video_btn {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .video_btn:after {
    height: 70px;
    width: 70px;
  }
  .video_btn:before {
    height: 85px;
    width: 85px;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    }
  }
}
@media screen and (max-width: 767px) {
  /*story video*/  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .video_btn:after {
    height: 60px;
    width: 60px;
  }
  .video_btn:before {
    height: 75px;
    width: 75px;
  }
}
.video_btn2 {
  position: relative;
  height: 80px;
  width: 80px;
  background: #ecba16;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
}
.video_btn2:hover i, .video_btn2:focus i {
  color: #fff;
}
.video_btn2:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn2:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-img {
  position: relative;
}
.video-icon {
  position: absolute;
  top: 50%;
  left: 30%;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@media screen and (max-width: 1199px) {
  .video_btn2 {
    height: 75px;
    width: 75px;
    line-height: 80px;
  }
  .video_btn2:after {
    height: 75px;
    width: 75px;
  }
  .video_btn2:before {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 991px) {
  .video-icon {
    left: 45%;
  }
  .video_btn2 {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .video_btn2:after {
    height: 70px;
    width: 70px;
  }
  .video_btn2:before {
    height: 85px;
    width: 85px;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    }
  }
}
@media screen and (max-width: 767px) {
  .video_btn2 {
    height: 60px;
    width: 60px;
    line-height: 62px;
  }
  .video_btn2:after {
    height: 60px;
    width: 60px;
  }
  .video_btn2:before {
    height: 75px;
    width: 75px;
  }
}
.story-video {
  height: 100%;
}
.parallax-video {
  padding: 250px 0 300px 0;
  /*==============================
 *    Portfolio
 *    ================================ */
  /* filtering */
}
.filtering {
  margin-bottom: 40px;
}
.filtering span {
  cursor: pointer;
  font-size: 14.4px;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 5px;
  padding: 6px 15px;
  background: transparent;
  color: #18455d;
  border: 2px solid #18455d;
}
.filtering span:last-child {
  margin: 0;
}
.filtering .active {
  color: #fff;
  background: #ecba16;
  border: 2px solid #ecba16;
}
@media screen and (max-width: 767px) {
  .filtering {
    margin-bottom: 0;
  }
  .filtering span {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 575px) {
  /* popup gallery */  .filtering span {
    padding: 6px 8px;
    margin-right: 5px;
    font-size: 13px;
  }
}
.lg-backdrop {
  z-index: 99999;
}
.lg-outer {
  z-index: 999999;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #ecba16;
}
.lg-progress-bar .lg-progress {
  background-color: #ecba16;
}
.lg-backdrop.in {
  opacity: 0.85;
  /*portfolio-style-01*/
}
.portfolio-card {
  position: relative;
  padding-top: 133.334%;
}
.portfolio-card:hover .portfolio-thumbnail:before, .portfolio-card:hover:before {
  background-color: rgba(6, 59, 139, 0.8);
}
.portfolio-card:hover .portfolio-link {
  height: 30px;
}
.portfolio-card:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.375rem;
}
.portfolio-card .portfolio-thumbnail {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
}
.portfolio-card .portfolio-thumbnail:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.375rem;
}
.portfolio-card .project-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 20px 20px 30px;
  z-index: 3;
}
.portfolio-card .project-content h3 a {
  color: #fff;
  transition: all 0.3s ease;
}
.portfolio-card .project-content h3 a:hover {
  color: #ecba16;
}
.portfolio-card .portfolio-link {
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 30px;
  height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.portfolio-card .portfolio-link a {
  padding-top: 10px;
  color: #ecba16;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  /* portfolio-style2 */  .portfolio-card .project-content {
    padding: 15px 20px;
  }
}
.portfolio-carousel2.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px;
  text-align: center !important;
}
.portfolio-style2 {
  position: relative;
}
.portfolio-style2 .portfolio-img img {
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
.portfolio-style2:hover .portfolio-img img {
  transform: scale(1.1);
  border-radius: 3px;
}
.portfolio-carousel2-static .portfolio-style2 .portfolio-text, .portfolio-carousel2 .owl-item.center .portfolio-style2 .portfolio-text {
  opacity: 1;
  visibility: visible;
}
.portfolio-style2 .portfolio-text {
  position: relative;
  z-index: 1;
  padding: 30px 30px;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
  /* portfolio-style3 */
}
.portfolio-style3 {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}
.portfolio-style3:before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #063b8b;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.portfolio-style3:hover:before {
  opacity: 0.8;
  visibility: visible;
  border-radius: 5px;
}
.portfolio-style3 .portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.portfolio-style3 .portfolio-content .portfolio-inner-content {
  padding: 20px;
  transform: scale(0, 0);
  transition: all 500ms ease;
  background: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center;
}
.portfolio-style3 .portfolio-buttons {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 4;
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all 0.6s;
}
.portfolio-style3 .portfolio-buttons .portfolio-link {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
}
.portfolio-style3 .portfolio-buttons .portfolio-link i {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
}
.portfolio-style3:hover .portfolio-content .portfolio-inner-content {
  transform: scale(1, 1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.portfolio-style3:hover .portfolio-buttons {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.portfolio-style3 .portfolio-buttons .portfolio-link:hover {
  background: #ecba16;
}
.portfolio-style3 .portfolio-buttons .portfolio-link i:hover {
  color: #fff;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  /*==============================
 *    Pagination
 *    ================================ */  .portfolio-style3 .portfolio-content .portfolio-inner-content {
    padding: 15px;
  }
}
.pagination {
  border-radius: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.pagination ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}
.pagination li {
  display: inline;
  margin-right: 10px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination a {
  background: transparent;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  color: #42545e;
  border: 1px solid #ddd;
  line-height: 25px;
  display: inline-block;
}
.pagination a:hover, .pagination a:active, .pagination a:focus {
  background-color: #ecba16;
  color: #fff;
  box-shadow: none;
  border-color: #ecba16;
}
.pagination .active a {
  background-color: #f7f7f7;
  color: #002147;
  border: 1px solid #dbdbdb;
  cursor: default;
}
@media screen and (max-width: 575px) {
  /* ===================================
    Page Navigation
====================================== */  .pagination li {
    margin-right: 8px;
  }
}
.page-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.prev-page {
  position: relative;
  width: 50%;
  max-width: 350px;
  margin: 10px;
}
.prev-page:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, );
  box-shadow: 0 0 0 0 rgba(34, 35, 40, );
  transform: scale(1.04, 1.12);
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
.prev-page .page-info > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 20px;
  min-height: 110px;
  transition: 0.8s;
}
.prev-page .page-info .image-prev {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  border-radius: 4px;
  overflow: hidden;
}
.prev-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  border-radius: 4px;
  overflow: hidden;
}
.prev-page .page-info .prev-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.prev-page .page-info .prev-title:empty {
  display: none;
}
.prev-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.prev-page .page-info .next-title:empty {
  display: none;
}
.prev-page:hover:before {
  background-color: white;
  transform: scale(1);
  box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
}
.prev-page a {
  justify-content: flex-start;
  text-align: left;
}
.prev-page a:hover .image-prev:after {
  visibility: visible;
  opacity: 1;
}
.prev-page a:hover .image-prev:before {
  visibility: visible;
  opacity: 1;
  margin-left: 0;
}
.prev-page .image-prev {
  margin-right: 20px;
}
.prev-page .image-prev:after {
  background-color: #ecba16;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.prev-page .image-prev:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-left: 20px;
  content: "\e64a";
  font-family: 'themify';
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.next-page {
  position: relative;
  width: 50%;
  max-width: 350px;
  margin: 10px;
  margin-left: auto;
}
.next-page:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, );
  box-shadow: 0 0 0 0 rgba(34, 35, 40, );
  transform: scale(1.04, 1.12);
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
.next-page .page-info > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 20px;
  min-height: 110px;
  transition: 0.8s;
}
.next-page .page-info .image-prev {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  border-radius: 4px;
  overflow: hidden;
}
.next-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  border-radius: 4px;
  overflow: hidden;
}
.next-page .page-info .prev-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.next-page .page-info .prev-title:empty {
  display: none;
}
.next-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}
.next-page .page-info .next-title:empty {
  display: none;
}
.next-page:hover:before {
  background-color: white;
  transform: scale(1);
  box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
}
.next-page .image-next {
  margin-left: 20px;
}
.next-page .image-next:after {
  background-color: #ecba16;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.next-page .image-next:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-right: 20px;
  content: "\e64a";
  font-family: 'themify';
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  transform: scaleX(-1);
}
.next-page a {
  justify-content: flex-end;
  text-align: right;
}
.next-page a:hover .image-next:after {
  visibility: visible;
  opacity: 1;
}
.next-page a:hover .image-next:before {
  visibility: visible;
  opacity: 1;
  margin-right: 0;
}
.next-page .next-title {
  text-align: right;
}
.prev-link-page-info > span {
  display: block;
}
.prev-link-page-info .date-details {
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 20px;
  margin-bottom: -2px;
}
.prev-link-page-info .date-details > div {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 600;
}
.prev-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 600;
}
.prev-link-page-info .date-details:only-child {
  margin-top: 0;
}
.next-link-page-info > span {
  display: block;
}
.next-link-page-info .date-details {
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 20px;
  margin-bottom: -2px;
}
.next-link-page-info .date-details > div {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 600;
}
.next-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 600;
}
.next-link-page-info .date-details:only-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .prev-page {
    width: calc(100% - 20px);
    max-width: unset;
  }
  .prev-page + .next-page {
    margin-top: 0;
  }
  .next-page {
    width: calc(100% - 20px);
    max-width: unset;
  }
  .page-navigation {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  /*==============================
 *    Owl carousel
 *    ================================ */  .prev-page .page-info > a {
    padding: 10px;
  }
  .prev-page .page-info .prev-title {
    max-width: 168px;
  }
  .prev-page .page-info .next-title {
    max-width: 168px;
  }
  .next-page .page-info > a {
    padding: 10px;
  }
  .next-page .page-info .prev-title {
    max-width: 168px;
  }
  .next-page .page-info .next-title {
    max-width: 168px;
  }
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #063b8b;
}
.owl-nav i, .owl-nav span {
  color: #232323;
  font-size: 28px;
}
.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}
.owl-carousel .caption .overflow-hidden {
  display: inline-block;
}
.owl-carousel .caption h3 {
  font-weight: 200;
  visibility: hidden;
  opacity: 0;
  position: relative;
  display: inline-block;
}
.owl-carousel .caption h1 {
  font-size: 70px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 80px;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  margin-bottom: 30px;
}
.owl-carousel .caption p {
  font-size: 20px;
  color: #fff;
  word-spacing: 2px;
  max-width: 800px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  margin-bottom: 10px;
}
.owl-carousel .caption .butn i {
  position: relative;
  top: 1px;
  z-index: 9;
}
@media screen and (max-width: 1199px) {
  .owl-carousel .caption h1 {
    font-size: 55px;
    line-height: 70px;
  }
  .owl-carousel .caption p {
    font-size: 18px;
    max-width: 700px;
  }
}
@media screen and (max-width: 991px) {
  .owl-carousel .caption h1 {
    font-size: 48px;
    line-height: 60px;
  }
  .owl-carousel .caption p {
    font-size: 16px;
    max-width: 600px;
  }
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .owl-carousel .caption h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  /* service carousel */  .owl-carousel .caption h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .owl-carousel .caption p {
    font-size: 13px;
  }
}
.service-carousel.owl-carousel.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
}
.service-carousel.owl-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
  /*==============================
 *    Accordion style
 *    ================================ */
  /* accordion-style */
}
.accordion-style .card {
  background: transparent;
  box-shadow: none;
  margin-top: 0 !important;
  border: none;
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
}
.accordion-style .card-header {
  border: 0px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: none;
}
.accordion-style .btn-link {
  color: #677788;
  line-height: 20px;
  position: relative;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border-radius: 4px;
  padding: 20px 35px 20px 20px;
  font-weight: 700;
  text-decoration: none;
}
.accordion-style .btn-link:hover {
  text-decoration: none;
}
.accordion-style .btn-link:after {
  background: none;
  content: "-";
  right: 17px;
  left: inherit;
  font-size: 20px;
  height: auto;
  transform: none;
  width: auto;
  top: 20px;
  position: absolute;
  color: #4a83fd;
}
.accordion-style .btn-link.collapsed:after {
  background: none;
  content: "+";
  right: 15px;
  left: inherit;
  font-size: 20px;
  height: auto;
  transform: none;
  width: auto;
  top: 20px;
  color: #4a83fd;
}
.accordion-style .card-body {
  padding: 0px 40px 30px 20px;
}
@media screen and (max-width: 991px) {
  /* style1 */  .accordion-style .btn-link:after, .accordion-style .btn-link.collapsed:after {
    top: 20px;
  }
  .accordion-style .card-body {
    padding: 10px 25px 30px 25px;
  }
}
.accordion-style1 {
  /* sidebar */
}
.accordion-style1 .card {
  border-radius: 0;
}
.accordion-style1 .card-header {
  border: 0px;
  padding: 0;
  background: none;
}
.accordion-style1 .btn-link {
  background: transparent;
  color: #ecba16;
  line-height: 20px;
  position: relative;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border-radius: 0;
  padding: 20px 45px 20px 30px;
  box-shadow: none;
  font-weight: 700;
  text-decoration: none;
}
.accordion-style1 .btn-link:after {
  background: none;
  content: "-";
  right: 20px;
  left: inherit;
  font-size: 20px;
  height: auto;
  transform: none;
  width: auto;
  top: 26px;
  position: absolute;
}
.accordion-style1 .btn-link.collapsed:after {
  background: none;
  content: "+";
  right: 20px;
  left: inherit;
  font-size: 20px;
  height: auto;
  transform: none;
  width: auto;
  top: 18px;
  position: absolute;
}
.accordion-style1 .card-body {
  padding: 0 50px 30px 30px;
  text-align: left;
  font-weight: 500;
}
.accordion-style1 .btn-link.collapsed {
  color: #1e2022;
  padding: 20px 45px 20px 30px;
}
.sidebar .service-list li {
  position: relative;
  margin-bottom: 15px;
  /*==============================
 *    Blog Sidebar
 *    ================================ */
  /* blog sidebar */
}
.sidebar .service-list li a {
  border: 1px solid #dee2e6;
  padding: 12px 18px;
  transition: all 0.4s ease 0s;
  background: #fff;
  display: block;
}
.sidebar .service-list li a:hover, .sidebar .service-list li a.active {
  background: #ecba16;
  border: 1px solid #ecba16;
}
.sidebar .service-list li a:after {
  width: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "\e628";
  font-family: themify;
  font-weight: 400;
}
.sidebar .service-list li:last-child {
  margin-bottom: 0;
}
.sidebar .service-list li:hover:after, .sidebar .service-list li:hover a {
  color: #fff;
}
.sidebar .service-list li.active {
  color: #fff;
}
.sidebar .service-list li.active a {
  color: #fff;
  border-color: #ecba16;
  background: #ecba16;
}
.sidebar .blog-list li {
  position: relative;
  margin-bottom: 15px;
}
.sidebar .blog-list li a {
  border: 1px solid #dee2e6;
  padding: 12px 18px;
  transition: all 0.4s ease 0s;
  display: block;
  background: #fff;
}
.sidebar .blog-list li a:before {
  width: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "\e628";
  font-family: themify;
  font-weight: 400;
}
.sidebar .blog-list li a:hover, .sidebar .blog-list li a.active {
  background: #ecba16;
  border: 1px solid #ecba16;
}
.sidebar .blog-list li:last-child {
  margin-bottom: 0;
}
.sidebar .blog-list li:hover:before, .sidebar .blog-list li:hover a {
  color: #fff;
}
.sidebar .blog-list li.active {
  color: #fff;
}
.sidebar .blog-list li.active a {
  color: #fff;
  border-color: #ecba16;
  background: #ecba16;
}
.sidebar .widget .widget-title h3 {
  text-transform: uppercase;
  padding-left: 45px;
  position: relative;
  display: block;
  color: #063b8b;
  font-weight: bold;
  margin-bottom: 1.9rem;
  letter-spacing: 2px;
}
.sidebar .widget .widget-title h3:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: #ecba16;
  content: "";
  /* blog-tags */
}
.blog-tags {
  /* post reply */
}
.blog-tags a {
  background: #fff;
  color: #063b8b;
  padding: 7px 21px;
  font-size: 14px !important;
  line-height: 20px;
  margin: 5px 10px 5px 0;
  display: inline-block;
}
.blog-tags a:hover {
  background: #ecba16;
  color: #fff;
}
.blog-tags.bg-color a {
  background: #f8f9fa;
}
.blog-tags.bg-color a:hover {
  background: #ecba16;
  color: #fff;
}
.author-thumb img {
  border-radius: 50%;
  width: 80px;
}
.comment-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
}
.comment-inner .avatar {
  width: 65px;
  min-width: 65px;
  margin-right: 20px;
  display: inline-block;
  border-radius: 50%;
}
.comment-inner .comment-box {
  overflow: hidden;
  position: relative;
  margin-left: 0;
  flex-grow: 1;
  vertical-align: top;
  display: inline-block;
}
.comment-inner .comment-box p:last-child {
  margin-bottom: 0;
}
.comment-reply-link {
  color: #063b8b;
  background: rgba(6, 59, 139, 0.1);
  padding: 5px 18px;
  font-weight: 500;
  border-radius: 0;
  font-size: 14px;
  margin-top: 18px;
  display: inline-block;
}
.comment-reply-link:hover, .comment-reply-link:active, .comment-reply-link:focus {
  color: #fff;
  background: #063b8b;
}
a#cancel-comment-reply-link {
  color: #063b8b;
  background: rgba(6, 59, 139, 0.1);
  padding: 9px 18px;
  font-weight: 500;
  border-radius: 0;
  font-size: 14px;
  transition: 0.3s;
  float: right;
  margin: 6px 0;
  /* tags */
}
a#cancel-comment-reply-link:hover, a#cancel-comment-reply-link:active, a#cancel-comment-reply-link:focus {
  color: #fff;
  background: #063b8b;
}
.tags a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  margin: 5px 10px 5px 0;
  display: inline-block;
  /* share post */
}
.tags a:hover {
  border-color: #063b8b;
  background: #063b8b;
  color: #fff;
}
.blog-share-icon {
  min-width: 175px;
}
.share-post {
  /*==============================
 *    Others
 *    ================================ */
  /* progress-style01 */
}
.share-post span {
  font-weight: 700;
}
.share-post li {
  display: inline-block;
  margin: 0 5px 0 5px;
}
.share-post li:last-child {
  margin-right: 0;
}
.progress-style01 .progress {
  height: 8px;
  /* progress-style02 */
}
.progress-style02 {
  /* progress-style02 */
}
.progress-style02 .progress {
  height: 11px;
}
.progress-style02 .progress-02 {
  display: flex;
  height: 0.7rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}
.progress-style-02 {
  /* team members */
}
.progress-style-02 .progress-text {
  font-size: 15px;
  margin-bottom: 8px;
}
.progress-style-02 .custom-progress {
  height: 8px;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 2rem;
}
.progress-style-02 .custom-bar {
  height: 100%;
  background-color: #063b8b;
  box-shadow: none;
}
.team-block {
  margin: 0 10px;
}
.team-block .overlay-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  display: block;
  height: 100%;
  text-align: center;
}
.team-block .overlay-box:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  display: block;
  height: 100%;
  opacity: 0;
  background: rgba(0, 28, 65, 0.6);
  transition: all 0.9s ease;
}
.team-block .social-icons {
  position: absolute;
  left: 0;
  bottom: 20px;
  opacity: 0;
  padding: 0px 10px;
  width: 100%;
}
.team-block .social-icons li {
  position: relative;
  margin-right: 10px;
  display: inline-block;
}
.team-block .social-icons li a {
  position: relative;
  color: #fff;
  font-size: 14px;
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid #fff;
  transition: all 400ms ease;
}
.team-block .social-icons li a:hover {
  color: #fff;
  border: 1px solid #ecba16;
  background: #ecba16;
}
.team-block:hover .overlay-box:before {
  opacity: 1;
}
.team-block:hover .social-icons {
  opacity: 1;
  transition: all 0.8s ease 500ms;
}
.team-info {
  border: 1px solid #efefef;
}
@media screen and (max-width: 1199px) {
  .team-block .social-icons li a {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
}
@media screen and (max-width: 991px) {
  .team-block {
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  /* single team */  .team-block .social-icons li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}
.agent-detail-des {
  position: relative;
  z-index: 0;
  padding: 30px;
  border: 1px solid #e5e8ef;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  /* single service */
}
.agent-detail-des .agent-social-links {
  padding: 0;
  margin: 0;
}
.agent-detail-des .agent-social-links li {
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
  list-style-type: none;
}
.agent-detail-des .agent-social-links li a {
  color: #fff;
  padding: 6px 12px;
  display: inline-block;
  background-color: #ecba16;
}
.agent-detail-des .agent-social-links li a:hover {
  background-color: #063b8b;
}
.service-details-content .service-box-single {
  padding: 15px 22px;
  border: 1px solid lightgrey;
  border-radius: 6px;
  /* testimonial-carousel-01 */
}
.service-details-content .service-box-single i {
  font-size: 22px;
  color: #063b8b;
}
.tesimonial-section-01 .testimonial-carousel {
  /* testimonial-carousel-02 */
}
.tesimonial-section-01 .testimonial-carousel .owl-dots {
  text-align: left;
}
.tesimonial-section-01 .testimonial-carousel.owl-theme .owl-dots {
  margin-top: 3rem;
}
.tesimonial-section-01 .testimonial-carousel.owl-theme .owl-dots .owl-dot.active span, .tesimonial-section-01 .testimonial-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #ecba16;
}
.tesimonial-section-01 .testimonial-carousel.owl-theme .owl-dots .owl-dot span {
  width: 25px;
  height: 3px;
}
.testimonial-carousel-02 {
  /* testimonial-carousel-04 */
}
.testimonial-carousel-02.owl-theme .owl-nav {
  text-align: center;
  margin-top: 2rem;
}
.testimonial-carousel-02 .owl-nav button.owl-prev, .testimonial-carousel-02 .owl-nav button.owl-next {
  background-color: #edbe22;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  transition: all 0.5s ease 0s;
}
.testimonial-carousel-02 .owl-nav button.owl-prev i, .testimonial-carousel-02 .owl-nav button.owl-next i {
  color: #fff;
  font-size: 16px;
}
.testimonial-carousel-02 .owl-nav button.owl-prev:hover, .testimonial-carousel-02 .owl-nav button.owl-next:hover {
  background-color: #063b8b;
}
.testimonial-carousel-04.owl-carousel.owl-theme {
  /* testimonial-carousel-05 */
}
.testimonial-carousel-04.owl-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
  align-items: center;
  position: relative;
  justify-content: center;
  display: flex;
}
.testimonial-carousel-04.owl-carousel.owl-theme .owl-dots .owl-dot span {
  border-radius: 2px;
}
.testimonial-carousel-04.owl-carousel.owl-theme .owl-dots .owl-dot.active span, .testimonial-carousel-04.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #063b8b;
}
.testimonial-carousel-05.owl-theme .owl-dots .owl-dot.active span {
  width: 25px;
}
.testimonial-carousel-05.owl-theme .owl-dots .owl-dot span {
  transition: all 0.5s ease;
  border-radius: 0;
  height: 5px;
}
.testimonial-carousel-05.owl-carousel.owl-theme .owl-dots {
  text-align: center;
}
.owl-theme .owl-nav {
  text-align: center;
  /* testimonial-carousel-06 */
}
.testimonial-carousel-06.owl-carousel.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
}
.testimonial-carousel-06.owl-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}
.testimonial-carousel-06 .testimonial-blocks:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 40px;
  right: 0px;
  bottom: 0px;
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 5px;
}
.testimonial-carousel-06 .testimonial-blocks .quote-icon {
  position: absolute;
  left: -15px;
  top: 25px;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  display: inline-block;
  background-color: #063b8b;
}
.testimonial-carousel-06 .testimonial-blocks .quote-icon:before {
  content: '\f10d';
  font-family: Font Awesome\ 5 Free;
  font-weight: 600;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .testimonial-carousel-06 .testimonial-block .quote-icon {
    left: -15px;
    top: 25px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) {
  /* counter-style01 */  .testimonial-carousel-06 .testimonial-block .quote-icon:before {
    font-size: 12px;
  }
}
.counter-style01 .count-item span {
  font-size: 175px;
  font-weight: 400;
  line-height: 1;
  color: rgba(6, 59, 139, 0.1);
}
@media screen and (max-width: 1199px) {
  /* counter-style02 */  .counter-style01 .count-item span {
    font-size: 125px;
  }
}
.counter-style02 {
  margin-left: -25%;
  z-index: 9;
  position: relative;
}
@media only screen and (max-width: 991px) {
  /* Counter Style03 */  .counter-style02 {
    margin-left: 0;
  }
}
.counter-style03 .count-item-02 {
  /* counter-style04 */
}
.counter-style03 .count-item-02 span {
  font-size: 45px;
  color: #fff;
  transition: all 300ms ease;
  position: relative;
  display: inline-block;
  font-weight: 800;
  line-height: 1em;
}
.counter-style03 .count-item-02 h4 {
  display: block;
  font-size: 25px;
  line-height: 24px;
  color: #fff;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}
.counter-style03 .count-item-02 .icon-box {
  height: 140px;
  width: 130px;
  background: #fff;
  text-align: center;
  border-radius: 25px 0px 25px 0px;
}
.counter-style03 .count-item-02 .icon-box i {
  position: relative;
  display: block;
  transition: all 300ms ease;
  color: #ecba16;
  line-height: 3;
}
.counter-style03 .count-item-02:hover .icon-box i {
  transform: scale(-1) rotate(180deg);
}
.counter-style04 span.counter-no {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 145px;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.1);
}
.counter-style04 span.counter-no.black {
  color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1399px) {
  .counter-style04 span.counter-no {
    font-size: 125px;
  }
}
@media screen and (max-width: 1199px) {
  /* counter style02 */  .counter-style04 span.counter-no {
    font-size: 105px;
  }
}
.counter-lg-title {
  position: relative;
  display: block;
  margin-bottom: 40px;
  text-align: center;
}
.counter-lg-title:before {
  position: absolute;
  content: '';
  background: #e4e0e0;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 62px;
}
.counter-lg-title:after {
  position: absolute;
  content: '';
  background: #fff;
  width: 430px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 62px;
}
.counter-lg-title .big-text {
  position: relative;
  display: block;
  font-size: 120px;
  line-height: 120px;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  z-index: 1;
  margin-bottom: 7px;
}
@media screen and (max-width: 991px) {
  /* counter */  .counter-lg-title:after {
    width: 295px;
  }
  .counter-lg-title .big-text {
    font-size: 80px;
    line-height: 110px;
    margin-bottom: 0;
  }
}
.clients {
  /* clients-style2 */
}
.clients:hover .client-img {
  opacity: 0;
}
.clients .client-img {
  width: auto;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.35s ease-out;
  display: inline-block;
}
.clients:hover .client-hover-img {
  opacity: 1;
}
.clients .client-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.35s ease-out;
}
.clients-style2 .mission-box, .clients-style2 .vision-box {
  padding: 0 0 40px 40px;
}
.clients-style2 .mission-box .icon i, .clients-style2 .vision-box .icon i {
  font-size: 170px;
  color: rgba(255, 255, 255, 0.1);
}
.clients-style2 .clients-img {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  height: max-content;
  overflow: hidden;
}
.clients-style2 .clients-img img {
  transition: 0.3s;
  margin: 0 auto;
}
.clients-style2 .clients-img .hover-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  visibility: hidden;
  display: block;
  transform: translateY(-100%);
}
.clients-style2 .clients-img:hover .hover-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.clients-style2 .clients-img:hover .main-img {
  transform: translateY(100%);
}
.clients-style2 .sm-box-wrapper {
  position: absolute;
  bottom: 5%;
  left: 23%;
}
.clients-style2 .sm-box-wrapper .inner-box {
  background-color: #ecba16;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  padding: 10px;
}
@media screen and (max-width: 1399px) {
  .clients-style2 .mission-box .icon i, .clients-style2 .vision-box .icon i {
    font-size: 140px;
  }
}
@media screen and (max-width: 767px) {
  .clients-style2 .mission-box .icon i, .clients-style2 .vision-box .icon i {
    font-size: 100px;
  }
}
@media screen and (max-width: 575px) {
  /* clients-style3 */  .clients-style2 .mission-box .icon i, .clients-style2 .vision-box .icon i {
    font-size: 60px;
  }
  .clients-style2 .mission-box, .clients-style2 .vision-box {
    padding: 0 0 20px 20px;
  }
}
.clients-style3 .clients-img {
  display: block;
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
  height: max-content;
  overflow: hidden;
  /* process-style01 */
}
.clients-style3 .clients-img img {
  transition: 0.3s;
}
.clients-style3 .clients-img .hover-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  visibility: hidden;
  display: inline-block;
  transform: translateY(-100%);
}
.clients-style3 .clients-img:hover .hover-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.clients-style3 .clients-img:hover .main-img {
  transform: translateY(100%);
}
.process-style01 .process-line:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 1px;
  background-color: transparent;
  left: 95%;
  top: 25%;
  transform: translate(-25%);
  border: 1px dashed #fff;
}
.process-style01 .work-inner {
  height: 130px;
  width: 130px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
}
.process-style01 .work-box-01:hover .work-inner {
  background: #ecba16;
  border: 1px solid #ecba16;
  transition: all 500ms ease;
}
@media only screen and (max-width: 991px) {
  .process-style01 .process-line:before {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  /* process-style02 */  .process-style01 .work-inner {
    height: 110px;
    width: 110px;
  }
}
.process-style02 .process-box .icon {
  height: 130px;
  width: 130px;
  border-radius: 50%;
  margin: 0 auto 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #063b8b;
  transition: all 0.5s ease 0s;
  color: #063b8b;
  font-size: 48px;
}
.process-style02 .process-box .icon .hover-show {
  width: 0;
}
.process-style02 .process-box .icon img {
  width: 60px;
}
.process-style02 .process-box:hover .icon {
  background: #ecba16;
  border: 1px solid #ecba16;
  transition: all 500ms ease;
  color: #fff;
}
.process-style02 .process-box:hover .icon .default-show {
  width: 0;
}
.process-style02 .process-box:hover .icon .hover-show {
  width: 60px;
}
@media screen and (max-width: 767px) {
  /* process-style03 */  .process-style02 .process-box .icon {
    width: 100px;
    height: 100px;
    font-size: 38px;
  }
}
.process-style03 .process-box {
  /* process-style02 */
}
.process-style03 .process-box .right-arrow {
  width: 50px;
  height: 50px;
  align-items: center;
  position: relative;
  background: #063b8b;
  color: #fff;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  transition: all 0.5s ease 0s;
  margin: auto;
}
.process-style03 .process-box:hover .right-arrow {
  background-color: #ecba16;
}
.process-style03 .process-box img {
  transition: transform 0.5s ease-out;
  will-change: transform;
}
.process-style03 .process-box:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
}
.process-style-02 {
  position: relative;
  display: block;
  text-align: center;
}
.process-style-02:before {
  content: "";
  position: absolute;
  top: 38px;
  right: -68px;
  width: 109px;
  height: 44px;
  background: url(../img/icons/arrow-bottom.png);
  background-repeat: no-repeat;
}
.process-style-02.last:before {
  content: none;
}
.process-style-02.arrow-top:before {
  content: "";
  position: absolute;
  top: 30px;
  right: -68px;
  width: 109px;
  height: 44px;
  background: url(../img/icons/arrow-top.png);
  background-repeat: no-repeat;
}
.process-style-02 .icon-holder {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 25px;
  background: #ecba16;
  padding: 20px;
  transition: all 0.3s ease-in-out 0s;
}
.process-style-02 .icon-holder .count-box {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: #063b8b;
  transition: all 0.7s ease-in-out 0s;
  vertical-align: middle;
  text-align: center;
}
.process-style-02 .icon-holder .count-box h4 {
  line-height: 30px;
  color: #fff;
}
.process-style-02 .text-holder {
  position: relative;
  display: block;
}
@media screen and (max-width: 991px) {
  /* process-style03 */  .process-style-02:before, .process-style-02.arrow-top:before {
    content: none;
  }
  .process-style-02 .icon-holder {
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
    padding: 15px;
  }
}
.process-style-03 .process-block {
  width: 167px;
  height: 167px;
  background: #f8f9fa;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-bottom: 25px;
}
.process-style-03 .process-block .process-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #ecba16;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 1;
}
.process-style-03 .process-block .process-count {
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #fff;
  text-align: center;
  position: absolute;
  right: 30px;
  bottom: 20px;
  box-shadow: 0px 5px 18.8px 1.2px rgba(99, 102, 187, 0.1);
  z-index: -1;
}
.process-style-03 .process-block .process-count span {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1f2732;
}
.process-style-03 span {
  display: inline-block;
  text-align: center;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #ecba16;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-weight: 900;
  font-size: 22px;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  margin-bottom: 19px;
  transition: all 0.35s ease-in-out;
  bottom: 20px;
  right: -5px;
}
.process-style-03:nth-child(2) .item span {
  bottom: auto;
}
.process-style-03 .thumb {
  position: relative;
  display: inline-block;
}
.process-style-03 img {
  height: 170px !important;
  width: 170px !important;
  border-radius: 50% !important;
  border: 1px solid #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08) !important;
  margin-bottom: 25px;
  transition: all 0.35s ease-in-out;
}
.main-process {
  position: relative;
  z-index: 1;
  padding-top: 33px;
}
.main-process .line-shape {
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
  transform: rotate(-3deg);
}
.process-style-03 .item:hover span {
  transform: scale(1.2);
  background: #ecba16;
  color: #fff;
  right: -45px;
}
.process-style-03:nth-child(2n) .item span {
  transform: scale(1.2);
  background: #ecba16;
  color: #fff;
  right: -45px;
}
.process-style-03:nth-child(2n) .item img {
  transform: scale(1.4);
  margin-bottom: 60px;
}
.process-style-03 .item:hover img {
  transform: scale(1.4);
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  /* process-style04 */  .process-style-03 img {
    transform: scale(1.4);
    margin-bottom: 60px;
  }
  .main-process .line-shape {
    display: none;
  }
}
.process-style-04 {
  /*process-style-05*/
}
.process-style-04:nth-child(2n) .item span {
  transform: scale(1.2);
  background: #ecba16 !important;
  color: #fff;
  right: -45px;
}
.process-style-04 .item:hover span {
  transform: scale(1.2);
  background: #fff;
  color: #1f2732;
  right: -45px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1f2732;
}
.process-style-04 span {
  display: inline-block;
  text-align: center;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #ecba16;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-weight: 900;
  font-size: 22px;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  margin-bottom: 19px;
  transition: all 0.35s ease-in-out;
  bottom: 20px;
  right: -5px;
}
.process-arrow .process-bg-line {
  position: absolute;
  top: -40px;
  left: 0;
  width: calc(100% + 370px);
  height: 100%;
  background: url(../img/icons/process-arrow-02.png) 50% 0 no-repeat;
  z-index: 1;
  margin: 0 -370px;
  transform-origin: 100% 50%;
}
.process-style-05 {
  z-index: 1;
  position: relative;
  text-align: center;
}
.process-style-05 .icon {
  display: inline-block;
  position: relative;
  height: 130px;
  width: 130px;
  border: 2px solid #f5f5f5;
  background-color: #fff;
  border-radius: 50%;
  transition: all 500ms ease;
  margin-bottom: 30px;
}
.process-style-05 .icon:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0, 0);
  transition: all 500ms ease;
  background: #ecba16;
}
.process-style-05 .icon span {
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ecba16;
  transform: translate(-50%, -50%);
}
.process-style-05:hover .icon:before {
  transform: scale(1, 1);
}
.process-style-05:hover .icon span {
  color: #fff;
}
.process-style-05 .process-contnet span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: #ecba16;
  padding: 8px 20px;
  text-align: center;
  transition: all 500ms ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
.process-style-05 .process-contnet span:after {
  position: absolute;
  content: '';
  background: #ecba16;
  width: 15px;
  height: 15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -8px;
  z-index: 1;
  transition: all 500ms ease;
}
@media screen and (max-width: 1199px) {
  .process-arrow .process-bg-line {
    top: -20px;
    left: 100px;
    width: calc(100% + 250px);
    background-size: contain;
  }
  .process-style-05 .icon {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 991px) {
  .process-arrow .process-bg-line {
    display: none;
  }
  .process-style-05 .icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .process-style-05 .process-contnet span {
    font-size: 13px;
    background: #ecba16;
    padding: 6px 15px;
    margin-bottom: 25px;
  }
  .process-style-05 .process-contnet span:after {
    bottom: -5px;
  }
}
@media screen and (max-width: 575px) {
  /* gallery-main */  .process-style-05 .icon {
    margin-bottom: 15px;
  }
}
.gallery-main .gallery-image {
  transition: all 1.2s ease;
}
.gallery-main:hover .gallery-image {
  transform: scale(1.07, 1.07);
  will-change: transform;
  transition: all 1.2s ease;
}
.gallery-main .gallery-info {
  position: absolute;
  width: 100%;
  bottom: 4%;
  left: 8%;
  z-index: 1;
  transition: all ease-in-out 0.6s;
  opacity: 0;
}
.gallery-main .gallery-info .gallery-title {
  padding: 9px 15px;
  background: #ecba16;
  margin-bottom: 10px;
  display: block;
  width: 85%;
}
.gallery-main:hover .gallery-info {
  transition: all ease-in-out 0.6s;
  opacity: 1;
  transform: translateY(-10px);
}
.gallery-main .gallery-info .gallery-data {
  padding: 3px 15px;
  background: #ecba16;
  display: inline-table;
}
@media screen and (max-width: 1399px) {
  .gallery-main .gallery-info {
    left: 3%;
  }
  .gallery-main .gallery-info .gallery-title {
    width: 96%;
  }
}
@media screen and (max-width: 1199px) {
  /* why-choose-style01 */  .gallery-main .gallery-info .gallery-title {
    width: 65%;
  }
}
.why-choose-style01 .why-choose-area {
  padding: 65px 40px;
  transition: all 0.4s ease;
}
.why-choose-style01 .why-choose-area:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}
@media screen and (max-width: 1399px) {
  .why-choose-style01 .why-choose-area {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 767px) {
  /* Why choose us section */  .why-choose-style01 .why-choose-area {
    padding: 30px 10px;
  }
}
.why-choose-content {
  border-radius: 5px;
  padding: 50px 40px;
  background: #fff;
  box-shadow: 0px 5px 24.25px 0.75px rgba(0, 0, 0, 0.1);
  margin-left: -50px;
  z-index: 1;
  position: relative;
}
.why-choose-img {
  margin-right: -50px;
}
@media screen and (max-width: 991px) {
  .why-choose-img {
    margin-right: 0;
  }
  .why-choose-content {
    margin-left: 0;
  }
}
@media screen and (max-width: 575px) {
  /* faq */  .why-choose-content {
    padding: 40px 25px;
  }
}
.faq-style-1 {
  margin-top: -245px;
  position: relative;
  overflow: visible;
  z-index: 99;
  background: transparent;
  /* faq style 2 */
}
.faq-style-1 .faq-video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-style-1 .faq-video a {
  display: block;
  width: 84px;
  height: 84px;
  background: #ecba16;
  text-align: center;
  line-height: 84px;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #ecba16;
}
.faq-style-1 .faq-video a:before {
  content: " ";
  width: 130%;
  height: 130%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: -12px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  z-index: -1;
}
.faq-style-1 .faq-img {
  position: relative;
}
.faq-style-1 .accordion-style .card {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.faq-style-1 .accordion-style .btn-link {
  color: #063b8b;
}
.faq-style-1 .accordion-style .btn-link:after {
  color: #ecba16;
}
.faq-style-1 .accordion-style .btn-link.collapsed:after {
  color: #063b8b;
}
.faq-style-2 .accordion-style {
  /* about-style01 */
}
.faq-style-2 .accordion-style .card {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.faq-style-2 .accordion-style .btn-link {
  color: #063b8b;
}
.faq-style-2 .accordion-style .btn-link:after {
  color: #ecba16;
}
.faq-style-2 .accordion-style .btn-link.collapsed:after {
  color: #063b8b;
}
.about-style01 .video_btn {
  /* about-style01 */
}
.about-style01 .video_btn:before, .about-style01 .video_btn:after {
  content: none;
}
.about-style-01 .img-2 img {
  border-radius: 50%;
  border: 10px solid #fff;
  position: absolute;
  bottom: 10%;
  left: -10%;
}
.about-style-01 .exp-box {
  position: absolute;
  right: 0;
  top: 15%;
  width: 220px;
  height: 90px;
  display: flex;
  align-items: center;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  background-color: #fff;
  padding: 0 25px;
}
@media screen and (max-width: 1199px) {
  .about-style-01 .exp-box {
    right: -35px;
  }
  .about-style-01 .img-2 img {
    left: -20%;
  }
}
@media screen and (max-width: 991px) {
  .about-style-01 .img-2 img {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-style-01 .img-2 img {
    left: -10%;
  }
}
@media screen and (max-width: 575px) {
  /* about-style-02 */  .about-style-01 .img-2 img {
    display: none;
  }
}
.about-style-02 .about-img1, .about-style-02 .about-img2 {
  display: inline-block;
}
@media screen and (max-width: 575px) {
  /* about-style-03 */  .about-style-02 .about-img1 {
    display: block;
  }
}
.about-style-03 .about-us-section .about-image {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.about-style-03 .about-us-section .about-image.one {
  margin-bottom: 30px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
}
.about-style-03 .about-us-section .about-image img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}
.about-style-03 .about-us-section .a-image {
  overflow: hidden;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.05);
}
.about-style-03 .about-us-section .about-us-inner {
  text-align: center;
  padding: 20px 30px;
  background: #ecba16;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  position: absolute;
}
.about-style-03 .about-us-section .about-us-inner.viceo {
  padding-right: 80px;
}
.about-style-03 .about-us-section .about-us-inner h2 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
}
.about-style-03 .about-us-section .about-us-inner .video-box {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  height: 40px;
  width: 40px;
  margin: auto;
}
.about-style-03 .about-us-section .about-us-inner .video-box a {
  color: #fff;
  width: 40px;
  display: block;
  text-align: center;
  line-height: 43px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}
.about-style-03 .about-content .about-list {
  display: flex;
  align-items: center;
  padding-top: 15px;
  margin-top: 25px;
}
.about-style-03 .about-content .about-list .about-author {
  background: #fff;
  box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 30px 35px 45px;
  margin-right: 40px;
  margin-top: 25px;
  position: relative;
}
.about-style-03 .about-content .about-list .about-author::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #ecba16;
  height: 3px;
  width: calc(100% - 30px);
}
.about-style-03 .about-content .about-list .about-author span {
  color: #4c4d56;
}
.about-style-03 .about-content .about-list .about-author .author-img {
  position: absolute;
  left: -25px;
  top: 35px;
}
.about-style-03 .about-content .about-list ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #090d2f;
}
.about-style-03 .about-content .about-list ul li i {
  color: #ecba16;
  margin-right: 5px;
}
.about-style-03 .about-content .about-list ul li + li {
  margin-top: 15px;
}
@media screen and (max-width: 1199px) {
  .about-style-03 .about-content .about-list {
    margin-top: 0px;
    padding-top: 0px;
  }
  .about-style-03 .about-content .about-list .about-author {
    border-radius: 5px;
    margin-right: 20px;
    margin-top: 0px;
    padding: 24px 22px 19px 39px;
  }
}
@media screen and (max-width: 575px) {
  /* about-style-04 */  .about-style-03 .about-us-section .about-us-inner {
    padding: 15px 21px;
  }
  .about-style-03 .about-us-section .about-us-inner.viceo {
    padding-right: 65px;
  }
  .about-style-03 .about-content .about-list {
    display: inline-block;
  }
  .about-style-03 .about-content .about-list .about-author {
    margin-bottom: 2rem;
  }
}
.about-style-04 {
  /* about-style-05 */
}
.about-style-04 .about-video {
  position: absolute;
  left: 5%;
  top: 31%;
  transform: translate(-50%, -50%);
}
.about-style-04 .about-video a {
  display: block;
  width: 84px;
  height: 84px;
  background: #ecba16;
  text-align: center;
  line-height: 84px;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #ecba16;
}
.about-style-04 .about-video a:before {
  content: " ";
  width: 130%;
  height: 130%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: -12px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  z-index: -1;
}
.about-style-04 .about-video:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #ecba16;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.about-style-04 .about-video:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border: 2px solid #ecba16;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.about-style-04 .about-img {
  width: 70px;
  height: 275px;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
  margin-right: 30px;
}
.about-style-04 .about-icon-box {
  background: #fff;
  padding: 20px 10px 20px 10px;
  border-bottom: 4px solid #ecba16;
}
.about-style-04 .about-icon-box .about-icon {
  font-size: 40px;
  height: 70px;
  width: 70px;
  background: #063b8b;
  display: flex;
  text-align: center;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  transition: 0.4s;
  margin: 0 auto 15px auto;
}
.about-5 {
  /* section background */
}
.about-5 .about-shape1 {
  position: absolute;
  height: 60px;
  width: 30px;
  background: #1388d7;
  bottom: 0;
  right: 30px;
  overflow: hidden;
}
.about-5 .about-shape1:after {
  background: #1cbfaa;
  animation: move 3s infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.about-5 .about-shape1:before {
  background: #1388d7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.about-5 .about-shape2 {
  background: #1cbfaa;
  bottom: 40px;
  right: 68px;
  height: 38px;
  width: 18px;
  position: absolute;
  overflow: hidden;
}
.about-5 .about-shape2:after {
  background: #1388d7;
  animation: move 3s infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.about-5 .about-shape2:before {
  background: #1cbfaa;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.about-5 .about-shape3 {
  position: absolute;
  content: '';
  height: 52px;
  width: 35px;
  background: #fff;
  left: 20px;
  top: 0;
  overflow: hidden;
}
.about-5 .about-shape3:after {
  background: #1cbfaa;
  animation: move 3s infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.about-5 .about-shape3:before {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.about-5 .about-shape4 {
  position: absolute;
  content: '';
  height: 38px;
  width: 20px;
  background: #1cbfaa;
  top: -18px;
  left: 61px;
  overflow: hidden;
}
.about-5 .about-shape4:after {
  background: #fff;
  animation: move 3s infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.about-5 .about-shape4:before {
  background: #1cbfaa;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.about-5 .about-image {
  position: relative;
}
.about-5 .about-img-text {
  margin: 0 auto;
  position: absolute;
  width: 90%;
  left: 0;
  right: 0;
  bottom: 40px;
}
.about-5 .list-style2 li {
  line-height: 1.7;
  padding-left: 35px;
  position: relative;
  margin-bottom: 2rem;
}
.about-5 .list-style2 li:last-child {
  margin-bottom: 0;
}
.about-5 .list-style2 li:before {
  top: 2px;
  line-height: normal;
  content: "\e64c";
}
.about-5 h6 {
  font-size: 18px;
  font-weight: 700;
}
.contact-wrapper-box {
  position: relative;
  background: #fff;
  box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
  border-radius: 4px;
}
.contact-wrapper-box .contact-form-area {
  position: relative;
  padding: 50px;
  height: 100%;
}
.contact-wrapper-box .contact-image:before {
  height: 100%;
  content: '';
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(180deg, transparent 9%, #001c41 100%);
  opacity: 1;
}
.contact-wrapper-box .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  /* coming-soon */  .contact-wrapper-box .contact-form-area {
    padding: 30px;
  }
}
.coming-soon-main .countdown li {
  display: inline-block;
  padding: 35px 12px;
  min-width: 145px;
  text-align: center;
  background: #ecba16;
  margin-right: 18px;
}
.coming-soon-main .countdown li:last-child {
  margin-right: 0;
}
.coming-soon-main .countdown li span {
  font-size: 50px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
  font-weight: 600;
  position: relative;
}
.coming-soon-main .countdown li p.timeRefDays, .coming-soon-main .countdown li p.timeRefHours, .coming-soon-main .countdown li p.timeRefMinutes, .coming-soon-main .countdown li p.timeRefSeconds {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #fff f;
  padding: 0;
  text-transform: uppercase;
}
.coming-soon-main .coming-soon-form .form-control {
  border-radius: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
  border: 1px solid lightgrey;
  min-height: 50px;
  height: 55px;
  position: relative;
  padding: 0.5rem 4rem 0.5rem 1rem;
  color: #fff;
}
.coming-soon-main .coming-soon-form .quform-submit-inner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: auto;
  background: transparent;
  height: 48px;
}
.coming-soon-main .coming-soon-form .quform-submit-inner button {
  padding: 0.9rem 1.5rem;
}
.coming-soon-main .coming-soon-list li i {
  color: #063b8b;
  transition: all 0.4s ease;
}
.coming-soon-main .coming-soon-list li i:hover {
  color: #ecba16;
}
@media screen and (max-width: 1599px) {
  .coming-soon-main .countdown li {
    padding: 25px 12px;
    min-width: 130px;
  }
}
@media screen and (max-width: 992px) {
  .coming-soon-main .countdown li {
    min-width: 118px;
    margin-right: 10px;
  }
  .coming-soon-main .countdown li span {
    font-size: 40px;
  }
  .coming-soon-main .countdown li p.timeRefDays, .coming-soon-main .countdown li p.timeRefHours, .coming-soon-main .countdown li p.timeRefMinutes, .coming-soon-main .countdown li p.timeRefSeconds {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  /* countdown */  .coming-soon-main .countdown li {
    margin: 10px;
    min-width: 161px;
  }
  .coming-soon-main .countdown li:last-child {
    margin: 10px;
  }
}
.countdown li {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  text-align: center;
  min-width: 150px;
  position: relative;
  padding: 15px 10px;
  margin-right: 10px;
}
.countdown li:last-child {
  margin-right: 0;
}
.countdown li span {
  font-size: 50px;
  color: #fff;
  font-weight: 800;
}
.countdown li p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 991px) {
  .countdown li {
    min-width: 130px;
  }
  .countdown li span {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  /* 404 Error Page */  .countdown li {
    min-width: 120px;
  }
}
.error-content {
  text-align: center;
}
.error-box {
  height: 230px;
  max-width: 230px;
  width: 100%;
  margin: 0 auto;
  display: table;
  border-radius: 10px;
  text-shadow: 10px 10px 0 rgba(255, 255, 255, 0.2);
}
.error-box h4 {
  font-size: 170px;
  letter-spacing: 2px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  text-align: center;
  justify-content: center;
}
.error-box.center {
  text-shadow: 10px 10px 0 rgba(255, 255, 255, 0.3);
}
.error-box.center h4 {
  -webkit-text-stroke-color: #fff;
}
@media screen and (max-width: 1399px) {
  .error-box {
    height: 204px;
  }
}
@media screen and (max-width: 767px) {
  .error-box {
    height: 156px;
  }
  .error-box h4 {
    font-size: 130px;
  }
}
@media screen and (max-width: 575px) {
  /* appinment form */  .error-box {
    height: 82px;
  }
  .error-box h4 {
    font-size: 70px;
  }
}
.appinment-form {
  /* social-icon-style1 */
}
.appinment-form .left-content {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.appinment-form .right-content {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.social-icon-style1 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 0px;
  list-style: none;
  /* social-icon-style01 */
}
.social-icon-style1 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style1 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  height: 41px;
  line-height: 41px;
  width: 41px;
}
.social-icon-style1 li a:hover, .social-icon-style1 li a:active, .social-icon-style1 li a:focus {
  background: #ecba16;
}
.social-icon-style1 li:last-child {
  margin-right: 0;
}
.social-icon-style01 li {
  display: inline-block;
  margin-right: 10px;
  /* social-icon-style2 */
}
.social-icon-style01 li:last-child {
  margin-right: 0;
}
.social-icon-style01 li a {
  font-size: 16px;
  background: #ecba16;
  color: #fff;
  height: 36px;
  width: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
}
.social-icon-style01 li a:hover {
  color: #ecba16;
  background: #fff;
}
.social-icon-style2 {
  margin-left: 0;
  display: block;
  padding-left: 0;
  list-style: none;
}
.social-icon-style2 li {
  padding-right: 5px;
  display: inline-block;
  text-align: center;
}
.social-icon-style2 li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: rgba(6, 59, 139, 0.12);
  text-align: center;
  display: block;
  color: #063b8b;
  font-size: 16px;
  overflow: hidden;
  border-radius: 5px;
}
.social-icon-style2 li a:hover {
  background-color: #ecba16;
  color: #fff;
}
.social-icon-style2 li:last-child {
  padding-right: 0;
}
.social-icon-style2 li a:hover i {
  animation: bottomtotop 0.6s linear forwards;
}
@keyframes bottomtotop {
  /* social-icon-style3 */
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
.social-icon-style3 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 0px;
  list-style: none;
  /* social-icon-style1 */
}
.social-icon-style3 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 12px;
}
.social-icon-style3 li a {
  z-index: 1;
  width: 35px;
  height: 35px;
  color: white;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
  position: relative;
  border-radius: 5px;
  text-align: center;
  padding: 11px 11px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #ecba16;
}
.social-icon-style3 li a:before {
  z-index: -1;
  content: '';
  -webkit-transition: 0.75s;
  -o-transition: 0.75s;
  transition: 0.75s;
  position: absolute;
  width: 0;
  height: 0;
  background: transparent;
  left: 0;
  top: 0;
  border-bottom: 55px solid transparent;
  border-left: 350px solid #ecba16;
}
.social-icon-style3 li a:after {
  z-index: -1;
  content: '';
  -webkit-transition: 0.75s;
  -o-transition: 0.75s;
  transition: 0.75s;
  position: absolute;
  width: 0;
  height: 0;
  background: transparent;
  right: 0;
  bottom: 0;
  border-top: 55px solid transparent;
  border-right: 350px solid #ecba16;
}
.social-icon-style3 li a:hover {
  background: #fff;
  color: #ecba16;
}
.social-icon-style3 li a:hover:before {
  border-bottom: 0px solid transparent;
  border-left: 0px solid #ecba16;
}
.social-icon-style3 li a:hover:after {
  border-top: 0px solid transparent;
  border-right: 0px solid #ecba16;
}
.social-icon-style3 li:last-child {
  margin-right: 0;
}
.social-icon-style4 {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 0px;
  list-style: none;
  /* icon-style */
}
.social-icon-style4 li {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}
.social-icon-style4 li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #ecba16;
  height: 41px;
  line-height: 41px;
  width: 41px;
}
.social-icon-style4 li a:hover, .social-icon-style4 li a:active, .social-icon-style4 li a:focus {
  background: #063b8b;
}
.social-icon-style4 li:last-child {
  margin-right: 0;
}
.icon-style1 {
  display: block;
  color: #fff;
  background: #063b8b;
  font-size: 24px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  transition: all 0.3s linear 0s;
  vertical-align: top;
  /* pricing-box */
}
.pricing-box {
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
  padding: 40px 28px;
}
.pricing-box:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}
@media screen and (max-width: 575px) {
  /* pricing block */  .pricing-box {
    padding: 20px 28px;
  }
}
.pricing-block {
  position: relative;
  z-index: 99;
  background: #fff;
  height: 100%;
  border: 1px solid #ededed;
  margin-top: 20px;
}
.pricing-block .pricing-head {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  margin-top: -15px;
}
.pricing-block .pricing-head h4 {
  position: relative;
  background-color: #ecba16;
  padding: 15px 45px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  /* animation */  .pricing-block .pricing-head h4 {
    padding: 15px 30px;
  }
}
.ani-top-bottom {
  animation-name: float-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(-20px);
  }
}
.ani-left-right {
  animation-name: float-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-x {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(-10px);
  }
  to {
    transform: translateX(-20px);
  }
}
.ani-top-bottom2 {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: TopBottom2;
  animation-timing-function: ease-in-out;
}
@keyframes TopBottom2 {
  0% {
    transform: translate(0px, 0px);
  }
  65% {
    transform: translate(0, 30px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.rotated {
  animation: rotated 45s infinite linear;
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes move {
  /* error-page */
  0% {
    transform: translate3d(-200%, 0, 0);
  }
  60% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
.error-page-main h2 {
  font-size: 229px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .error-page-main h2 {
    font-size: 200px;
  }
}
@media only screen and (max-width: 575px) {
  /* wpcf7 */  .error-page-main h2 {
    font-size: 165px;
  }
}
.wpcf7 {
  /* quform */
}
.wpcf7 .quform-submit-inner {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear;
  z-index: 1;
  background: #ecba16;
  border: none;
  border-radius: 0;
  line-height: normal;
  font-weight: bold;
  vertical-align: top;
  cursor: pointer;
}
.wpcf7 .quform-submit-inner p {
  margin-bottom: 0;
}
.wpcf7 .quform-submit-inner:hover {
  color: #fff;
}
.wpcf7 .quform-submit-inner:hover:before {
  top: -40%;
}
.wpcf7 .quform-submit-inner:active {
  color: #fff;
}
.wpcf7 .quform-submit-inner:active:before {
  top: -40%;
}
.wpcf7 .quform-submit-inner:focus {
  color: #fff;
}
.wpcf7 .quform-submit-inner:focus:before {
  top: -40%;
}
.wpcf7 .quform-submit-inner:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: #063b8b;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}
.wpcf7 .quform-submit-inner .wpcf7-submit {
  display: inline-block;
  padding: 16px 30px !important;
  font-size: 14px !important;
  font-weight: bold;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
  z-index: 2;
  overflow: hidden;
  position: relative;
}
.wpcf7 .quform-submit-inner .wpcf7-spinner {
  display: none;
}
.wpcf7 .quform-element p {
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
}
.form-control:focus {
  border-color: #063b8b;
}
.form-check-input:checked {
  border-color: #063b8b;
  background-color: #063b8b;
}
.quform-input {
  position: relative;
}
.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}
.quform-element label {
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px;
}
.quform-element label .quform-required {
  color: #cc0101;
  font-size: 10px;
}
.quform-inner input {
  width: 100%;
}
.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}
.quform-element span.quform-required {
  color: #cc0101;
  font-size: 10px;
}
.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.quform-errors > .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
  border-color: #f5543f;
}
.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-submit-inner {
  float: none;
}
.quform-loading-wrap {
  float: none;
}
.quform-loading-wrap .quform-loading {
  display: inline-block;
}
.quform-element {
  margin-bottom: 1rem;
  /* newsletter */
}
.quform-element p {
  margin-bottom: 0;
}
.newsletter-form {
  /* newsletter */
}
.newsletter-form .quform-elements {
  position: relative;
}
.newsletter-form .quform-submit-inner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: auto;
  background: transparent;
  height: 48px;
}
.newsletter-form .quform-submit-inner .btn {
  padding: 0.5rem 1.15rem;
}
.newsletter-form .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}
.newsletter-form input {
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.2);
  height: 50px;
  padding: 0.5rem 4rem 0.5rem 1rem;
  color: #fff;
}
.newsletter-form .form-control:focus, .newsletter-form .form-control:active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.newsletter-form .quform-has-error input, .newsletter-form .quform-has-error textarea, .newsletter-form .quform-has-error select {
  border-color: #f5543f;
}
.newsletter-form .quform-input .quform-errors-wrap {
  right: 15px;
}
.newsletter-form i {
  font-size: 1.2rem;
  line-height: 2rem;
}
.newsletter-form {
  /*==============================
 *    Footer
 *    ================================ */
}
.newsletter-form .quform-submit-inner {
  position: unset;
  display: inline;
  padding: 0;
  background: transparent;
}
.newsletter-form .quform-submit-inner:before {
  content: none;
}
.newsletter-form .quform-submit-inner:after {
  content: none;
}
.newsletter-form .quform-submit-inner input.wpcf7-submit {
  font-size: 1.2rem !important;
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  padding: 0 !important;
  color: #063b8b;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  cursor: pointer;
  background: #2a9d8f;
}
.newsletter-form .quform-submit-inner input.wpcf7-submit.newsletter-btn {
  right: 0;
  top: 0;
}
.newsletter-form .quform-input input.wpcf7-text {
  padding-right: 4.75rem;
}
.newsletter-form .quform-element .quform-input .form-control.news-box {
  border: 1px solid transparent;
  background: #fff;
  color: #42545e;
  height: 50px;
  min-height: auto;
  padding: 0.5rem 3rem 0.5rem 1.5rem;
}
.newsletter-form .quform-element .quform-input .form-control.news-box:active {
  border-color: #063b8b;
}
.newsletter-form .quform-element .quform-input .form-control.news-box:focus {
  border-color: #063b8b;
}
.footer-logo {
  max-width: 214px;
  width: 100%;
  display: inline-block;
}
.footer-logo > a {
  display: inline-block;
}
.footer-listing li {
  border: none;
  margin-top: 0;
  padding-top: 0;
}
footer .email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding-bottom: 5px;
}
footer .email a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: all 0.8s ease;
}
footer .email a:hover:after, footer .email a:active:after, footer .email a:focus:after {
  width: 100%;
}
footer .email a:hover, footer .email a:active, footer .email a:focus {
  color: #ecba16;
}
footer .email a:after {
  border-bottom: 1px solid #fff;
  transition: all 0.8s ease;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
}
footer .phone {
  padding-bottom: 0;
  margin-bottom: 0;
}
footer .phone a {
  padding-bottom: 0;
  letter-spacing: -0.05rem;
  color: #fff;
}
footer .phone a:hover, footer .phone a:active, footer .phone a:focus {
  color: #ecba16;
}
@media screen and (max-width: 767px) {
  /* footer style3 */  footer {
    padding-top: 60px;
  }
}
.footer-style3 h3 {
  /* footer list style */
}
.footer-style3 h3:before, .footer-style3 h3:after {
  content: none;
}
footer .list-style-1 li {
  padding: 0 0 5px 0;
}
footer .list-style-1 li:last-child {
  padding: 0;
}
.footer-list li a {
  color: #fff;
  /* conatct-info */
}
.footer-list li a:hover {
  color: #ecba16;
}
.conatct-info {
  margin-top: -70%;
}
@media screen and (max-width: 1199px) {
  /*footer bar*/  .conatct-info {
    margin-top: 0;
  }
}
.footer-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
@media screen and (max-width: 767px) {
  /*footer menu*/  .footer-bar {
    margin-top: 60px;
  }
}
.footer-menu {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.footer-menu li {
  display: inline-block;
}
.footer-menu li:after {
  content: '|';
  margin: 0 15px;
  top: 0;
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.5);
  height: auto;
  width: auto;
}
.footer-menu li a {
  color: #fff;
}
.footer-menu li.last:after {
  content: none;
}
@media screen and (max-width: 575px) {
  /* Footer Style 05 */  .footer-menu li:after {
    margin: 0 12px;
  }
}
.footer-section-title span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  color: #ecba16;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-section-title span:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #ecba16;
}
.footer-five h3 {
  font-size: 1.25rem;
}
.footer-five h4 a:hover, .footer-five h4 a:active, .footer-five h4 a:focus {
  color: #ecba16 !important;
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  /* Image does not overflow the content area */
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 12px;
  line-height: 17px;
  margin: 0;
  padding: 10px 4px 0;
}
.height-0 {
  height: 0;
}
.wp-block-audio {
  margin-bottom: 0;
}
.min-height-auto {
  min-height: auto !important;
}
.card, .card-body, .card-footer {
  color: #42545e;
}
.card-img, .card-img-bottom, .card-img-top {
  width: auto;
}
@media screen and (min-width: 992px) {
  /* Text meant only for screen readers. */  .admin-bar header.scrollHeader .navbar-default {
    top: 32px;
  }
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  /* Above WP toolbar. */
  z-index: 100000;
}
.bypostauthor {
  opacity: 1;
}
.gallery-caption {
  font-style: italic;
  max-width: 100%;
  margin-bottom: 1em;
}
.gallery-caption img {
  border-radius: unset;
  /* Part 2 */
}
p + .alignfull, p + .alignwide {
  margin-top: 2em;
}
main .alignfull, main .alignwide {
  width: auto;
  max-width: 130%;
  transform: translateX(0);
}
main .alignwide {
  margin-left: -15px;
  margin-right: -15px;
}
main .alignfull {
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (max-width: 992px) {
  main .alignfull {
    max-width: 100%;
  }
  main .alignfull.wp-block-gallery, main .alignfull.wp-block-columns {
    max-width: 120%;
  }
}
@media screen and (max-width: 480px) {
  main .alignfull {
    margin-left: -15px;
    margin-right: -15px;
  }
}
main .alignfull img {
  width: 100%;
}
main .alignfull.wp-block-image, main .alignfull.wp-block-cover, main .alignfull.wp-block-embed-wordpress-tv {
  max-width: 130%;
}
@media screen and (max-width: 767px) {
  main .alignfull.wp-block-image, main .alignfull.wp-block-cover, main .alignfull.wp-block-embed-wordpress-tv {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 480px) {
  main .alignfull.wp-block-image, main .alignfull.wp-block-cover, main .alignfull.wp-block-embed-wordpress-tv {
    margin-left: -15px;
    margin-right: -15px;
  }
}
main .alignfull.wp-block-columns {
  margin-left: -25px;
  margin-right: -25px;
}
@media screen and (max-width: 767px) {
  main .alignfull.wp-block-columns {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.sidebar > :last-child {
  margin-bottom: 40px;
}
.single main .sidebar_left .alignwide, .single main .sidebar_right .alignwide {
  margin-left: -10px;
  margin-right: -10px;
}
.single main .sidebar_left .alignfull, .single main .sidebar_right .alignfull {
  margin-left: -20px;
  margin-right: -20px;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignleft {
  float: left;
  margin: 0 30px 10px 0;
}
.alignright {
  float: right;
  margin: 0 0 10px 30px;
}
.wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-cover, .wp-block-button, p + .alignfull, p + .alignwide {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.wp-block-cover.alignleft, .wp-block-button.alignleft {
  margin-right: 2rem;
  margin-top: 0;
}
.wp-block-cover.alignright, .wp-block-button.alignright {
  margin-left: 2rem;
  margin-top: 0;
}
.wp-block-button.is-style-squared .wp-block-button__link, .wp-block-button__link.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}
.wp-block-quote, .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  margin-bottom: 2rem;
  padding-left: 62px;
}
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  margin-top: 0.4em;
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  font-size: 1.15em;
}
.wp-block-quote.is-large cite, .wp-block-quote.is-style-large cite {
  font-size: 0.85em;
}
.wp-block-button__link:hover, .wp-block-button__link:active, .wp-block-button__link:focus {
  color: #fff;
}
.blog-post_text blockquote, #comments .comment_content blockquote {
  padding-right: 1em !important;
  margin-bottom: 2rem;
}
figcaption {
  width: 100%;
}
.wp-block-pullquote blockquote {
  margin-top: 0;
}
@media screen and (max-width: 410px) {
  figure.wp-block-audio, figure.wp-block-embed-youtube, figure.wp-block-embed-facebook {
    margin-left: 0;
    margin-right: 0;
  }
  figure.wp-block-audio audio {
    min-width: 250px;
  }
}
.blog-post_content .wp-block-cover .wp-block-cover-image-text, .blog-post_content .wp-block-cover-image .wp-block-cover-image-text, .blog-post_content .wp-block-cover .wp-block-cover-text, .blog-post_content .wp-block-cover-image .wp-block-cover-text, .blog-post_content .wp-block-cover h2, .blog-post_content .wp-block-cover-image h2 {
  color: #fff;
}
.wp-block-group.has-background {
  padding: 2rem;
}
.wp-block-group p:last-child {
  margin-bottom: 0;
}
.blocks-gallery-caption {
  font-size: 13px;
  text-align: center;
}
.wp-block-gallery {
  margin-bottom: 16px;
}
.wp-block-gallery li.blocks-gallery-item {
  padding-left: 0;
  margin-bottom: 16px;
}
.wp-block-gallery li.blocks-gallery-item figcaption {
  line-height: 1.5;
}
.wp-block-gallery.alignwide {
  clear: both;
}
.wp-block-search__button {
  color: #fff;
  min-width: 75px;
  background-color: #063b8b;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 10px !important;
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  border: none;
}
.wp-block-search__button:hover, .wp-block-search__button:hover:active, .wp-block-search__button:hover:focus {
  background-color: #063b8b;
  color: #fff;
}
.wp-block-search {
  margin-bottom: 15px;
}
.wp-block-search .wp-block-search__input {
  margin-right: 10px;
}
.wp-block-search .wp-block-search__button {
  margin-left: 0;
  /* Part 3 */
}
table {
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 32px;
  width: 100%;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
table th {
  color: #282828;
}
caption, td {
  font-weight: normal;
  text-align: left;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  padding: 13px 8px;
}
th {
  font-weight: 600;
  border-top: 1px solid #ededed;
  padding: 10px;
  border-right: 1px solid #ededed;
}
td {
  border-top: 1px solid #ededed;
  padding: 10px;
  border-right: 1px solid #ededed;
}
dl dt {
  font-weight: normal;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}
dl dd {
  line-height: normal;
  margin-bottom: 20px;
}
dl dd a {
  color: #000;
}
dl dd a:hover {
  color: #063b8b;
}
code, kbd {
  background-color: transparent;
  border-radius: 4px;
  color: inherit;
  font-size: 100%;
  padding: 2px 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
ins {
  color: #fff;
  border: none;
  padding: 2px;
  text-decoration: none;
  background-color: #063b8b;
}
pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
ol {
  list-style: outside none decimal;
  margin-bottom: 32px;
}
ul {
  padding: 0;
  margin: 0 0 32px;
}
ul li {
  list-style-position: inside;
}
dl + h2 + ul {
  padding-left: 35px;
}
dl + h2 + ul ul {
  padding-left: 35px;
}
dl + h2 + ul ul li {
  list-style: outside;
}
blockquote {
  background-color: #f9f9f9;
  padding: 24px 57px 24px 37px;
  font-size: 19px;
  line-height: 30px;
  color: #222;
  font-weight: 500;
  position: relative;
}
blockquote:before {
  content: '';
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #063b8b;
}
@media screen and (max-width: 767px) {
  blockquote {
    padding-left: 20px;
    padding-right: 20px;
  }
}
blockquote cite {
  display: block;
  font-size: 15px;
  font-style: normal;
  margin-top: 10px;
  color: #063b8b;
}
blockquote p:last-child {
  margin-bottom: 0;
}
.alignleft, .alignright, .aligncenter {
  margin-top: 6px;
  margin-bottom: 45px;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 35px !important;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 35px;
  clear: right;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sticky {
  display: block;
}
.updated:not(.published) {
  display: none;
}
.post-password-form label {
  display: block;
  max-width: 60%;
}
.post-password-form input {
  margin: 10px 0 0 0;
}
.has-background-dim {
  color: #fff;
  margin-bottom: 30px;
}
.wp-block-gallery .blocks-gallery-item {
  float: left;
}
@media screen and (max-width: 767px) {
  .post-password-form label {
    max-width: 60%;
  }
}
.wp-block-button {
  margin-bottom: 20px;
}
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  padding: 0.8075em 0;
  font-size: 0.875em;
  font-style: italic;
}
.gallery-caption {
  opacity: 1;
}
.wp-caption-text {
  text-align: center;
}
.post-nav .page-navigation {
  margin-bottom: 0 !important;
}
.single-post .pagination a, .single-post .pagination span.current {
  margin: 0 3px;
  /*==============================
 *    Search styles
 *    ================================ */
}
.search-form_label {
  width: 100%;
  display: block;
  padding: 10px 50px 10px 10px;
  background: trancparent;
  border: 1px solid #c9c9c9;
}
.search-form_input {
  outline: none;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  vertical-align: baseline;
  box-shadow: none;
  color: #000;
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  height: 37px;
}
.search-form + * {
  margin-top: 25px;
}
.search-form.on {
  display: block;
}
.search-form_submit {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  line-height: normal;
  font-size: 16px;
  /*==============================
 *    Widgets
 *    ================================ */
}
.widget_block h2 {
  font-size: 16px;
  text-transform: uppercase;
  padding-left: 45px;
  position: relative;
  display: inline-block;
  color: #063b8b;
  font-weight: bold;
  margin-bottom: 1.9rem;
  letter-spacing: 2px;
}
.widget_block h2:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: #ecba16;
  content: "";
}
.widget_block ul li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.widget_block ul li {
  margin-top: 15px;
  border-top: 1px solid #efefef;
  padding-top: 15px;
  list-style: none;
  word-wrap: break-word;
}
.widget_block.widget_search label {
  font-size: 16px;
  text-transform: uppercase;
  padding-left: 45px;
  position: relative;
  display: inline-block;
  color: #063b8b;
  font-weight: bold;
  margin-bottom: 1.9rem;
  letter-spacing: 2px;
}
.widget_block.widget_search label:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: #ecba16;
  content: "";
}
.sidebar .widget {
  margin-bottom: 1.9rem;
  padding: 3rem;
  background-color: #f8f9fa;
}
.sidebar .widget_custom_html {
  padding: 0;
  border: none;
}
.sidebar .widget:last-child {
  margin-bottom: 0 !important;
}
.sidebar .widget p:last-child {
  margin-bottom: 0;
}
.widget_text.widget_custom_html {
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .sidebar .widget {
    padding: 1.8rem;
  }
}
.widget select {
  min-height: 46px;
  display: block;
  width: 100%;
  padding: 8px 35px 8px 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.widget select:focus, .widget select:focus-visible {
  box-shadow: 0 0 10px rgba(55, 125, 255, .1);
  border-color: #063b8b;
}
.widget select::-ms-expand {
  display: none;
}
.page-content select {
  min-height: 46px;
  display: block;
  width: 100%;
  padding: 8px 35px 8px 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.page-content select:focus, .posts-wrapper .page-content select:focus-visible {
  box-shadow: 0 0 10px rgba(55, 125, 255, .1);
  border-color: #063b8b;
}
.page-content select::-ms-expand {
  display: none;
}
.post-content .tags a, .sidebar .tagcloud .wp-tag-cloud a {
  text-transform: lowercase;
}
.extra-icon-circle {
  border-radius: 50% !important;
}
.card-style7 .card-label a {
  color: #fff;
}
.card select {
  min-height: 46px;
  display: block;
  width: 100%;
  padding: 8px 35px 8px 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.card select:focus, .card select:focus-visible {
  box-shadow: 0 0 10px rgba(55, 125, 255, .1);
  border-color: #063b8b;
}
.card select::-ms-expand {
  display: none;
}
.card .tags a, .blog.sidebar .tagcloud .wp-tag-cloud a {
  text-transform: lowercase;
  /*==============================
 *    Forms
 *    ================================ */
}
.wpcf7-spinner {
  vertical-align: middle;
}
.wpcf7-not-valid-tip {
  font-size: 13px;
}
.wpcf7-not-valid {
  border-color: red !important;
}
footer .wpcf7-form {
  color: #fff !important;
}
.custom-file-input.wpcf7-not-valid {
  border: 1px solid red !important;
  opacity: 1;
  border-radius: 4px;
}
.wpcf7-spinner {
  display: none;
  margin: 10px 0 0 0;
}
form.submitting .wpcf7-spinner {
  display: block;
}
.newsletter-form .quform-submit-inner {
  width: 110px;
  right: 1px;
}
.newsletter-form input {
  padding: 0.5rem 8rem 0.5rem 1rem;
  /*==============================
 *    Comment form
 *    ================================ */
}
.comment-list li .comment-respond {
  padding-top: 2rem;
  padding-left: 5.5rem;
}
.comment-respond .form-submit {
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear;
  z-index: 1;
  background: #063b8b;
  border: none;
  border-radius: 0;
  line-height: normal;
  font-weight: bold;
  vertical-align: top;
  cursor: pointer;
}
.comment-respond .form-submit:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: #ecba16;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}
.comment-respond .form-submit:hover, .comment-respond .form-submit:active, .comment-respond .form-submit:focus {
  color: #fff;
}
.comment-respond .form-submit:hover:before, .comment-respond .form-submit:active:before, .comment-respond .form-submit:focus:before {
  top: -40%;
}
.comment-respond .form-submit input.submit {
  display: inline-block;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
  z-index: 2;
  overflow: hidden;
  position: relative;
  /*==============================
 *    Cards
 *    ================================ */
  /* card-style2 */
}
.card-style2 .card-body ul:last-child, .card-style2 .card-body ol:last-child, .card-style2 .card-body p:last-child, .card-style2 .card-body pre:last-child, .card-style2 .card-body blockquote:last-child {
  margin-bottom: 0;
  margin-top: 0;
}
.card-style2 .card-body blockquote:nth-child(2) {
  margin-top: 0;
}
.card-style2 .meta li:first-child a {
  text-transform: capitalize;
  /* post content */
}
.page-content ul:last-child, .page-content ol:last-child, .page-content p:last-child, .page-content pre:last-child, .page-content blockquote:last-child {
  margin-bottom: 0;
}
.page-content blockquote:nth-child(2) {
  margin-top: 0;
}
.page-content .meta li:first-child a {
  text-transform: capitalize;
  /*==============================
 *    Sidebar
 *    ================================ */
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-listing {
  margin: -0.5rem 0 0 0;
  padding: 0;
  list-style: none;
}
.cat-item:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
.cat-item {
  margin-top: 10px;
  background-color: transparent;
  position: relative;
}
.cat-item a {
  border: 1px solid #dee2e6;
  padding: 12px 18px;
  transition: all 0.4s ease 0s;
  display: block;
  background: #fff;
}
.cat-item a:hover, .cat-item a:active, .cat-item a:focus {
  background: #ecba16;
  color: #fff;
}
.cat-item ul.children {
  margin-top: 0.5rem;
  margin-left: 10px;
}
.widget_block .wp-block-categories-list li {
  margin-top: 10px;
  border: 0;
  padding-top: 0;
}
.widget_archive li:first-child, .wp-block-archives li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.widget_archive li, .wp-block-archives li {
  list-style: none;
  word-wrap: break-word;
  font-weight: 600;
  margin-top: 10px;
  background-color: transparent;
  position: relative;
}
.widget_archive li a, .wp-block-archives li a {
  font-weight: 600;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  padding: 12px 20px 12px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  background: #fff;
}
.widget_archive li a:hover, .widget_archive li a:active, .widget_archive li a:focus, .wp-block-archives li a:hover, .wp-block-archives li a:active, .wp-block-archives li a:focus {
  background: #ecba16;
  color: #fff;
}
.widget_block .wp-block-archives-list li {
  margin-top: 10px;
  border: 0;
  padding-top: 0;
}
.widget_pages ul.children {
  margin: 0.5rem 0 0 0;
}
.widget_pages li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.widget_pages li {
  margin-top: 15px;
  border-top: 1px solid #efefef;
  padding-top: 15px;
  list-style: none;
  word-wrap: break-word;
  font-weight: 500;
}
.widget_meta li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.widget_meta li {
  margin-top: 15px;
  border-top: 1px solid #efefef;
  padding-top: 15px;
  list-style: none;
  word-wrap: break-word;
  font-weight: 500;
}
.widget .gallery {
  margin-top: -24px !important;
  margin-bottom: 0 !important;
}
.widget .gallery .gallery-item {
  padding: 0 3px;
  margin-bottom: 0;
}
.wp-calendar-table {
  caption-side: top;
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 1rem;
  width: 100%;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.wp-block-calendar table th {
  color: #fff;
  background: #063b8b;
}
.widget_calendar .wp-block-calendar th, .widget_calendar .wp-block-calendar td {
  text-align: center;
  border-top: 1px solid #ededed;
  padding: 10px 5px;
  border-right: 1px solid #ededed;
}
.wp-calendar-table #today {
  background-color: #063b8b;
  color: #fff;
}
.wp-calendar-table #today a {
  color: #fff;
}
.wp-calendar-table #today a:hover {
  text-decoration: none;
  color: #fff;
}
.widget_calendar table > caption {
  padding: 0;
  text-align: center;
  color: inherit;
  margin-top: -10px;
}
.widget_calendar .wp-calendar-nav {
  text-align: center;
}
.widget_recent_entries ul, .widget_recent_comments ul {
  list-style: none;
}
.widget_recent_comments ul {
  list-style: none;
}
.widget_recent_comments ul li {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.widget_recent_comments ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.widget_recent_comments .recentcomments > a {
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  display: block;
}
.widget_recent_comments .recentcomments > a:before {
  content: '\A';
  white-space: pre;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 1em;
  line-height: 1.7;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
  margin-bottom: 0;
}
.recent-post > div:first-child.flex-shrink-0 a {
  display: inline-block;
  width: 75px;
  height: auto;
}
.widget_nav_menu .menu {
  margin-top: -12px;
}
.widget_nav_menu ul {
  list-style: none;
  margin-bottom: 0;
}
.widget_nav_menu .menu > li:last-child > a {
  border-bottom: none;
  padding-bottom: 0;
}
.widget_nav_menu .menu > li > a {
  text-transform: uppercase;
  font-weight: 600;
}
.widget_nav_menu ul ul ul ul ul {
  padding-left: 0;
}
.widget_nav_menu ul li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  padding: 12px 12px 12px 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #e5e5e5;
}
.widget_nav_menu ul li .sub-menu {
  padding-left: 10px;
}
.widget_nav_menu ul li .sub-menu li:last-child > a {
  border-bottom: none;
}
.widget_nav_menu .widget-title {
  padding: 3rem 3rem 0 3rem;
}
.widget_nav_menu .menu-service-sidebar-menu-container {
  padding: 0 3rem 3rem 3rem;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu > li > a {
  text-transform: inherit;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu {
  margin-top: 0;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu li {
  margin-bottom: 10px;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu li:last-child {
  margin-bottom: 0;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu li a {
  display: block;
  padding: 19px 55px 19px 20px;
  background: #fff;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #42545e;
  border-radius: 0;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu li a:after {
  color: #42545e;
  line-height: 36px;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 1;
  content: "\e628";
  font-family: 'themify';
  transition: all ease 0.4s;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu li.current-menu-item a:after {
  color: #fff;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu li a:hover, .widget_nav_menu .menu-service-sidebar-menu-container .menu li a:active, .widget_nav_menu .menu-service-sidebar-menu-container .menu li a:focus {
  background: #ecba16;
  color: #fff;
  border-color: #ecba16;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu li a:hover:after, .widget_nav_menu .menu-service-sidebar-menu-container .menu li a:active:after, .widget_nav_menu .menu-service-sidebar-menu-container .menu li a:focus:after {
  color: #fff;
}
.widget_nav_menu .menu-service-sidebar-menu-container .menu li.current-menu-item a {
  background: #ecba16;
  color: #fff;
  border-color: #ecba16;
}
@media screen and (max-width: 1199px) {
  .widget_nav_menu .widget-title {
    padding: 1.9rem 1.9rem 0 1.9rem;
  }
  .widget_nav_menu .menu-service-sidebar-menu-container {
    padding: 0 1.9rem 1.9rem 1.9rem;
  }
}
.widget_rss ul {
  list-style: none;
  padding: 0;
}
.widget_rss li {
  margin-bottom: 16px;
}
.widget_rss li:last-child {
  margin-bottom: 0;
}
.widget_rss .rsswidget {
  font-weight: 700;
  display: inline-block;
}
.widget_rss .rss-date {
  font-size: 0.875em;
  font-style: italic;
  display: block;
}
.widget_rss cite {
  font-weight: 700;
  font-size: 0.875em;
}
.widget_rss .rss-widget-icon {
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.tagcloud {
  margin-top: -0.5rem;
}
.wp-tag-cloud li {
  display: inline-block;
}
.wp-tag-cloud a:hover {
  background-color: #063b8b;
  color: #fff;
}
.wp-tag-cloud a {
  font-size: 14px !important;
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  padding: 3px 8px;
  margin: 4px 4px 4px 0;
  border: 1px solid #ededed;
  line-height: 30px;
  border-radius: 0;
  background: #fff;
}
.sidebar .widget.widget_search .wp-block-search {
  margin-bottom: 0;
}
.widget_search input {
  width: calc(100% - 75px);
  padding: 10px;
  margin: 0;
  border: 1px solid #ced4da !important;
  background: #fff;
  min-height: auto;
  display: inline-block;
  border-radius: 0;
  outline: none;
  text-indent: 10px;
  transition: all 0.2s ease 0s;
  color: #000;
}
.widget_search .butn:after {
  content: none;
}
.search-custom input {
  display: block;
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 15px;
  color: #4b4342;
  border: 1px solid #ededed;
  background: none;
  background: #fff;
  border-radius: 0.25rem !important;
  margin-bottom: 0;
}
.search-custom .butn {
  position: absolute;
  color: #063b8b !important;
  right: 20px;
  top: 15px;
  padding: 0px !important;
  font-size: 18px !important;
  z-index: 9;
  outline: none;
  background: none;
  border-radius: 0;
  line-height: normal;
  overflow: visible;
}
.search-custom .butn:before {
  content: none;
}
.comments-area {
  margin-bottom: 40px;
}
ol.wp-block-latest-comments {
  padding-left: 0;
  margin-bottom: 0;
}
ol.wp-block-latest-comments .wp-block-latest-comments__comment {
  line-height: 1.7;
}
ol.wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}
ol.wp-block-latest-comments .wp-block-latest-comments__comment:last-child .wp-block-latest-comments__comment-excerpt p:last-child {
  margin-bottom: 0;
}
article footer {
  background: transparent;
  padding: 0;
}
.sidebar .wp-calendar-table tbody {
  background: #fff;
}
.sidebar .widget.widget_media_image .wp-block-image:last-child {
  margin-bottom: 0;
}
.sidebar .wp-block-cover, .sidebar .wp-block-button, .sidebar p + .alignfull, .sidebar p + .alignwide {
  margin-top: 0;
  margin-bottom: 0;
}
.sidebar .has-background-dim {
  margin-bottom: 0;
}
.sidebar .wp-block-video video {
  vertical-align: middle;
}
.sidebar .wp-block-video {
  margin-bottom: 0;
}
.sidebar .wp-block-pullquote {
  margin: 0;
  padding: 0;
}
.sidebar .wp-block-pullquote blockquote, .sidebar .wp-block-pullquote cite, .sidebar .wp-block-pullquote p {
  margin: 0;
}
.sidebar pre:last-child {
  margin: 0;
}
.sidebar .wp-block-table:last-child {
  margin-bottom: 0;
}
.sidebar .wp-block-table table:last-child {
  margin-bottom: 0;
}
.sidebar .wp-block-gallery:last-child {
  margin-bottom: 0;
  /*==============================
 *    Comments
 *    ================================ */
}
.comment-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.comments-area .comment ul.children {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 2rem;
}
.comment-list .comment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.comment-list > li {
  list-style: none;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.comment-list > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.comment-list li .children li {
  list-style: none;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  /*==============================
 *    Pagination
 *    ================================ */
}
.pagination li:first-child {
  margin-left: 0;
}
.pagination .page-numbers {
  border-radius: 0;
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 49px;
  text-align: center;
  padding: 10px 5px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #dbdbdb;
  background: #fff;
}
.pagination span.current {
  padding: 10px 5px;
  background: #063b8b;
  color: #fff;
  border-color: #063b8b;
  /*==============================
 *    Others
 *    ================================ */
  /* brand logo */
}
@media screen and (min-width: 992px) {
  .navbar-brand.hide-scroll {
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    height: auto;
    transition: all 0s ease 0s;
    width: auto;
    margin-right: 1rem;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
  .scrollHeader .navbar-brand.hide-scroll {
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    height: 0;
    transition: all 0s ease 0s;
    width: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-brand.show-scroll {
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    height: 0;
    transition: all 0s ease 0s;
    width: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .scrollHeader .navbar-brand.show-scroll {
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    height: auto;
    transition: all 0s ease 0s;
    width: auto;
    margin-right: 1rem;
    position: relative;
    left: 5px;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
}
@media screen and (max-width: 991px) {
  .show-scroll {
    display: none !important;
  }
}
.single-post article.card .card-body p:last-child {
  margin-bottom: 0;
}
.single-post article.card input[type="text"], .single-post article.card input[type="email"], .single-post article.card input[type="url"], .single-post article.card input[type="password"], .single-post article.card input[type="search"], .single-post article.card input[type="tel"], .single-post article.card input[type="number"], .single-post article.card input[type="range"], .single-post article.card input[type="date"], .single-post article.card input[type="month"], .single-post article.card input[type="week"], .single-post article.card input[type="time"], .single-post article.card input[type="datetime"], .single-post article.card input[type="datetime-local"], .single-post article.card input[type="color"], .single-post article.card textarea, .single-post article.card select {
  min-height: 46px;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.single-post article.card [type=submit]:not(:disabled), .single-post article.card [type=reset]:not(:disabled), .single-post article.card [type=submit]:not(:disabled) {
  background-color: #063b8b;
  border: none;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 12px 28px;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 999;
  display: inline-block;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: all 0.4s ease-in-out 0s;
  cursor: pointer;
  min-width: 82px;
}
.single-post article.card [type=submit]:not(:disabled):hover, .single-post article.card [type=reset]:not(:disabled):hover, .single-post article.card [type=submit]:not(:disabled):hover {
  background-color: #ecba16;
}
.single-post .post-content-details p:last-child {
  margin-bottom: 0;
}
.single-post .post-content-details input[type="text"], .single-post .post-content-details input[type="email"], .single-post .post-content-details input[type="url"], .single-post .post-content-details input[type="password"], .single-post .post-content-details input[type="search"], .single-post .post-content-details input[type="tel"], .single-post .post-content-details input[type="number"], .single-post .post-content-details input[type="range"], .single-post .post-content-details input[type="date"], .single-post .post-content-details input[type="month"], .single-post .post-content-details input[type="week"], .single-post .post-content-details input[type="time"], .single-post .post-content-details input[type="datetime"], .single-post .post-content-details input[type="datetime-local"], .single-post .post-content-details input[type="color"], .single-post .post-content-details textarea, .single-post .post-content-details select {
  min-height: 46px;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.single-post .post-content-details [type=submit]:not(:disabled), .single-post .post-content-details [type=reset]:not(:disabled), .single-post .post-content-details [type=submit]:not(:disabled) {
  background-color: #063b8b;
  border: none;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 12px 28px;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 9999;
  display: inline-block;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: all 0.4s ease-in-out 0s;
  cursor: pointer;
  min-width: 82px;
}
.single-post .post-content-details [type=submit]:not(:disabled):hover, .single-post .post-content-details [type=reset]:not(:disabled):hover, .single-post .post-content-details [type=submit]:not(:disabled):hover {
  background-color: #ecba16;
}
.comments-area .comment-info ol, .comments-area .comment-info ul {
  margin-bottom: 32px;
}
.comments-area .comment-info ul {
  list-style-type: disc;
}
.comments-area .comment-info ul:last-child, .comments-area .comment-info ol:last-child, .comments-area .comment-info p:last-child, .comments-area .comment-info pre:last-child, .comments-area .comment-info blockquote:last-child {
  margin-bottom: 0;
}
.single .blog-share-icon {
  min-width: 172px;
}
.single .tags a {
  margin: 5px 10px 5px 0;
}
.single .entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 1.9rem !important;
  list-style: none;
  border-bottom: 1px solid #efefef;
  padding-bottom: 16px;
  position: relative;
  font-weight: bold;
}
.single .entry-footer:empty {
  display: none !important;
}
.single .entry-footer div:last-child {
  margin-bottom: 0 !important;
}
body.single .entry-footer:empty {
  display: none !important;
}
body.single .entry-footer div:last-child {
  margin-bottom: 0 !important;
}
.portfolio-style2 .portfolio-inner .portfolio-text .text-white:hover {
  opacity: 0.9;
}
.prev-page .image-prev.no_image:before, .prev-page .image-prev.no_image:after {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}
.next-page .image-next.no_image:before, .next-page .image-next.no_image:after {
  opacity: 1;
  visibility: visible;
  margin-right: 0;
}
.prev-page .image-prev.no_image:after, .next-page .image-next.no_image:after {
  background: #063b8b;
}
.gallery {
  margin: -16px -12px 43px -12px !important;
  display: flex;
  flex-wrap: wrap;
}
.gallery .gallery-item {
  padding: 0 12px;
  margin-top: 24px !important;
  margin-bottom: 0;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 33.33%;
}
.gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
  width: 20%;
}
#gallery-1 {
  margin: auto;
}
#gallery-1 .gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 100%;
}
#gallery-1 img {
  border: 2px solid #cfcfcf;
}
#gallery-1 .gallery-caption {
  margin-left: 0;
}
.page-content .page-links {
  clear: left;
  padding-top: 10px;
}
.page-content .page-links span {
  text-align: center;
  display: inline-block;
  height: 26px;
  width: 26px;
  line-height: 26px;
  color: #fff;
  border-radius: 3px;
  background-color: #063b8b;
  font-size: 14px;
  font-weight: 500;
  margin: 0 3px;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.page-content .page-links a span {
  background-color: #e0e3e8;
  color: #000;
}
.page-content .page-links a span:hover {
  background-color: #063b8b;
  color: #fff;
}
.page-content .page-links .post-page-numbers {
  margin: 0 3px;
}
.page-content .page-links .post-page-numbers span {
  margin: 0;
}
footer .menu-primary-menu-container .menu {
  margin-top: -12px;
}
footer .menu-primary-menu-container ul {
  list-style: none;
  margin-bottom: 0;
}
footer .menu-primary-menu-container .menu > li:last-child > a {
  border-bottom: none;
  padding-bottom: 0;
}
footer .menu-primary-menu-container .menu > li > a {
  text-transform: uppercase;
  font-weight: 600;
}
footer .menu-primary-menu-container ul ul ul ul ul {
  padding-left: 0;
}
footer .menu-primary-menu-container ul li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  padding: 12px 12px 12px 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .menu-primary-menu-container ul li .sub-menu {
  padding-left: 10px;
}
footer .menu-primary-menu-container ul li .sub-menu li:last-child > a {
  border-bottom: none;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #fff;
}
footer li:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
footer li {
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 15px;
  list-style: none;
  word-wrap: break-word;
}
footer li a {
  color: #fff;
}
footer li a:hover, footer li a:active, footer li a:focus {
  color: rgba(255, 255, 255, 0.65);
}
footer h1 a, footer h2 a, footer h3 a, footer h4 a, footer h5 a, footer h6 a, footer .h1 a, footer .h2 a, footer .h3 a, footer .h4 a, footer .h5 a, footer .h6 a {
  color: #fff;
}
footer h1 a:hover, footer h1 a:active, footer h1 a:focus, footer h2 a:hover, footer h2 a:active, footer h2 a:focus, footer h3 a:hover, footer h3 a:active, footer h3 a:focus, footer h4 a:hover, footer h4 a:active, footer h4 a:focus, footer h5 a:hover, footer h5 a:active, footer h5 a:focus, footer h6 a:hover, footer h6 a:active, footer h6 a:focus, footer .h1 a:hover, footer .h1 a:active, footer .h1 a:focus, footer .h2 a:hover, footer .h2 a:active, footer .h2 a:focus, footer .h3 a:hover, footer .h3 a:active, footer .h3 a:focus, footer .h4 a:hover, footer .h4 a:active, footer .h4 a:focus, footer .h5 a:hover, footer .h5 a:active, footer .h5 a:focus, footer .h6 a:hover, footer .h6 a:active, footer .h6 a:focus {
  color: #063b8b;
}
footer .wp-block-calendar table th {
  background: #063b8b;
  color: #fff;
}
footer .wp-calendar-table {
  color: #fff;
  caption-side: top;
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 1rem;
  width: 100%;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
footer .wp-calendar-table th, footer .wp-calendar-table td {
  text-align: center;
  border-top: 1px solid #ededed;
  padding: 10px 5px;
  border-right: 1px solid #ededed;
  color: #fff;
}
footer .wp-calendar-table #today {
  background-color: #063b8b;
}
footer .wp-calendar-table #today a:hover {
  text-decoration: none;
  color: #fff;
}
footer table.wp-calendar-table > caption {
  padding: 0;
  text-align: center;
  color: #fff;
  margin-top: -10px;
}
footer .wp-calendar-table a {
  color: #fff;
}
footer .wp-calendar-table a:hover {
  color: #063b8b;
}
footer .wp-calendar-nav {
  text-align: center;
}
footer .wp-calendar-nav a {
  color: #fff;
}
footer .wp-block-quote p {
  color: #222;
}
footer .wp-block-pullquote p {
  color: #222;
}
footer .wp-block-pullquote cite {
  color: #063b8b;
}
footer .wp-block-social-links li {
  padding-top: 0;
}
footer .wp-block-cover .has-background-dim {
  margin-bottom: 0;
}
footer .wp-block-file a {
  color: #fff;
}
footer .wp-block-file .wp-block-file__button {
  color: #32373c;
  background: #fff;
}
footer .wp-block-file a.wp-block-file__button:active, footer .wp-block-file a.wp-block-file__button:focus, footer .wp-block-file a.wp-block-file__button:hover, footer .wp-block-file a.wp-block-file__button:visited {
  color: #32373c;
  background: #fff;
}
footer #recentcomments {
  list-style: none;
  margin-bottom: 0;
}
footer #recentcomments li {
  line-height: 1.7;
  list-style: none;
  margin-bottom: 1em;
}
footer #recentcomments li:last-child {
  margin-bottom: 0;
}
footer ol.wp-block-latest-comments .wp-block-latest-comments__comment {
  padding-top: 1.4em;
}
footer .wp-tag-cloud a {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
footer .wp-block-tag-cloud a {
  color: #fff;
}
footer .wp-block-tag-cloud a:hover {
  color: rgba(255, 255, 255, 0.65);
}
footer .wp-block-loginout a {
  color: #fff;
}
footer .wp-block-loginout a:hover {
  color: rgba(255, 255, 255, 0.65);
}
footer select {
  min-height: 46px;
  display: block;
  width: 100%;
  padding: 8px 35px 8px 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
footer select:focus, footer select:focus-visible {
  box-shadow: 0 0 10px rgba(55, 125, 255, .1);
  border-color: #063b8b;
}
footer select::-ms-expand {
  display: none;
}
footer .input-group .input-group-append .butn {
  height: 100%;
}
footer .input-group .input-group-append .butn:before {
  background: #063b8b;
}
footer .cat-item {
  border-color: rgba(255, 255, 255, 0.15);
  border: none;
  padding-top: 0;
}
footer .cat-item a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}
footer .widget_archive li, footer .wp-block-archives li {
  border-color: rgba(255, 255, 255, 0.15);
  border: none;
  padding-top: 0;
}
footer .widget_archive li a, footer .wp-block-archives li a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}
footer p, footer li, footer label {
  color: #fff;
  list-style: none;
}
