/*
Theme Name: Batten Civil Engineering
Theme URI: https://www.battenltd.com/
Author: Dan Curtis
Author URI: https://www.boostbery.com/
Description: A custom WordPress website for Batten Civil Engineering
Text Domain: battencivilengineering
version: 1.0
*/
/*
$size-xs: 40px;
$size-sm: 60px;
$size-md: 80px;
$size-lg: 120px;
*/
:root {
  --size-xs: 40px;
  --size-sm: 60px;
  --size-md: 80px;
  --size-lg: 120px;
}

@media (max-width: 1200px) {
  :root {
    --size-xs: 32px;
    --size-sm: 48px;
    --size-md: 64px;
    --size-lg: 96px;
  }
}
@media (max-width: 768px) {
  :root {
    --size-xs: 24px;
    --size-sm: 36px;
    --size-md: 48px;
    --size-lg: 72px;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  background-color: #AEAEAE;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body.menu-active {
  overflow-y: hidden;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.bce-light-blue {
  background-color: #F3F7FF;
}

.vertical-align {
  display: flex;
  align-items: center;
}

.pad-top-none {
  padding-top: 0;
}

.pad-top-lg {
  padding-top: var(--size-lg);
}

.pad-bottom-none {
  padding-bottom: 0;
}

.pad-bottom-lg {
  padding-bottom: var(--size-lg);
}

.top-rad-corners {
  border-radius: var(--size-lg) var(--size-lg) 0 0;
}

.bot-rad-corners {
  border-radius: 0 0 var(--size-lg) var(--size-lg);
}

h1 {
  font-size: 45px;
  font-weight: 500;
}
@media only screen and (max-width: 992px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 31px;
  font-weight: 500;
  color: #282B75;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 600;
}

h4 {
  font-size: 22px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  font-weight: 500;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

ul.tick-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 20px 0 30px 0;
}
ul.tick-list li {
  margin: 0 0 14px 0;
  background-image: url("./img/tick.svg");
  background-position: top left;
  background-repeat: no-repeat;
  padding-left: 45px;
  line-height: 25px;
}
ul.tick-list li:last-child {
  margin: 0;
}

.site-header {
  background-color: #AEAEAE;
  border-radius: 0 0 10px 10px;
  position: fixed;
  width: 100%;
  z-index: 80;
}
.site-header .navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .left .main-logo {
    width: 200px;
  }
}
.site-header .navbar-content .right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.site-header .navbar-content .right .contact {
  background-color: #D7D7D7;
  display: flex;
  align-items: center;
  padding: 10px 34px 10px 10px;
  border-radius: 300px;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .right .contact {
    padding: 8px 30px 8px 8px;
  }
}
.site-header .navbar-content .right .contact .icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 200px;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .right .contact .icon {
    width: 40px;
    height: 40px;
  }
}
.site-header .navbar-content .right .contact.phone .icon {
  background-image: url("./img/phone-icon.svg");
}
@media only screen and (max-width: 576px) {
  .site-header .navbar-content .right .contact.phone {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .site-header .navbar-content .right .contact.email {
    display: none;
  }
}
.site-header .navbar-content .right .contact.email .icon {
  background-image: url("./img/email-icon.svg");
}
.site-header .navbar-content .right .contact span {
  font-size: 12px;
  display: block;
  color: #9397A7;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .right .contact span {
    font-size: 10px;
  }
}
.site-header .navbar-content .right .contact a {
  color: #212529;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .right .contact a {
    font-size: 14px;
  }
}
.site-header .navbar-content .right .burger {
  width: 68px;
  height: 68px;
  background-color: #282B75;
  border-radius: 60px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .right .burger {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 576px) {
  .site-header .navbar-content .right .burger {
    width: 50px;
    height: 50px;
  }
}
.site-header .navbar-content .right .burger span {
  width: 18px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 28px;
  left: calc(50% - 9px);
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .right .burger span {
    top: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .site-header .navbar-content .right .burger span {
    top: 19px;
  }
}
.site-header .navbar-content .right .burger span:last-child {
  top: 36px;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .right .burger span:last-child {
    top: 32px;
  }
}
@media only screen and (max-width: 576px) {
  .site-header .navbar-content .right .burger span:last-child {
    top: 27px;
  }
}
.site-header .navbar-content .right .burger.active span {
  top: 33px;
}
@media only screen and (max-width: 768px) {
  .site-header .navbar-content .right .burger.active span {
    top: 29px;
  }
}
@media only screen and (max-width: 576px) {
  .site-header .navbar-content .right .burger.active span {
    top: 24px;
  }
}
.site-header .navbar-content .right .burger.active span:first-child {
  transform: rotate(45deg);
}
.site-header .navbar-content .right .burger.active span:last-child {
  transform: rotate(-45deg);
}

.curtain {
  position: fixed;
  background-color: rgba(174, 174, 174, 0.8);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.curtain.active {
  opacity: 1;
  visibility: visible;
}

.menu-tray {
  width: 50vw;
  height: 100%;
  background-color: #282B75;
  position: fixed;
  top: 0;
  right: -50vw;
  z-index: 40;
  padding: 190px 40px 40px 100px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (max-width: 992px) {
  .menu-tray {
    width: 75vw;
    right: -75vw;
  }
}
@media only screen and (max-width: 768px) {
  .menu-tray {
    width: 100vw;
    right: -100vw;
    padding: 190px 20px 20px 20px;
  }
}
.menu-tray .sub-menu {
  display: none;
  padding: 0 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .menu-tray .sub-menu {
    padding: 0;
  }
}
.menu-tray.active {
  right: 0;
}
.menu-tray .site-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-tray .site-menu li {
  font-size: 31px;
  font-weight: 500;
  line-height: 2;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .menu-tray .site-menu li {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .menu-tray .site-menu li {
    font-size: 19px;
  }
}
.menu-tray .site-menu li a {
  color: #fff;
}
.menu-tray .site-menu li a:hover {
  opacity: 0.7;
}
.menu-tray .site-menu .sub-menu li {
  font-size: 22px;
}
@media only screen and (max-width: 992px) {
  .menu-tray .site-menu .sub-menu li {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .menu-tray .site-menu .sub-menu li {
    font-size: 17px;
  }
}
.menu-tray .submenu-arrow {
  display: inline-block;
  margin-left: 12px;
  transition: transform 0.3s ease;
  width: 10px;
  height: 10px;
  background-image: url("./img/menu-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: -3px;
}
.menu-tray .menu-item-has-children.open > a .submenu-arrow {
  transform: rotate(180deg);
}

footer {
  background-color: #F3F7FF;
}
footer .top-content {
  padding: calc(var(--size-lg) - 20px) 0 var(--size-sm) 0;
}
@media only screen and (max-width: 992px) {
  footer .top-content {
    padding: var(--size-sm) 0;
  }
}
@media only screen and (max-width: 768px) {
  footer .top-content {
    text-align: center;
  }
}
footer .top-content .main-logo {
  width: 230px;
  margin: 0 0 30px 0;
}
footer .top-content .about {
  font-size: 14px;
  font-weight: 400;
}
@media only screen and (max-width: 992px) {
  footer .top-content .about {
    width: 70%;
    margin: 0 0 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  footer .top-content .about {
    width: 100%;
  }
}
footer .top-content .menus {
  display: flex;
  justify-content: space-between;
  padding: 0 60px 0 0;
}
@media only screen and (max-width: 992px) {
  footer .top-content .menus {
    justify-content: left;
    gap: 120px;
    padding: 0;
    margin: 0 0 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  footer .top-content .menus {
    gap: 40px;
    flex-direction: column;
  }
}
footer .top-content .menus h6 {
  margin: 0 0 14px 0;
}
footer .top-content .menus ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .top-content .menus ul li {
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 500;
}
footer .top-content .menus ul li a {
  color: #1B222A;
}
footer .top-content .menus ul li a:hover {
  color: #282B75;
}
footer .top-content .contact-items .contact {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 34px 10px 10px;
  border-radius: 300px;
  gap: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  footer .top-content .contact-items .contact {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  footer .top-content .contact-items .contact {
    padding: 8px 30px 8px 8px;
  }
}
@media only screen and (max-width: 576px) {
  footer .top-content .contact-items .contact {
    width: auto;
  }
}
footer .top-content .contact-items .contact .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #F3F7FF;
  border-radius: 200px;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 768px) {
  footer .top-content .contact-items .contact .icon {
    width: 40px;
    height: 40px;
  }
}
footer .top-content .contact-items .contact.phone .icon {
  background-image: url("./img/phone-icon.svg");
}
footer .top-content .contact-items .contact.email .icon {
  background-image: url("./img/email-icon.svg");
}
footer .top-content .contact-items .contact span {
  font-size: 12px;
  display: block;
  color: #9397A7;
}
@media only screen and (max-width: 768px) {
  footer .top-content .contact-items .contact span {
    font-size: 10px;
  }
}
footer .top-content .contact-items .contact a {
  color: #212529;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  footer .top-content .contact-items .contact a {
    font-size: 14px;
  }
}
footer .top-content .social {
  display: flex;
  gap: 14px;
}
@media only screen and (max-width: 768px) {
  footer .top-content .social {
    align-items: center;
    justify-content: center;
  }
}
footer .top-content .social .icon {
  background-color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 40px;
  position: relative;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
footer .top-content .social .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) saturate(100%) invert(10%) sepia(20%) saturate(375%) hue-rotate(169deg) brightness(101%) contrast(91%);
}
footer .top-content .social .icon:hover {
  transform: scale(1.2);
  background-color: #E3EAF8;
}
footer .copyright .content {
  border-top: 1px solid #E0E4F3;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  footer .copyright .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .copyright .content .left .payment-types {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  footer .copyright .content .left .payment-types {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
footer .copyright .content .left .payment-types p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}
footer .copyright .content .left p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
footer .copyright .content .left a {
  color: #1B222A;
  font-size: 14px;
}
footer .copyright .content .right .legal-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .copyright .content .right .legal-menu li {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  border-left: 1px solid #AEAEAE;
  padding-left: 10px;
  margin-left: 8px;
}
@media only screen and (max-width: 768px) {
  footer .copyright .content .right .legal-menu li {
    padding-left: 10px;
    margin-left: 0px;
    margin-right: 8px;
  }
}
footer .copyright .content .right .legal-menu li:first-child {
  border-left: none;
}
@media only screen and (max-width: 768px) {
  footer .copyright .content .right .legal-menu li:first-child {
    padding-left: 0;
  }
}
footer .copyright .content .right .legal-menu li a {
  color: #1B222A;
}
footer .copyright .content .right .legal-menu li a:hover {
  color: #282B75;
}
footer .footer-logos {
  display: flex;
  margin: 20px 0 0 0;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  footer .footer-logos {
    margin: 20px 0 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer-logos {
    justify-content: center;
  }
}
footer .footer-logos img {
  height: auto;
  max-width: 100px;
  max-height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}

.home-hero {
  position: relative;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .home-hero {
    border-radius: 0 0 80px 80px;
  }
}
@media only screen and (max-width: 768px) {
  .home-hero {
    border-radius: 0 0 40px 40px;
  }
}
.home-hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero .video-container {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1 !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.home-hero .video-container video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-hero .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181A3F;
  z-index: 10;
}
.home-hero .content {
  position: relative;
  z-index: 20;
  padding: 275px 0 175px 0;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .home-hero .content {
    padding: 175px 0 75px 0;
  }
}
.home-hero .content h1,
.home-hero .content p {
  color: #fff;
}
.home-hero .content p {
  margin: 20px 0 0 0;
  padding: 0 12%;
}
@media only screen and (max-width: 576px) {
  .home-hero .content p {
    padding: 0;
  }
}
.home-hero .content .btn-secondary {
  margin: 30px 0 0 -38px;
}

.page-hero {
  position: relative;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .page-hero {
    border-radius: 0 0 80px 80px;
  }
}
@media only screen and (max-width: 768px) {
  .page-hero {
    border-radius: 0 0 40px 40px;
  }
}
.page-hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-hero .video-container {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1 !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.page-hero .video-container video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-hero .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181A3F;
  z-index: 10;
}
.page-hero .content {
  position: relative;
  z-index: 20;
  padding: 240px 0 140px 0;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .page-hero .content {
    padding: 175px 0 75px 0;
  }
}
.page-hero .content h1,
.page-hero .content p {
  color: #fff;
}
.page-hero .content p {
  margin: 20px 0 0 0;
  padding: 0 12%;
}
@media only screen and (max-width: 576px) {
  .page-hero .content p {
    padding: 0;
  }
}
.page-hero .content .btn-secondary {
  margin: 30px 0 0 -38px;
}

.cs-article-hero {
  background-color: #F3F7FF;
  padding: 240px 0 80px 0;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .cs-article-hero {
    padding: 200px 0 60px 0;
  }
}
@media only screen and (max-width: 768px) {
  .cs-article-hero {
    padding: 160px 0 60px 0;
  }
}
.cs-article-hero .project-type {
  background-color: #393939;
  color: #fff;
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 14px;
  margin: 0;
}
.cs-article-hero h1 {
  color: #282B75;
  margin: 30px 0 0 0;
}

.cta-strip {
  background-color: #282B75;
  padding: var(--size-md) 0;
}
.cta-strip .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .cta-strip .content {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .cta-strip .content {
    align-items: center;
  }
}
.cta-strip .content .left {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 55%;
}
@media only screen and (max-width: 992px) {
  .cta-strip .content .left {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .cta-strip .content .left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
.cta-strip .content .left h2 {
  color: #fff;
  margin: 0;
}
.cta-strip .content .left .icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  background-color: #fff;
  border-radius: 100px;
  background-image: url("./img/chat.svg");
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .cta-strip .content .left .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-size: 24px;
  }
}
.cta-strip .content .right {
  padding: 0 44px 0 0;
}
.cta-strip .content .right .btn-secondary:hover {
  background-color: #fff;
  color: #282B75;
}

.img-and-text.text-is-right .img-wrapper .overlay-badge {
  top: -30px;
  right: -30px;
}
@media only screen and (max-width: 992px) {
  .img-and-text.text-is-right .img-wrapper .overlay-badge {
    top: 10px;
    right: 10px;
  }
}
.img-and-text.text-is-left .img-wrapper .overlay-badge {
  top: -30px;
  left: -30px;
}
@media only screen and (max-width: 992px) {
  .img-and-text.text-is-left .img-wrapper .overlay-badge {
    top: 10px;
    left: 10px;
  }
}
.img-and-text .video-title {
  color: #282B75;
  font-size: 15px;
  margin: 20px auto 0 auto;
  text-align: center;
}
.img-and-text .image-caption {
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  margin: 20px auto 0 auto;
}
.img-and-text .img-wrapper {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .img-and-text .img-wrapper {
    margin-bottom: 30px;
  }
}
.img-and-text .img-wrapper .main-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.img-and-text .img-wrapper .overlay-badge {
  position: absolute;
  width: 180px;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .img-and-text .img-wrapper .overlay-badge {
    width: 100px;
    height: 100px;
  }
}
.img-and-text .content ul:not(.tick-list) {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 20px 0 30px 0;
}
.img-and-text .content ul:not(.tick-list) li {
  margin: 0 0 14px 0;
  position: relative;
  padding-left: 20px;
}
.img-and-text .content ul:not(.tick-list) li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #282B75;
  border-radius: 10px;
  top: 8px;
  left: 0;
}
.img-and-text .content ul:not(.tick-list) li:last-child {
  margin: 0;
}

.features h2 {
  text-align: center;
}
.features .feature-grid {
  padding: 30px 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 768px) {
  .features .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .features .feature-grid {
    grid-column-gap: 20px;
  }
}
.features .feature-grid.four-cols {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 992px) {
  .features .feature-grid.four-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .features .feature-grid.four-cols {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .features .feature-grid.four-cols {
    grid-column-gap: 20px;
  }
}
.features .feature-grid.five-cols {
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 992px) {
  .features .feature-grid.five-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .features .feature-grid.five-cols {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .features .feature-grid.five-cols {
    grid-column-gap: 20px;
  }
}
.features .feature-grid .feature-item {
  text-align: center;
}
.features .feature-grid .feature-item .icon-outer {
  width: 150px;
  height: 150px;
  border-radius: 200px;
  background: linear-gradient(135deg, #e9e9e9 0%, #c4c4c4 100%);
  position: relative;
  margin: 0 auto 20px auto;
}
@media only screen and (max-width: 768px) {
  .features .feature-grid .feature-item .icon-outer {
    width: 120px;
    height: 120px;
  }
}
.features .feature-grid .feature-item .icon-outer .icon-inner {
  background-color: #282B75;
  width: 130px;
  height: 130px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 200px;
}
@media only screen and (max-width: 768px) {
  .features .feature-grid .feature-item .icon-outer .icon-inner {
    width: 100px;
    height: 100px;
  }
}
.features .feature-grid .feature-item .icon-outer .icon-inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .features .feature-grid .feature-item .icon-outer .icon-inner img {
    width: 60px;
    height: auto;
  }
}
.features .feature-grid .feature-item p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .features .feature-grid .feature-item p {
    font-size: 16px;
  }
}
.features .finance-cta {
  background: linear-gradient(135deg, #e9e9e9 0%, #c4c4c4 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 300px;
  margin: 60px 0 0 0;
}
@media only screen and (max-width: 992px) {
  .features .finance-cta {
    flex-direction: column;
    padding: 20px 10px;
    border-radius: 8px;
    margin: 40px 0 0 0;
  }
}
.features .finance-cta .left {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .features .finance-cta .left {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.features .finance-cta .left p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .features .finance-cta .left p {
    font-size: 16px;
  }
}
.features .finance-cta .left .icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  margin: 0 30px 0 0;
  border-radius: 300px;
  background-image: url("./img/cards.svg");
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 992px) {
  .features .finance-cta .left .icon {
    margin: 0;
  }
}
.features .finance-cta .right {
  padding-right: 48px;
}
@media only screen and (max-width: 992px) {
  .features .finance-cta .right {
    padding-right: 0;
    margin-top: 20px;
  }
}

.cta-slider-block {
  overflow-x: hidden;
  padding-top: 4px;
  position: relative;
}
.cta-slider-block .split-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #F3F7FF;
  z-index: 1;
}
.cta-slider-block .content {
  position: relative;
  z-index: 2;
}
.cta-slider-block .slider-heading {
  display: flex;
  align-items: center;
  margin: 0 0 40px 0;
}
.cta-slider-block .slider-heading h2 {
  margin: 0;
}
.cta-slider-block .slider-heading .line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(40, 43, 117, 0.2);
  margin: 0 30px;
}
.cta-slider-block .slider-heading .controls {
  display: flex;
  gap: 14px;
}
.cta-slider-block .slider-heading .controls .left,
.cta-slider-block .slider-heading .controls .right {
  width: 56px;
  height: 56px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.cta-slider-block .slider-heading .controls .left:hover,
.cta-slider-block .slider-heading .controls .right:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  .cta-slider-block .slider-heading .controls .left,
  .cta-slider-block .slider-heading .controls .right {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 576px) {
  .cta-slider-block .slider-heading .controls .left,
  .cta-slider-block .slider-heading .controls .right {
    width: 38px;
    height: 38px;
  }
}
.cta-slider-block .slider-heading .controls .left {
  background-image: url("./img/left-arrow.svg");
}
.cta-slider-block .slider-heading .controls .right {
  background-image: url("./img/arrow-right.svg");
}
.cta-slider-block .cta-slider-slider {
  width: 180%;
}
@media only screen and (max-width: 768px) {
  .cta-slider-block .cta-slider-slider {
    width: 100%;
  }
}
.cta-slider-block .cta-slider-slider .slick-slide {
  margin: 0 20px;
}
.cta-slider-block .cta-slider-slider .slick-list {
  margin: 0 -20px;
}
.cta-slider-block .cta-slider-slider .card-outer .card-inner {
  width: 100%;
  padding-top: 60%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.cta-slider-block .cta-slider-slider .card-outer .card-inner img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.cta-slider-block .cta-slider-slider .card-outer .card-inner .filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(50, 53, 132, 0) 0%, rgb(50, 53, 132) 100%);
  top: 0;
  left: 0;
  z-index: 3;
}
.cta-slider-block .cta-slider-slider .card-outer .card-inner .content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: calc(100% - 60px);
  z-index: 4;
}
.cta-slider-block .cta-slider-slider .card-outer .card-inner .content h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 20px 0;
}
.cta-slider-block .cta-slider-slider .card-outer .card-inner .content .btn-secondary:hover {
  color: #282B75;
  background-color: #fff;
}

.recent-projects .intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 992px) {
  .recent-projects .intro {
    flex-direction: column;
    align-items: start;
  }
}
.recent-projects .intro .left {
  width: 60%;
}
@media only screen and (max-width: 992px) {
  .recent-projects .intro .left {
    width: 100%;
  }
}
.recent-projects .intro .left h3 {
  color: #282B75;
  margin: 0 0 20px 0;
}
.recent-projects .intro .right {
  padding-right: 30px;
}
.recent-projects .project-type {
  background-color: #393939;
  color: #fff;
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 14px;
  margin: 0;
}
.recent-projects h4 {
  font-size: 22px;
  font-weight: 500;
  color: #282B75;
  margin: 30px 0;
}
.recent-projects .cs-lg {
  background-color: #fff;
  position: relative;
  display: flex;
  border-radius: 10px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
  .recent-projects .cs-lg {
    flex-direction: column;
  }
}
.recent-projects .cs-lg .img-bg {
  width: 66.6666%;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .recent-projects .cs-lg .img-bg {
    width: 100%;
  }
}
.recent-projects .cs-lg .img-bg .cs-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px 0 0 10px;
}
@media only screen and (max-width: 992px) {
  .recent-projects .cs-lg .img-bg .cs-img {
    border-radius: 10px 10px 0 0;
  }
}
.recent-projects .cs-lg .img-bg .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  z-index: 2;
  background-image: url("./img/video.svg");
  background-size: contain;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.recent-projects .cs-lg .img-bg .video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.recent-projects .cs-lg .content {
  width: 33.3333%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .recent-projects .cs-lg .content {
    width: 100%;
    padding: 0 30px 30px 30px;
    margin-top: -20px;
    z-index: 3;
  }
}
.recent-projects .cs-lg .content .btn-primary {
  display: inline-flex;
  width: auto;
  align-self: flex-start;
}
.recent-projects .cs-sm {
  margin-bottom: 24px;
}
.recent-projects .cs-sm .img {
  width: 100%;
  padding-top: 70%;
  position: relative;
}
.recent-projects .cs-sm .img .cs-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px 10px 0 0;
}
.recent-projects .cs-sm .img .project-type {
  position: absolute;
  bottom: -17px;
  left: 30px;
}
.recent-projects .cs-sm .img .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  z-index: 2;
  background-image: url("./img/video.svg");
  background-size: contain;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.recent-projects .cs-sm .img .video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.recent-projects .cs-sm .content {
  background-color: #fff;
  padding: 40px 30px 40px 30px;
  border-radius: 0 0 10px 10px;
}
.recent-projects .cs-sm .content h4 {
  margin: 0 0 20px 0;
}

.recent-news h3 {
  color: #282B75;
  text-align: center;
  margin: 0 0 60px 0;
  font-weight: 500;
  font-size: 31px;
}
@media only screen and (max-width: 768px) {
  .recent-news h3 {
    margin: 0 0 30px 0;
  }
}
.recent-news .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}
@media only screen and (max-width: 992px) {
  .recent-news .news-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .recent-news .news-grid {
    grid-row-gap: 30px;
  }
}
.recent-news .news-grid .article {
  text-align: center;
  padding: 0 20px;
}
.recent-news .news-grid .article h4 {
  color: #282B75;
  margin: 30px 0 20px 0;
}
.recent-news .news-grid .article .post-img {
  width: 150px;
  height: 150px;
  border-radius: 300px;
  background-size: cover;
  background-position: center;
}
.recent-news .news-grid .article p:last-child {
  margin: 0;
}

.cta-cards-listing .cta-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 768px) {
  .cta-cards-listing .cta-card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cta-cards-listing .cta-card-grid.three-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .cta-cards-listing .cta-card-grid.three-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cta-cards-listing .cta-card-grid .be-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 60% 30px 30px 30px;
}
.cta-cards-listing .cta-card-grid .be-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.cta-cards-listing .cta-card-grid .be-card .content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 60px);
  z-index: 10;
}
.cta-cards-listing .cta-card-grid .be-card .content h3 {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 992px) {
  .cta-cards-listing .cta-card-grid .be-card .content h3 {
    font-size: 20px;
  }
}
.cta-cards-listing .cta-card-grid .be-card .content .btn-secondary:hover {
  background-color: #fff;
  color: #282B75;
}
.cta-cards-listing .cta-card-grid .be-card .filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(50, 53, 132, 0) 0%, rgb(50, 53, 132) 100%);
  top: 0;
  left: 0;
  z-index: 3;
}

.service-content .content-side {
  padding: 0 0 0 30px;
}
@media only screen and (max-width: 992px) {
  .service-content .content-side {
    padding: 0;
  }
}
.service-content .content-side img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.service-content .content-side p:first-of-type {
  font-size: 20px;
  line-height: 1.6;
}
.service-content .content-side p a {
  color: #282B75;
  text-decoration: underline;
}
.service-content .content-side p a:hover {
  opacity: 0.7;
}
.service-content .content-side h1,
.service-content .content-side h2,
.service-content .content-side h3,
.service-content .content-side h4,
.service-content .content-side h5,
.service-content .content-side h6 {
  color: #282B75;
  font-weight: 500;
}
.service-content .content-side h1:first-child,
.service-content .content-side h2:first-child,
.service-content .content-side h3:first-child,
.service-content .content-side h4:first-child,
.service-content .content-side h5:first-child,
.service-content .content-side h6:first-child {
  margin-bottom: 20px;
}
.service-content .cta-card {
  width: 100%;
  position: relative;
  padding: 120px 20px;
  border-radius: 10px;
  overflow: hidden;
}
.service-content .cta-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-content .cta-card .content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.service-content .cta-card .content h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
}
.service-content .cta-card .content p {
  color: #fff;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 500;
  margin: 30px 0;
}
.service-content .cta-card .content .btn-secondary {
  margin-left: -20px;
}
.service-content .cta-card .content .btn-secondary:hover {
  background-color: #fff;
  color: #282B75;
}
.service-content .cta-card .filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(40, 43, 117, 0.8);
  z-index: 2;
}
.service-content .sidebar-menu {
  background-color: #D7D7D7;
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .service-content .sidebar-menu {
    margin-top: 30px;
  }
}
.service-content .sidebar-menu a {
  display: block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #282B75;
  padding: 15px 28px;
  border-radius: 60px;
  position: relative;
}
.service-content .sidebar-menu a:hover {
  background-color: #282B75;
  color: #fff;
}
.service-content .sidebar-menu a:hover .blue {
  opacity: 0;
  right: 18px;
}
.service-content .sidebar-menu a:hover .white {
  right: 18px;
}
.service-content .sidebar-menu a .blue {
  position: absolute;
  background-image: url("./img/blue-arrow.svg");
  width: 30px;
  height: 30px;
  right: 26px;
  top: 11px;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 4;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.service-content .sidebar-menu a .white {
  position: absolute;
  background-image: url("./img/white-arrow.svg");
  width: 30px;
  height: 30px;
  right: 26px;
  top: 11px;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 2;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.service-content .sidebar-menu a:last-child {
  margin-bottom: 0;
}

.related-projects .intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 992px) {
  .related-projects .intro {
    flex-direction: column;
    align-items: start;
  }
}
.related-projects .intro .left {
  width: 60%;
}
@media only screen and (max-width: 992px) {
  .related-projects .intro .left {
    width: 100%;
  }
}
.related-projects .intro .left h3 {
  color: #282B75;
  margin: 0 0 20px 0;
}
.related-projects .intro .right {
  padding-right: 30px;
}
.related-projects .related-pros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 992px) {
  .related-projects .related-pros-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.related-projects .related-pros-grid .cs-sm {
  margin-bottom: 24px;
}
.related-projects .related-pros-grid .cs-sm .img {
  width: 100%;
  padding-top: 70%;
  position: relative;
}
.related-projects .related-pros-grid .cs-sm .img .cs-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px 10px 0 0;
}
.related-projects .related-pros-grid .cs-sm .img .project-type {
  position: absolute;
  bottom: -17px;
  left: 30px;
}
.related-projects .related-pros-grid .cs-sm .img .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  z-index: 2;
  background-image: url("./img/video.svg");
  background-size: contain;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.related-projects .related-pros-grid .cs-sm .img .video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.related-projects .related-pros-grid .cs-sm .content {
  background-color: #fff;
  padding: 40px 30px 40px 30px;
  border-radius: 0 0 10px 10px;
}
.related-projects .related-pros-grid .cs-sm .content h4 {
  margin: 0 0 20px 0;
  color: #282B75;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.related-projects .related-pros-grid .cs-sm .content h4:hover {
  opacity: 0.7;
}
.related-projects .project-type {
  background-color: #393939;
  color: #fff;
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 14px;
  margin: 0;
}

.cs-listing .cs-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 64px;
}
@media only screen and (max-width: 992px) {
  .cs-listing .cs-full-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .cs-listing .cs-full-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cs-listing .cs-full-grid .cs-sm .img {
  width: 100%;
  padding-top: 70%;
  position: relative;
}
.cs-listing .cs-full-grid .cs-sm .img .cs-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px 10px 0 0;
}
.cs-listing .cs-full-grid .cs-sm .img .project-type {
  position: absolute;
  bottom: -17px;
  left: 30px;
}
.cs-listing .cs-full-grid .cs-sm .img .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  z-index: 2;
  background-image: url("./img/video.svg");
  background-size: contain;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.cs-listing .cs-full-grid .cs-sm .img .video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.cs-listing .cs-full-grid .cs-sm .project-type {
  background-color: #393939;
  color: #fff;
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 14px;
  margin: 0;
}
.cs-listing .cs-full-grid .cs-sm .content {
  background-color: #fff;
  padding: 40px 30px 40px 30px;
  border-radius: 0 0 10px 10px;
}
.cs-listing .cs-full-grid .cs-sm .content h4 {
  margin: 0 0 20px 0;
  color: #282B75;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.cs-listing .cs-full-grid .cs-sm .content h4:hover {
  opacity: 0.7;
}
.cs-listing .cs-filter {
  background-color: #D7D7D7;
  border-radius: 200px;
  margin: 0 0 80px 60px;
  padding: 20px 30px;
  width: calc(100% - 120px);
}
@media only screen and (max-width: 992px) {
  .cs-listing .cs-filter {
    display: none;
  }
}
.cs-listing .cs-filter .search-filter-label {
  display: none;
}
.cs-listing .cs-filter .search-filter-input-group {
  display: flex;
  gap: 60px;
}
.cs-listing .cs-filter .search-filter-input-group .search-filter-input-radio__control {
  display: none;
}
.cs-listing .cs-filter .search-filter-input-group .search-filter-input-radio__label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #282B75;
}
.cs-listing .cs-filter .search-filter-input-group .search-filter-input-radio__label::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  margin: 0 10px 0 0;
  border-radius: 20px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.cs-listing .cs-filter .search-filter-input-group .search-filter-input-radio__label:hover::before {
  background-color: #282B75;
}
.cs-listing .cs-filter .search-filter-input-group .search-filter-input-radio--is-active .search-filter-input-radio__label::before {
  background-color: #282B75;
}
.cs-listing .pager-navigation {
  margin: 60px 0 0 0;
  text-align: center;
}
.cs-listing .pager-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cs-listing .pager-navigation ul li {
  display: inline-block;
  margin: 0 10px;
}
.cs-listing .pager-navigation ul li a {
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background-color: #fff;
  color: #282B75;
  font-weight: 500;
  font-size: 15px;
  border-radius: 40px;
}
.cs-listing .pager-navigation ul li a:hover {
  background-color: #282B75;
  color: #fff;
}
.cs-listing .pager-navigation ul li.active a {
  background-color: #282B75;
  color: #fff;
}
.cs-listing .cs-mob-filter {
  margin-bottom: 30px;
  display: none;
}
@media only screen and (max-width: 992px) {
  .cs-listing .cs-mob-filter {
    display: block;
  }
}
.cs-listing .cs-mob-filter .search-filter-component-combobox-base {
  background-color: #D7D7D7;
  padding: 6px 0 6px 20px;
  border: 1px solid #7f7f7f;
}
.cs-listing .cs-mob-filter ::-moz-placeholder {
  color: #282B75 !important;
  font-size: 15px !important;
  font-weight: 500;
}
.cs-listing .cs-mob-filter ::placeholder {
  color: #282B75 !important;
  font-size: 15px !important;
  font-weight: 500;
}

.cs-hero-img {
  position: relative;
}
.cs-hero-img .bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F3F7FF;
  width: 100%;
  height: 50%;
  border-radius: 0 0 100px 100px;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .cs-hero-img .bg {
    border-radius: 0 0 60px 60px;
  }
}
@media only screen and (max-width: 768px) {
  .cs-hero-img .bg {
    border-radius: 0 0 30px 30px;
  }
}
.cs-hero-img .img-wrapper {
  position: relative;
  z-index: 3;
}
.cs-hero-img .img-wrapper .hero-img {
  width: 100%;
  height: auto;
  min-width: 100%;
  border-radius: 10px;
}
.cs-hero-img .img-wrapper .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  z-index: 2;
  background-image: url("./img/video.svg");
  background-size: contain;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.cs-hero-img .img-wrapper .video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.cs-article-post-content {
  padding: var(--size-lg) 0;
}
.cs-article-post-content p:first-child {
  font-size: 20px;
  line-height: 1.6;
}
.cs-article-post-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
}
.cs-article-post-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cs-article-post-content ul li {
  padding: 0 0 0 16px;
  position: relative;
}
.cs-article-post-content ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 8px;
  background-color: #282B75;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
}
.cs-article-post-content .cs-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  padding-top: 60px;
}
@media only screen and (max-width: 768px) {
  .cs-article-post-content .cs-gallery {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
.cs-article-post-content .cs-gallery .gallery-item .img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cs-article-post-content .cs-gallery .gallery-item .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  border-radius: 0;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.cs-article-post-content .cs-gallery .gallery-item .img-wrap:hover img {
  transform: scale(1.1);
}
.cs-article-post-content .cs-gallery .gallery-item h6 {
  text-align: center;
  margin: 20px 0 0 0;
  font-size: 16px;
}

.be-text-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
}

.error-screen {
  padding: 200px 0 100px 0;
  text-align: center;
}
.error-screen h1 {
  color: #282B75;
  font-size: 140px;
  font-weight: 900;
}
@media only screen and (max-width: 992px) {
  .error-screen h1 {
    font-size: 60px;
  }
}
.error-screen h3 {
  color: #282B75;
}

.contact-info .intro {
  text-align: center;
  margin-bottom: 60px;
}
.contact-info .intro h2 {
  font-size: 22px;
  padding: 0 10%;
  line-height: 1.6;
}
.contact-info .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
@media only screen and (max-width: 992px) {
  .contact-info .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .contact-info .contact-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .contact-info .contact-grid .office {
    text-align: center;
  }
}
.contact-info .contact-grid .office .address {
  background-image: url("./img/pin-icon.svg");
  background-repeat: no-repeat;
  padding: 14px 0 0 70px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .contact-info .contact-grid .office .address {
    padding: 70px 0 0 0;
    background-position: top center;
  }
}
.contact-info .contact-grid .office .address h4 {
  color: #282B75;
  font-size: 22px;
  font-weight: 500;
}
.contact-info .contact-grid .office .address p {
  color: #282B75;
}
.contact-info .contact-grid .office .phone {
  background-image: url("./img/phone-icon-two.svg");
  background-repeat: no-repeat;
  padding: 14px 0 0 70px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .contact-info .contact-grid .office .phone {
    padding: 70px 0 0 0;
    background-position: top center;
  }
}
.contact-info .contact-grid .office .phone h5 {
  font-size: 12px;
  font-weight: 500;
  color: #282B75;
}
.contact-info .contact-grid .office .phone a {
  color: #282B75;
  font-weight: 500;
  font-size: 16px;
}
.contact-info .contact-grid .office .phone a:hover {
  opacity: 0.7;
}
.contact-info .contact-grid .office .email {
  background-image: url("./img/email-icon-two.svg");
  background-repeat: no-repeat;
  padding: 14px 0 0 70px;
}
@media only screen and (max-width: 768px) {
  .contact-info .contact-grid .office .email {
    padding: 70px 0 0 0;
    background-position: top center;
  }
}
.contact-info .contact-grid .office .email h5 {
  font-size: 12px;
  font-weight: 500;
  color: #282B75;
}
.contact-info .contact-grid .office .email a {
  color: #282B75;
  font-weight: 500;
  font-size: 16px;
}
.contact-info .contact-grid .office .email a:hover {
  opacity: 0.7;
}

.careers-listing {
  background-color: #282B75;
  padding: var(--size-lg) 0;
  border-radius: 100px 100px 0 0;
}
.careers-listing .intro {
  color: #fff;
  margin-bottom: 60px;
}
.careers-listing .intro h3 {
  font-size: 31px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 992px) {
  .careers-listing .intro h3 {
    font-size: 28px;
  }
}
.careers-listing .intro p a {
  color: #fff;
  text-decoration: underline;
}
.careers-listing .intro p a:hover {
  text-decoration: none;
}
.careers-listing .jobs {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
.careers-listing .jobs .job-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
.careers-listing .jobs .job-item h5 {
  color: #282B75;
  font-weight: 500;
}
.careers-listing .jobs .job-item p:last-child {
  margin: 0;
}

.gallery-block .gallery-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
@media only screen and (max-width: 992px) {
  .gallery-block .gallery-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .gallery-block .gallery-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
.gallery-block .gallery-wrap .gallery-item .img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.gallery-block .gallery-wrap .gallery-item .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.gallery-block .gallery-wrap .gallery-item .img-wrap:hover img {
  transform: scale(1.1);
}
.gallery-block .gallery-wrap .gallery-item h6 {
  text-align: center;
  margin: 18px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .gallery-block .gallery-wrap .gallery-item h6 {
    font-size: 14px;
    margin: 20px 0;
  }
}
.gallery-block .gallery-filter {
  background-color: #D7D7D7;
  border-radius: 200px;
  margin: 0 0 80px 60px;
  padding: 20px 30px;
  width: calc(100% - 120px);
  display: flex;
  gap: 60px;
}
@media only screen and (max-width: 992px) {
  .gallery-block .gallery-filter {
    display: none;
  }
}
.gallery-block .gallery-filter button {
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #282B75;
}
.gallery-block .gallery-filter button::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  margin: 0 10px 0 0;
  border-radius: 20px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.gallery-block .gallery-filter button.active::before {
  background-color: #282B75;
}
.gallery-block .gallery-filter-select {
  display: none;
  width: 100%;
  margin-bottom: 30px;
}
.gallery-block .gallery-filter-select select {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  background-color: #D7D7D7;
  padding-right: 10px !important;
  border: 1px solid #7f7f7f;
  border-radius: 3px;
  color: #282B75;
  font-weight: 500;
  outline: none;
}
@media only screen and (max-width: 992px) {
  .gallery-block .gallery-filter-select {
    display: block;
  }
}

.btn-primary {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #282B75;
  padding: 11px 30px;
  border-radius: 60px;
}
.btn-primary::after {
  content: "";
  width: 44px;
  height: 44px;
  background-color: #D20D15;
  position: absolute;
  top: 0;
  right: -30px;
  background-image: url("./img/btn-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: #282B75;
}
.btn-primary:hover::after {
  transform: rotate(45deg);
  right: -44px;
}

.btn-secondary {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #282B75;
  background-color: #fff;
  padding: 11px 30px;
  border-radius: 60px;
}
.btn-secondary::after {
  content: "";
  width: 44px;
  height: 44px;
  background-color: #D20D15;
  position: absolute;
  top: 0;
  right: -30px;
  background-image: url("./img/btn-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.btn-secondary:hover {
  background-color: #282B75;
}
.btn-secondary:hover::after {
  transform: rotate(45deg);
  right: -44px;
}/*# sourceMappingURL=style.css.map */