@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden !important;
  position: relative;
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

p {
  font-size: 1em;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

.pagination {
  height: 85px;
  z-index: -1;
  margin-top: -85px;
}

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

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

.affix {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0;
  width: 100%;
  transition: 0.5s ease-in-out;
  animation: affix_animation 0.6s ease-in-out;
  -webkit-animation: affix_animation 0.6s ease-in-out;
  z-index: 999;
  background-color: #f2f2f2;
  margin: 0 !important;
}
@keyframes affix_animation {
  0% {
    margin-top: -7.5rem;
    opacity: 0;
  }
  50% {
    margin-top: -4rem;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.overall-space {
  margin-left: 2em;
  margin-right: 2em;
}

@media (min-width: 0px) and (max-width: 992px) {
  .container {
    max-width: 95% !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 90%;
  }
  .container-fluid {
    max-width: 95%;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 1.1vw;
  }
  .container {
    max-width: 90%;
  }
}
.bg-dark {
  background-color: #010101 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.error-class {
  background: transparent;
  height: 30px;
  display: block;
  color: #f70935;
  font-weight: 400;
  line-height: 1.1;
  padding-top: 3px;
  font-size: 0.8em;
}

.success {
  color: #2ae42a;
  margin-top: 1em;
}

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

.form-control:focus,
.form-select:focus {
  box-shadow: none;
}

.bg-gray {
  background-color: #f9f9f9;
}

.send-btn {
  background-color: #00407D;
  color: #FFFFFF;
  padding: 6px 25px;
  text-transform: capitalize;
  border-radius: 0;
  transition: 0.4s all ease-in-out;
}
.send-btn:hover {
  background-color: #033666;
  color: #FFFFFF;
}
.send-btn:focus {
  background-color: #033666;
  color: #FFFFFF;
}

.view-btn {
  background-color: #00407D;
  color: #FFFFFF;
  padding: 6px 25px;
  width: auto;
  margin: 0 auto;
  color: #FFFFFF !important;
  font-size: 1.2em;
  letter-spacing: 0.5px;
}

.navbar-toggler {
  display: block;
}
.navbar-toggler:focus {
  border: none;
  outline: none;
  box-shadow: unset;
}

#main-navbar {
  padding: 10px 0;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1607843137);
  background-color: #f2f2f2;
}
#main-navbar .logo img {
  width: 147px;
  height: 51px;
}
#main-navbar .call-to-action li {
  font-weight: 300;
}
#main-navbar .call-to-action li:not(:last-child) {
  margin-right: 10px;
}
#main-navbar .call-to-action li .contact-btn {
  color: #000;
  font-weight: 300;
  font-size: 0.9em;
  text-transform: capitalize;
}
#main-navbar .call-to-action li .toggle-menu {
  color: #000;
  font-weight: 700;
}
#main-navbar .call-to-action li .toggle-menu:hover {
  cursor: pointer;
}
#main-navbar .call-to-action li .toggle-menu img {
  width: 24px;
  height: 24px;
  margin-left: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-navbar .call-to-action .navbar-toggler {
  padding: 0;
  border: none;
  margin: 0;
  color: #000;
  font-weight: 700;
  font-size: 1em;
}
#main-navbar .call-to-action .navbar-toggler:focus {
  outline: none !important;
  border: none;
}
#main-navbar .toggle-button-inner {
  height: 40px;
  display: flex;
  align-items: center;
}

#mega-menu {
  background: #f2f2f2;
  /* breakpoint and up - mega dropdown styles */
}
@media (max-width: 991px) {
  #mega-menu {
    height: -moz-max-content;
    height: max-content;
    transform: translateX(100%);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    width: 100%;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    transition: all 0.2s ease-in;
  }
  #mega-menu.mobile-menu-open {
    transform: translateX(0);
    display: block;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991.98px) {
  #mega-menu .navbar-nav {
    flex-direction: row;
  }
}
@media (max-width: 991px) {
  #mega-menu .dropdown-menu-image {
    display: none;
  }
}
@media (min-width: 992px) {
  #mega-menu {
    transform: translateY(-100%);
    z-index: -1;
    min-height: -moz-max-content !important;
    min-height: max-content !important;
    height: 50%;
    position: fixed;
    bottom: 0;
    top: 60px;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
    padding: 20px 0;
  }
  #mega-menu .dropdown-menu {
    margin-top: 2em !important;
  }
  #mega-menu .dropdown-menu-image {
    margin-top: 30px !important;
    margin: 0 20px;
  }
  #mega-menu .dropdown-menu-image .image img {
    border-radius: 10px;
  }
  #mega-menu .dropdown-toggle::after {
    border: none;
    content: "";
    position: absolute;
    left: 0;
    bottom: -80px;
    min-height: 80px;
    background: #fff;
    z-index: -1;
    width: 150px;
  }
}
#mega-menu .navbar .navbar-nav {
  justify-content: space-between;
  width: 100%;
}
#mega-menu .navbar .navbar-nav .content {
  margin-left: 1em;
  margin-top: -10px;
}
@media (max-width: 767.98px) {
  #mega-menu .navbar .navbar-nav .content {
    margin-bottom: 10px;
  }
}
#mega-menu .navbar .navbar-nav .content li a {
  color: #000;
  line-height: 2;
  font-size: 1.5em;
  font-weight: 300;
}
@media (max-width: 991.98px) {
  #mega-menu .navbar .navbar-nav .content li a {
    font-size: 1em;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  #mega-menu .navbar .navbar-nav .content li a {
    font-weight: 300;
    font-size: 0.9em;
  }
}
#mega-menu .navbar .navbar-nav .nav-link {
  color: #000;
  font-weight: 300;
  font-size: 1.75em;
  line-height: 2.5;
  text-transform: capitalize;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 991.98px) {
  #mega-menu .navbar .navbar-nav .nav-link {
    font-size: 1.05em;
    line-height: 2;
    padding-left: 5px;
  }
}
@media (max-width: 767.98px) {
  #mega-menu .navbar .navbar-nav .nav-link {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5;
  }
}
#mega-menu .navbar .navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  background-color: #00407D;
  width: 2.5px;
  height: 40%;
  top: 50%;
  transform: translateY(-50%);
  left: -0.25em;
  right: 0;
  z-index: -1;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
#mega-menu .navbar .navbar-nav .nav-link:hover:before {
  opacity: 1 !important;
}
#mega-menu .navbar .navbar-nav .active .nav-link:before {
  content: "";
  position: absolute;
  background-image: url("/img/shapes/Polygon_yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.2em;
  height: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  left: -0.25em;
  right: 0;
  z-index: -1;
  opacity: 1;
  transition: 0.3 all ease-in-out;
  opacity: 1;
}
@media (min-width: 1201px) {
  #mega-menu .navbar .navbar-nav .dropdown .dropdown-menu {
    border: 1px solid #eeeeee;
    box-shadow: 0px 3px 20px rgba(109, 127, 224, 0.15);
    border-radius: 5px;
    left: 6px;
    visibility: hidden;
    opacity: 0;
    display: block;
    transition: 0.15s all ease-in-out;
    -webkit-transition: 0.15s all ease-in-out;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
  }
  #mega-menu .navbar .navbar-nav .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  #mega-menu .navbar .navbar-nav .login-button {
    margin-left: 0em;
  }
}
#mega-menu .navbar .navbar-nav .dropdown-menu {
  background: #fff !important;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px !important;
}
#mega-menu .navbar .navbar-nav .dropdown-item {
  position: relative;
  text-transform: lowercase;
  color: #000;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0px !important;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
#mega-menu .navbar .navbar-nav .dropdown-item:not(:last-child) {
  margin-bottom: 15px !important;
}
#mega-menu .navbar .navbar-nav .dropdown-item:hover {
  color: #BF044A;
}
@media (min-width: 0px) and (max-width: 991px) {
  #mega-menu .navbar .navbar-nav .dropdown-item {
    text-align: center;
  }
}
#mega-menu .navbar .navbar-nav .dropdown-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background: #BF044A;
  transform: translateX(-100%);
  transition: all 0.2s ease-in-out;
}
#mega-menu .navbar .navbar-nav .dropdown-item:hover {
  background-color: transparent;
}
#mega-menu .navbar .navbar-nav .dropdown-item:hover:after {
  transform: translateX(0);
}
#mega-menu .navbar .navbar-nav .each-menu-block .icon {
  margin-bottom: 10px;
}
#mega-menu .navbar .navbar-nav .each-menu-block h4 {
  font-weight: 700;
  text-transform: lowercase;
  position: relative;
  margin-bottom: 30px;
}
#mega-menu .navbar .navbar-nav .each-menu-block h4 span {
  color: #000;
  font-weight: 500;
  font-size: 18px;
}
#mega-menu .navbar .navbar-nav .each-menu-block h4:after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 120px;
  background: #000;
  height: 2px;
  left: 0;
}
#mega-menu .navbar .navbar-nav .each-menu-block .menu-list-items {
  margin-top: 15px;
}
#mega-menu .navbar .navbar-nav .each-menu-block .menu-list-items li:not(:last-child) {
  margin-bottom: 15px;
}
#mega-menu .navbar .navbar-nav .each-menu-block .menu-list-items li a {
  color: #000;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
#mega-menu .navbar .navbar-nav .each-menu-block .menu-list-items li a:hover {
  color: #000;
}
@media screen and (min-width: 1199px) {
  #mega-menu {
    /* remove the padding from the navbar so the dropdown hover state is not broken */
    /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
    /* makes the dropdown full width  */
    /* shows the dropdown menu on hover */
  }
  #mega-menu .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  #mega-menu .navbar .nav-item {
    padding: 0.5rem 0.5rem;
    margin: 0 0.25rem;
  }
  #mega-menu .navbar .dropdown {
    position: static;
  }
  #mega-menu .navbar .dropdown-menu {
    width: auto;
    left: auto !important;
    /*  height of nav-item  */
    top: 30px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
  }
  #mega-menu .navbar .dropdown:hover .dropdown-menu,
  #mega-menu .navbar .dropdown .dropdown-menu:hover {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s linear;
  }
  #mega-menu .navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
  }
}
#mega-menu .logo img {
  width: 200px;
}
#mega-menu .call-to-action li:not(:last-child) {
  margin-right: 5px;
}
#mega-menu .call-to-action li .request-btn {
  color: #000;
  font-weight: 700;
  font-size: 0.9em;
}
#mega-menu .call-to-action li .toggle-menu {
  color: #000;
  font-weight: 700;
}
#mega-menu .call-to-action li .toggle-menu:hover {
  cursor: pointer;
}
#mega-menu .call-to-action li .toggle-menu img {
  width: 20px;
  margin-left: 5px;
}

.menu-open {
  opacity: 1 !important;
  transform: translateY(0) !important;
  min-height: 200px !important;
  z-index: 9999999999999 !important;
  display: block !important;
  transform: translateY(0);
}

.animated-icon2 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.animated-icon2:focus {
  border: none;
  box-shadow: none;
}
.animated-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: #000;
}
.animated-icon2 span:nth-child(1) {
  top: 0px;
}
.animated-icon2 span:nth-child(2) {
  top: 10px;
}
.animated-icon2 span:nth-child(3) {
  top: 10px;
}
.animated-icon2 span:nth-child(4) {
  top: 20px;
}

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}
.animated-icon2.open span:nth-child(2) {
  transform: rotate(45deg);
}
.animated-icon2.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

footer {
  padding: 4em 0;
  background: #232323;
}
@media (max-width: 991.98px) {
  footer {
    padding: 3em 0;
  }
}
@media (max-width: 767.98px) {
  footer {
    padding: 2em 0;
  }
}
footer .each-block {
  color: #fff;
}
@media (max-width: 991.98px) {
  footer .each-block {
    margin-bottom: 1em;
  }
}
footer .each-block .address:nth-of-type(3) {
  display: none;
}
footer .each-block .logo {
  margin-bottom: 1em;
}
footer .each-block .logo img {
  width: 147px;
  height: 51px;
}
footer .each-block h4 {
  line-height: 1.5;
  margin-bottom: 5px;
  font-size: 1.1em;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  footer .each-block h4 {
    margin-top: 0;
  }
}
footer .each-block p {
  line-height: 1.5;
  margin-bottom: 2em;
  font-size: 1em;
  font-weight: 200;
  color: #FFFFFF;
}
footer .each-block a {
  color: #FFFFFF;
  font-weight: 200;
  transition: 0.4s all ease-in-out;
}
footer .each-block a:hover {
  color: white;
}
footer .social-links {
  margin-top: 1em;
  display: flex;
  gap: 2em;
}
footer .social-links img {
  height: 20px;
}
@media (min-width: 2000px) {
  footer .social-links img {
    height: 30px;
  }
}
footer .social-links li:first-child img {
  width: 11px;
}
@media (min-width: 2000px) {
  footer .social-links li:first-child img {
    width: 17px;
  }
}
footer .social-links li:nth-of-type(2) img {
  width: 20px;
}
@media (min-width: 2000px) {
  footer .social-links li:nth-of-type(2) img {
    width: 30px;
  }
}
footer .social-links li:nth-of-type(3) img {
  width: 25px;
}
@media (min-width: 2000px) {
  footer .social-links li:nth-of-type(3) img {
    width: 37px;
  }
}
footer .social-links li:nth-of-type(4) img {
  width: 25px;
}
@media (min-width: 2000px) {
  footer .social-links li:nth-of-type(4) img {
    width: 38px;
  }
}
footer .other-links {
  margin-top: 0.75em;
}
@media (max-width: 991.98px) {
  footer .other-links {
    margin-top: 0.5em;
  }
}
footer .other-links li {
  line-height: 2;
}
@media (max-width: 575.98px) {
  footer .other-links li {
    line-height: 1.75;
  }
}
footer .other-links li a {
  color: #fff;
  font-weight: 200;
  font-size: 1.1em;
  transition: 0.5s all ease-in-out;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  footer .other-links li a {
    font-size: 0.9em;
  }
}
footer .other-links li a:hover {
  color: #FFFFFF;
}
footer .other-links p {
  font-weight: 300;
  color: #F4F4F0;
  font-size: 0.9em;
}
footer #app1 {
  margin-top: 0.9em;
}
footer #app1 .blocks {
  display: grid;
  grid-template-columns: 75% 25%;
  gap: 0;
}
@media (max-width: 575.98px) {
  footer #app1 .blocks {
    grid-template-columns: 58% 25%;
  }
}
footer #app1 input, footer #app1 button, footer #app1 .send-btn {
  border-radius: 0;
}
@media (min-width: 2000px) {
  footer #app1 input, footer #app1 button, footer #app1 .send-btn {
    line-height: 2;
  }
}
footer #app1 .send-btn {
  background-color: #00407D !important;
}
footer .success {
  margin-top: 0 !important;
  margin-bottom: 1em;
}
footer .error-class {
  height: 25px;
}

.copy-right {
  background: #fff;
  padding: 1em 0;
}
.copy-right .txt p {
  color: #000000;
  font-weight: 300;
  font-size: 1.15em;
}
@media (max-width: 575.98px) {
  .copy-right .txt p {
    font-size: 1em;
  }
}
@media (max-width: 320px) {
  .copy-right .txt p {
    font-size: 0.9em;
  }
}
.copy-right .txt .powered {
  text-align: right;
}
@media (max-width: 991.98px) {
  .copy-right .txt .powered {
    text-align: center;
    margin-top: 1em;
  }
}
.copy-right .txt .powered a {
  color: #FFDB12;
  font-weight: 400;
}

.map {
  margin-bottom: -15px;
}

#about-home {
  position: relative;
  padding: 0 0 3em;
  margin-top: -21.5em;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #about-home {
    margin-top: -15.6em;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  #about-home {
    margin-top: -14.5em;
  }
}
@media (max-width: 991.98px) {
  #about-home {
    margin-top: -11.3em;
    padding: 0 0 1em;
  }
}
@media (max-width: 767.98px) {
  #about-home {
    margin-top: -8.5em;
  }
}
@media (max-width: 575.98px) {
  #about-home {
    margin-top: -6.2em;
  }
}
@media (max-width: 400px) {
  #about-home {
    margin-top: -5.3em;
    padding: 0;
  }
}
@media (max-width: 320px) {
  #about-home {
    margin-top: -4.65em;
    padding: 0;
  }
}
#about-home .main-heading h1 {
  font-size: 10em;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 30px;
  margin-bottom: 0;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #about-home .main-heading h1 {
    font-size: 6em;
  }
}
@media (max-width: 991.98px) {
  #about-home .main-heading h1 {
    font-size: 5em;
    letter-spacing: 25px;
  }
}
@media (max-width: 767.98px) {
  #about-home .main-heading h1 {
    font-size: 3.75em;
    letter-spacing: 20px;
  }
}
@media (max-width: 575.98px) {
  #about-home .main-heading h1 {
    font-size: 2.5em;
    letter-spacing: 10px;
  }
}
@media (max-width: 400px) {
  #about-home .main-heading h1 {
    font-size: 2em;
    letter-spacing: 8px;
  }
}
#about-home .main-heading h2 {
  font-size: 3.2em;
  font-weight: 400;
  margin-top: -10px;
  font-family: "Courgette", cursive;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #about-home .main-heading h2 {
    font-size: 2.75em;
  }
}
@media (max-width: 991.98px) {
  #about-home .main-heading h2 {
    font-size: 2.1em;
    font-weight: 400;
  }
}
@media (max-width: 767.98px) {
  #about-home .main-heading h2 {
    font-size: 1.65em;
  }
}
@media (max-width: 575.98px) {
  #about-home .main-heading h2 {
    font-size: 1.15em;
    margin-top: 1em;
    font-weight: 600;
  }
}
@media (max-width: 400px) {
  #about-home .main-heading h2 {
    font-size: 1.3em;
  }
}
#about-home .content {
  margin-top: 2em;
}
@media (max-width: 991.98px) {
  #about-home .content {
    margin-top: 1em;
  }
}
#about-home .content p {
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.3em;
  text-align: justify;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #about-home .content p {
    font-size: 1.15em;
  }
}
@media (max-width: 991.98px) {
  #about-home .content p {
    font-size: 1em;
  }
}

#get-in-touch {
  position: relative;
  padding: 2em 0 3em;
}
#get-in-touch .content h4 {
  font-weight: 400;
  margin-bottom: 1em;
  font-size: 2em;
}
@media (max-width: 991.98px) {
  #get-in-touch .content h4 {
    font-size: 1.5em;
  }
}
@media (max-width: 575.98px) {
  #get-in-touch .content h4 {
    font-size: 1.35em;
  }
}
#get-in-touch .content a {
  color: #EE1B24;
  font-weight: 400;
  transition: 0.4s all ease-in-out;
}
#get-in-touch .content a:hover {
  color: #eb121d;
}
#get-in-touch .content a img {
  width: 15px;
  height: 15px;
}
#get-in-touch .image .each-img {
  position: relative;
  padding-top: 63.47%;
  border-radius: 20px;
}
#get-in-touch .image .each-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  cursor: pointer;
  border-radius: 20px;
}
@media (max-width: 991.98px) {
  #get-in-touch .image {
    margin-top: 2em;
  }
}
#get-in-touch .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  border: 1px solid #707070;
}
#get-in-touch .slick-dots li.slick-active {
  background-color: #00407D;
  border: 1px solid #00407D;
}
@media (min-width: 576px) {
  #get-in-touch .modal-dialog {
    max-width: 80%;
  }
}
#get-in-touch .modal-content {
  border: 0;
  border-radius: 0;
  border-color: inherit;
  background-color: inherit;
}
#get-in-touch .modal-header {
  border: 0;
  padding: 0;
  margin: 0;
  height: 0;
}
#get-in-touch .modal-header .btn-close {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  z-index: 1;
}
#get-in-touch .modal-body {
  padding: 0;
}

#expertise-group {
  position: relative;
}
#expertise-group .content {
  color: #fff;
  background-color: #001e3d;
  padding: 3em;
  border-radius: 25px;
}
@media (max-width: 575.98px) {
  #expertise-group .content {
    padding: 2em;
  }
}
#expertise-group .content h4 .exp-head {
  font-size: 1.1em;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (min-width: 1400px) {
  #expertise-group .content h4 .exp-head {
    font-size: 1.5em;
  }
}
@media (min-width: 1900px) {
  #expertise-group .content h4 .exp-head {
    font-size: 2em;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #expertise-group .content h4 .exp-head {
    font-size: 1em;
  }
}
@media (max-width: 991.98px) {
  #expertise-group .content h4 .exp-head {
    font-size: 1.3em;
  }
}
@media (max-width: 575.98px) {
  #expertise-group .content h4 .exp-head {
    font-size: 1.2em;
  }
}
#expertise-group .content h4 .exp-sub-head {
  font-size: 0.7em;
  font-weight: 200;
}
@media (min-width: 1400px) {
  #expertise-group .content h4 .exp-sub-head {
    font-size: 0.9em;
  }
}
@media (min-width: 2000px) {
  #expertise-group .content h4 .exp-sub-head {
    font-size: 1em;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #expertise-group .content h4 .exp-sub-head {
    font-size: 0.6em;
  }
}
@media (max-width: 991.98px) {
  #expertise-group .content h4 .exp-sub-head {
    display: block;
  }
}
#expertise-group .content p {
  font-size: 1.3em;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5em;
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  #expertise-group .content p {
    font-size: 1.15em;
  }
}
#expertise-group .content p strong {
  font-weight: 500;
}
#expertise-group .content #more {
  display: none;
}
#expertise-group .content a {
  color: #fff;
  font-size: 1em;
  transition: 0.4s all ease-in-out;
  cursor: pointer;
}
#expertise-group .content a:hover {
  color: #EE1B24;
}
#expertise-group .content a:hover path {
  fill: #EE1B24;
}
#expertise-group .content a img, #expertise-group .content a svg {
  margin-left: 5px;
  width: 15px;
  height: 15px;
}

#investment-policy {
  position: relative;
  padding: 4em 0;
}
@media (max-width: 991.98px) {
  #investment-policy {
    padding: 3em 0;
  }
}
@media (max-width: 575.98px) {
  #investment-policy {
    padding: 2em 0;
  }
}
#investment-policy .content {
  margin-bottom: 4em;
}
#investment-policy .content h1 {
  font-size: 2.5em;
  font-weight: 400;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  #investment-policy .content h1 {
    font-size: 1.9em;
  }
}
@media (max-width: 767.98px) {
  #investment-policy .content h1 {
    font-size: 1.75em;
  }
}
#investment-policy .content p {
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.1em;
}
#investment-policy .image {
  margin-bottom: 2em;
  position: relative;
}
#investment-policy a {
  color: #EE1B24;
  font-weight: 400;
  transition: 0.4s all ease-in-out;
}
#investment-policy a:hover {
  color: #eb121d;
}
#investment-policy a img {
  margin-left: 1px;
  width: 15px;
  height: 15px;
}

#insight {
  position: relative;
  padding: 3em 0;
}
@media (max-width: 991.98px) {
  #insight {
    padding: 2em 0;
  }
}
#insight.research-insight {
  background-color: #f2f2f2;
}
#insight .content {
  margin-bottom: 2em;
}
#insight .content h1 {
  font-size: 2.15em;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  #insight .content h1 {
    font-size: 1.9em;
  }
}
@media (max-width: 767.98px) {
  #insight .content h1 {
    font-size: 1.75em;
  }
}
#insight .content p {
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.5;
}
#insight .image {
  margin-bottom: 1em;
  position: relative;
  padding-top: 150.94%;
}
#insight .image img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s all ease-in-out;
}
@media (min-width: 2000px) {
  #insight .image img {
    width: 100%;
  }
}
#insight .image img:hover {
  box-shadow: 0 6px 11px rgba(243, 102, 102, 0.5);
}
#insight .slick-list {
  overflow: visible !important;
}
#insight .slick-slide {
  margin-right: 10px;
  margin-left: 10px;
}
@media (max-width: 575.98px) {
  #insight {
    margin-right: 0px;
    margin-left: 0px;
  }
  #insight .slick-slider {
    margin: 0 -10px;
  }
}
#insight .slick-dots {
  bottom: -35px;
}
#insight .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  border: 1px solid #707070;
}
#insight .slick-dots li.slick-active {
  background-color: #00407D;
  border: 1px solid #00407D;
}
#insight.podcast-section .slick-list {
  overflow: hidden !important;
}
#insight .slick-prev:before {
  content: url("../img/icons/before.svg");
}
#insight .slick-next {
  right: -5px;
}
#insight .slick-next:before {
  content: url("../img/icons/next.svg");
}
@media (max-width: 991.98px) {
  #insight .podcast-slider {
    padding-bottom: 20px;
  }
  #insight .slick-prev, #insight .slick-next {
    top: inherit;
    bottom: -10px;
  }
  #insight .slick-prev {
    left: 45%;
  }
  #insight .slick-next {
    right: 45%;
  }
}
@media (max-width: 767.98px) {
  #insight .slick-prev, #insight .slick-next {
    top: inherit;
    bottom: -20px;
  }
  #insight .slick-prev {
    left: 40%;
  }
  #insight .slick-next {
    right: 40%;
  }
}

#quick-connect {
  position: relative;
  padding: 4em 0;
}
@media (max-width: 991.98px) {
  #quick-connect {
    padding: 3em 0;
  }
}
@media (max-width: 575.98px) {
  #quick-connect {
    padding: 2em 0;
  }
}
#quick-connect h1 {
  font-size: 2em;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media (max-width: 767.98px) {
  #quick-connect h1 {
    font-size: 1.5em;
  }
}
#quick-connect label span {
  color: #EE1B24;
}
#quick-connect textarea.form-control {
  min-height: calc(7.5em + 0.75rem + 2px);
}
@media (max-width: 1399.98px) {
  #quick-connect textarea.form-control {
    min-height: calc(6.5em + 0.75rem + 2px);
  }
}

#media {
  position: relative;
  padding: 3em 0;
  background-color: #F2F2F2;
}

#media .content {
  margin-bottom: 2em;
}

#media .content h1 {
  font-weight: 400;
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 7px;
}

@media (max-width: 991.98px) {
  #media .content h1 {
    font-size: 2em;
  }
}
@media (max-width: 575.98px) {
  #media .content h1 {
    font-size: 1.75em;
  }
}
#media .content p {
  font-weight: 400;
  font-size: 1em;
  margin-bottom: 5px;
}

#media .blocks .slick-track {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex: 1 1 auto;
  height: 100%;
}

#media .blocks .each-block {
  margin-bottom: 1em;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background-color: #FFFFFF;
  transition: 0.4s all ease-in-out;
  height: auto;
}

#media .blocks .each-block:hover {
  box-shadow: 0 6px 11px rgba(243, 102, 102, 0.5);
}

#media .blocks .each-block .txt {
  background-color: #FFFFFF;
  padding: 1.5em;
}

#media .blocks .each-block .txt .date {
  font-weight: 300;
  font-size: 1em;
  opacity: 0.8;
  margin-bottom: 10px;
}

#media .blocks .each-block .txt .description {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 1.5em;
  min-height: 110px;
}

@media (min-width: 992px) and (max-width: 1300px) {
  #media .blocks .each-block .txt .description {
    min-height: 120px;
  }
}
@media (min-width: 1601px) and (max-width: 2000px) {
  #media .blocks .each-block .txt .description {
    min-height: 130px;
  }
}
@media (min-width: 2000px) {
  #media .blocks .each-block .txt .description {
    min-height: 160px;
  }
}
@media (max-width: 320px) {
  #media .blocks .each-block .txt .description {
    min-height: 100px;
  }
}
@media (max-width: 1199.98px) {
  #media .blocks .each-block .txt .description {
    font-size: 1em;
  }
}
#media .blocks .each-block .txt a {
  color: #EE1B24;
  text-transform: capitalize;
  display: flex;
  font-size: 0.875em;
  align-items: center;
  justify-content: left;
  /*position:absolute;*/
  /*bottom:2em;*/
}

#media .blocks .each-block .txt a img {
  margin-left: 5px;
  width: 15px;
  height: 15px;
}

#media .blocks .each-block .img {
  position: relative;
  padding-top: 66.66%;
  border-bottom: 1px solid #f2f2f2;
}

#media .blocks .each-block .img img {
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 2000px) {
  #media .blocks .each-block .image {
    width: 100%;
  }
}
#media .readMore {
  color: #EE1B24;
  margin-top: 2em;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.15em;
  font-weight: 400;
}

#media .readMore img {
  margin-left: 1px;
  width: 15px;
  height: 15px;
}

#media .slick-slide .img img {
  right: 0;
  bottom: 0;
  margin: auto;
  width: 75% !important;
}

#media .slick-slide:nth-of-type(2) .img img {
  right: 0;
  bottom: 0;
  margin: auto;
  /*width: 100% !important;*/
}

#media.pdfSlider .slick-slide .img img {
  width: 100% !important;
}

#media .blocks-slider .slick-prev:before {
  content: url("../img/icons/before.svg");
}

#media .blocks-slider .slick-next:before {
  content: url("../img/icons/next.svg");
}

#media .blocks-slider .slick-prev, #media .blocks-slider .slick-next {
  top: 40%;
  transform: translateY(-40%);
}

@media (max-width: 991.98px) {
  #media .blocks-slider .slick-prev, #media .blocks-slider .slick-next {
    top: inherit;
    bottom: -25px;
  }
}
@media (max-width: 767.98px) {
  #media .blocks-slider .slick-prev, #media .blocks-slider .slick-next {
    top: inherit;
    bottom: -20px;
  }
}
#media .blocks-slider .slick-next {
  right: -14px;
}

@media (max-width: 991.98px) {
  #media .blocks-slider .slick-next {
    right: 45%;
    transform: translateX(-45%);
  }
}
@media (max-width: 767.98px) {
  #media .blocks-slider .slick-next {
    right: 40%;
    transform: translateX(-40%);
  }
}
@media (max-width: 991.98px) {
  #media .blocks-slider .slick-prev {
    left: 45%;
    transform: translateX(-45%);
  }
}
@media (max-width: 767.98px) {
  #media .blocks-slider .slick-prev {
    left: 40%;
    transform: translateX(-40%);
  }
}
#media .blocks-slider .slick-slide {
  margin-right: 10px;
  margin-left: 10px;
}

@media (max-width: 575.98px) {
  #media .blocks-slider {
    margin-right: 0px;
    margin-left: 0px;
  }
  #media .blocks-slider .slick-slider {
    margin: 0 -10px;
  }
}
#media .pdf-slider .slick-prev:before {
  content: url("../img/icons/before.svg");
}

#media .pdf-slider .slick-next:before {
  content: url("../img/icons/next.svg");
}

#media .pdf-slider .slick-prev, #media .pdf-slider .slick-next {
  top: 40%;
  transform: translateY(-40%);
}

@media (max-width: 991.98px) {
  #media .pdf-slider .slick-prev, #media .pdf-slider .slick-next {
    top: inherit;
    bottom: -25px;
  }
}
@media (max-width: 767.98px) {
  #media .pdf-slider .slick-prev, #media .pdf-slider .slick-next {
    top: inherit;
    bottom: -20px;
  }
}
#media .pdf-slider .slick-next {
  right: -14px;
}

@media (max-width: 991.98px) {
  #media .pdf-slider .slick-next {
    right: 45%;
    transform: translateX(-45%);
  }
}
@media (max-width: 767.98px) {
  #media .pdf-slider .slick-next {
    right: 40%;
    transform: translateX(-40%);
  }
}
@media (max-width: 991.98px) {
  #media .pdf-slider .slick-prev {
    left: 45%;
    transform: translateX(-45%);
  }
}
@media (max-width: 767.98px) {
  #media .pdf-slider .slick-prev {
    left: 40%;
    transform: translateX(-40%);
  }
}
#media .pdf-slider .slick-slide {
  margin-right: 10px;
  margin-left: 10px;
}

@media (max-width: 575.98px) {
  #media .pdf-slider {
    margin-right: 0px;
    margin-left: 0px;
  }
  #media .pdf-slider .slick-slider {
    margin: 0 -10px;
  }
}
#media .slick-dots {
  bottom: -35px;
}

#media .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  border: 1px solid #707070;
}

#media .slick-dots li.slick-active {
  background-color: #00407D;
  border: 1px solid #00407D;
}

#media .twitter-slider .slick-slide {
  margin-right: 2em;
}

@media (max-width: 991.98px) {
  #media .twitter-slider .slick-slide {
    margin-right: 1em;
  }
}
@media (max-width: 767.98px) {
  #media .twitter-slider .slick-slide {
    margin-right: 0;
  }
}
#media .twitter-slider iframe {
  height: 500px;
  width: 100%;
}

@media (min-width: 2000px) {
  #media .twitter-slider iframe {
    height: 630px;
  }
}
@media (min-width: 1601px) and (max-width: 200px) {
  #media .twitter-slider iframe {
    height: 620px;
  }
}
@media (min-width: 1500px) and (max-width: 1601px) {
  #media .twitter-slider iframe {
    height: 580px;
  }
}
@media (min-width: 1400px) and (max-width: 1501px) {
  #media .twitter-slider iframe {
    height: 550px;
  }
}
@media (min-width: 1200px) and (max-width: 1401px) {
  #media .twitter-slider iframe {
    height: 510px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #media .twitter-slider iframe {
    height: 480px;
  }
}
@media (max-width: 991.98px) {
  #media .twitter-slider iframe {
    height: 460px;
  }
}
@media (max-width: 575.98px) {
  #media .twitter-slider iframe {
    height: 540px;
  }
  #media .twitter-slider iframe .share-update-card .social-action-bar {
    padding: 0 10px;
  }
}
#inner-banner {
  position: relative;
}
#inner-banner.contact-banner {
  margin-bottom: 0;
}
#inner-banner .title {
  position: absolute;
  top: 30%;
  transform: translateY(-30%);
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1200px) {
  #inner-banner .title {
    top: 35%;
    transform: translateY(-35%);
  }
}
#inner-banner .title h1 {
  color: #FFFFFF;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 2.2em;
  margin-bottom: 12px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #inner-banner .title h1 {
    font-size: 2.15em;
  }
}
@media (max-width: 991.98px) {
  #inner-banner .title h1 {
    font-size: 1.75em;
  }
}
#inner-banner .title p {
  font-weight: 400;
  font-family: "Courgette", cursive;
  color: #FFFFFF;
  font-size: 1.6em;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #inner-banner .title p {
    font-size: 1.4em;
  }
}
@media (max-width: 991.98px) {
  #inner-banner .title p {
    font-size: 1.1em;
  }
}
@media (max-width: 575.98px) {
  #inner-banner .title p {
    font-size: 1em;
  }
}
@media (max-width: 400px) {
  #inner-banner .title p {
    font-size: 0.85em;
  }
}
@media (max-width: 320px) {
  #inner-banner .title p {
    font-size: 0.75em;
  }
}
@media (min-width: 992px) {
  #inner-banner .image {
    position: relative;
    padding-top: 21.61%;
  }
  #inner-banner .image img {
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  #inner-banner img {
    height: 300px;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 575.98px) {
  #inner-banner img {
    height: 200px;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

#banner-strip {
  position: relative;
  margin-top: -5em;
}
@media (max-width: 991.98px) {
  #banner-strip {
    margin-top: -2em;
  }
}
#banner-strip.research-banner-strip .strip {
  padding: 3em 1.5em;
  height: auto;
}
@media (max-width: 991.98px) {
  #banner-strip.research-banner-strip .strip {
    padding: 2em 1em;
  }
}
@media (max-width: 575.98px) {
  #banner-strip.research-banner-strip .strip {
    padding: 1em;
  }
}
#banner-strip .strip {
  background-color: #00407D;
  padding: 0.5em;
  height: 180px;
  display: flex;
  align-items: center;
}
@media (min-width: 2000px) {
  #banner-strip .strip {
    height: 270px;
  }
}
@media (min-width: 3000px) {
  #banner-strip .strip {
    height: auto;
  }
}
@media (max-width: 991.98px) {
  #banner-strip .strip {
    padding: 1em;
  }
}
@media (max-width: 767.98px) {
  #banner-strip .strip {
    height: auto;
  }
}
@media (max-width: 575.98px) {
  #banner-strip .strip {
    position: relative;
  }
}
#banner-strip .strip p {
  color: #FFFFFF;
  font-size: 1.5em;
  font-weight: 200;
  padding: 0 2em;
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #banner-strip .strip p {
    padding: 0 2em;
  }
}
@media (max-width: 991.98px) {
  #banner-strip .strip p {
    padding: 0 1em;
    font-size: 1.4em;
  }
}
@media (max-width: 767.98px) {
  #banner-strip .strip p {
    font-size: 1.2em;
  }
}

#contact-page-strip {
  position: relative;
  margin-top: -2em;
  background-color: #f2f2f2;
}
@media (max-width: 991.98px) {
  #contact-page-strip {
    margin-top: -1em;
  }
}
#contact-page-strip .contact-strip {
  background-color: #00407D;
  padding: 3em 5em;
  margin: -2em auto 0;
}
@media (max-width: 991.98px) {
  #contact-page-strip .contact-strip {
    padding: 2em;
  }
}
@media (max-width: 575.98px) {
  #contact-page-strip .contact-strip {
    padding: 1em;
  }
}
#contact-page-strip .blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
@media (max-width: 767.98px) {
  #contact-page-strip .blocks {
    grid-template-columns: 1fr;
  }
}
#contact-page-strip .blocks .each-block .left-block {
  display: grid;
  grid-template-columns: 20px auto;
  gap: 1em;
}
#contact-page-strip .blocks .each-block .left-block h4 {
  font-size: 1.75em;
  color: #fff;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  #contact-page-strip .blocks .each-block .left-block h4 {
    font-size: 1.5em;
  }
}
#contact-page-strip .blocks .each-block .left-block h5 {
  font-size: 1.25em;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 1.75;
  max-width: 75%;
}
@media (max-width: 991.98px) {
  #contact-page-strip .blocks .each-block .left-block h5 {
    font-size: 1.1em;
  }
}
#contact-page-strip .blocks .each-block ul li {
  display: grid;
  grid-template-columns: 20px auto;
  gap: 1em;
  color: #FFFFFF;
  line-height: 2;
  margin-bottom: 16px;
}
#contact-page-strip .blocks .each-block ul li h4 {
  font-size: 1.75em;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  font-weight: 300;
}
@media (max-width: 991.98px) {
  #contact-page-strip .blocks .each-block ul li h4 {
    font-size: 1.5em;
    line-height: 1.5;
  }
}
#contact-page-strip .blocks .each-block ul li .icon img {
  width: 20px;
}
#contact-page-strip .blocks .each-block ul li a {
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 300;
}

#banner {
  position: relative;
}
#banner .image {
  position: relative;
  padding-top: 52.23%;
}
#banner .image img {
  position: absolute;
  top: 0;
  left: 0;
}

.typing-demo {
  width: 50ch;
  animation: typing 2s steps(50), blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
}
.typing-demo p {
  color: #FFFFFF;
}

@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
#vision-mission {
  position: relative;
  padding: 3em 0;
}
@media (max-width: 767.98px) {
  #vision-mission {
    padding: 2em 0;
  }
}
#vision-mission .block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
@media (max-width: 991.98px) {
  #vision-mission .block {
    display: block;
  }
}
#vision-mission .block .img {
  position: relative;
  padding: 5px;
}
@media (max-width: 991.98px) {
  #vision-mission .block .img {
    margin-bottom: 1em;
  }
}
#vision-mission .block .img img {
  width: 100%;
  padding: 8px;
}
@media (max-width: 575.98px) {
  #vision-mission .block .img img {
    padding: 1em;
  }
}
#vision-mission .block .img .top, #vision-mission .block .img .bottom {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#vision-mission .block .img .left {
  left: 0;
  border-left: 2px solid #EE1B24;
}
#vision-mission .block .img .right {
  right: 0;
  border-right: 2px solid #EE1B24;
}
#vision-mission .block .img .bottom {
  bottom: 0;
  border-bottom: 2px solid #EE1B24;
}
#vision-mission .block .img .top {
  top: 0;
  border-top: 2px solid #EE1B24;
}
#vision-mission .block .txt h4 {
  font-weight: 500;
  font-size: 1.75em;
  margin-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #vision-mission .block .txt h4 {
    font-size: 1.5em;
    margin-bottom: 5px;
  }
}
@media (max-width: 767.98px) {
  #vision-mission .block .txt h4 {
    font-size: 1.25em;
  }
}
#vision-mission .block .txt p {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  max-width: 70%;
}
@media (max-width: 1199.98px) {
  #vision-mission .block .txt p {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  #vision-mission .block .txt p {
    font-size: 0.9em;
  }
}

#our-core-values {
  position: relative;
  padding: 4em 0;
  background-color: #f2f2f2;
}
@media (max-width: 991.98px) {
  #our-core-values {
    padding: 2em 0;
  }
}
#our-core-values h1 {
  font-size: 2.5em;
  font-weight: 400;
  text-align: center;
  display: block;
  margin-bottom: 1.5em;
}
@media (max-width: 991.98px) {
  #our-core-values h1 {
    font-size: 2em;
    margin-bottom: 1em;
  }
}
@media (max-width: 575.98px) {
  #our-core-values h1 {
    font-size: 1.75em;
    font-weight: 500;
  }
}
#our-core-values .blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
}
@media (max-width: 991.98px) {
  #our-core-values .blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  #our-core-values .blocks {
    grid-template-columns: 1fr;
  }
}
#our-core-values .blocks .each-block {
  text-align: center;
  position: relative;
  transition: 0.4s all ease-in-out;
}
#our-core-values .blocks .each-block:hover {
  margin-top: -10px;
}
#our-core-values .blocks .each-block::after {
  content: "";
  position: absolute;
  background-color: #ccc;
  width: 1.5px;
  height: 50%;
  top: 35%;
  transform: translateY(-50%);
  right: 0;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
@media (max-width: 991.98px) {
  #our-core-values .blocks .each-block::after {
    opacity: 0;
  }
}
@media (max-width: 991.98px) {
  #our-core-values .blocks .each-block:nth-of-type(2)::after {
    opacity: 0;
  }
}
#our-core-values .blocks .each-block:last-child::after {
  opacity: 0;
}
#our-core-values .blocks .each-block .icon {
  margin-bottom: 1.2em;
  width: 130px;
  height: 130px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  #our-core-values .blocks .each-block .icon {
    width: 145px;
    height: 145px;
  }
}
#our-core-values .blocks .each-block h4 {
  font-weight: 500;
  font-size: 1.35em;
  line-height: 1.5;
  text-align: center;
  padding: 0 1.5em;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #our-core-values .blocks .each-block h4 {
    font-size: 1.2em;
    padding: 0 1.5em;
  }
}
@media (max-width: 991.98px) {
  #our-core-values .blocks .each-block h4 {
    padding: 0;
  }
}

#who-we-serve {
  position: relative;
  background-color: #00407D;
  padding: 4em 1em;
}
#who-we-serve .content h4 {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1.9em;
  margin-bottom: 0.8em;
}
@media (max-width: 575.98px) {
  #who-we-serve .content h4 {
    font-size: 1.5em;
  }
}
#who-we-serve .content ul li {
  font-size: 1.1em;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.5;
}
#who-we-serve .content ul li button {
  color: #fff;
  font-weight: 600;
}
#who-we-serve .content ul li .active {
  color: #00417d;
}
#who-we-serve .content ul li::before {
  content: none;
  border-color: transparent #fff;
  border-style: solid;
  border-width: 0.45em 0 0.45em 0.55em;
  display: block;
  height: 0;
  width: 0;
  left: -1.5em;
  top: 1.25em;
  position: relative;
  transform: rotate(-90deg);
}
#who-we-serve .tab-pane {
  padding: 2em 1em;
  border: 1px solid #fff;
  outline: invert;
  border-top: none;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
#who-we-serve .tab-pane p, #who-we-serve .tab-pane li {
  line-height: 1.5;
}
#who-we-serve .tab-pane li {
  margin-bottom: 10px;
}
#who-we-serve .tab-pane b {
  font-weight: 600;
}

#our-core-expertise {
  position: relative;
  padding: 3em 0;
}
@media (max-width: 991.98px) {
  #our-core-expertise {
    padding: 2em 0;
  }
}
#our-core-expertise h1 {
  font-size: 2.5em;
  font-weight: 400;
  text-align: center;
  display: block;
  margin-bottom: 1.5em;
}
@media (max-width: 991.98px) {
  #our-core-expertise h1 {
    font-size: 2em;
    margin-bottom: 1em;
  }
}
@media (max-width: 767.98px) {
  #our-core-expertise h1 {
    font-size: 1.75em;
  }
}
@media (max-width: 575.98px) {
  #our-core-expertise h1 {
    font-weight: 500;
  }
}
#our-core-expertise .blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media (max-width: 991.98px) {
  #our-core-expertise .blocks {
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
}
@media (max-width: 575.98px) {
  #our-core-expertise .blocks {
    grid-template-columns: 1fr;
  }
}
#our-core-expertise .blocks .each-block {
  position: relative;
  margin-bottom: 1.75em;
  transition: 0.4s all ease-in-out;
}
#our-core-expertise .blocks .each-block:hover {
  margin-top: -0.75em;
  margin-bottom: 2.5em;
}
@media (max-width: 991.98px) {
  #our-core-expertise .blocks .each-block {
    margin-bottom: 1em;
  }
}
@media (max-width: 767.98px) {
  #our-core-expertise .blocks .each-block {
    text-align: center;
  }
}
#our-core-expertise .blocks .each-block::after {
  content: "";
  position: absolute;
  background-color: #ccc;
  width: 1.5px;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
@media (max-width: 991.98px) {
  #our-core-expertise .blocks .each-block::after {
    opacity: 0;
  }
}
#our-core-expertise .blocks .each-block:nth-of-type(3)::after {
  opacity: 0;
}
@media (max-width: 991.98px) {
  #our-core-expertise .blocks .each-block:nth-of-type(2)::after {
    opacity: 0;
  }
  #our-core-expertise .blocks .each-block:nth-of-type(4)::after {
    opacity: 0;
  }
}
#our-core-expertise .blocks .each-block:last-child::after {
  opacity: 0;
}
#our-core-expertise .blocks .each-block .icon {
  margin-bottom: 1em;
  width: 120px;
  height: 120px;
}
@media (min-width: 2000px) {
  #our-core-expertise .blocks .each-block .icon {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 767.98px) {
  #our-core-expertise .blocks .each-block .icon {
    margin: 0 auto 1em;
  }
}
#our-core-expertise .blocks .each-block h4 {
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.3;
  margin-bottom: 1em;
  max-width: 70%;
}
@media (max-width: 991.98px) {
  #our-core-expertise .blocks .each-block h4 {
    font-size: 1.3em;
  }
}
@media (max-width: 767.98px) {
  #our-core-expertise .blocks .each-block h4 {
    font-size: 1.15em;
    max-width: 100%;
  }
}
#our-core-expertise .blocks .each-block p {
  max-width: 80%;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  #our-core-expertise .blocks .each-block p {
    max-width: 100%;
  }
}
#our-core-expertise.why-us {
  padding: 3em 0 4em;
}
@media (max-width: 991.98px) {
  #our-core-expertise.why-us {
    padding: 2em 0;
  }
}
#our-core-expertise.why-us .blocks {
  gap: 2em;
}
@media (max-width: 991.98px) {
  #our-core-expertise.why-us .blocks {
    gap: 1em;
  }
}
#our-core-expertise.why-us .blocks .each-block::after {
  content: none;
}
#our-core-expertise.why-us .blocks .each-block h4 {
  max-width: 80%;
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  #our-core-expertise.why-us .blocks .each-block h4 {
    max-width: 90%;
  }
}
@media (max-width: 575.98px) {
  #our-core-expertise.why-us .blocks .each-block h4 {
    max-width: 100%;
  }
}

#our-experts {
  position: relative;
  padding: 3em 0;
  background-color: #F9F9F9;
}
@media (max-width: 991.98px) {
  #our-experts {
    padding: 2em 0;
  }
}
#our-experts h1 {
  font-weight: 400;
  font-size: 2.5em;
  margin-bottom: 2em;
  display: block;
  text-align: center;
}
@media (max-width: 991.98px) {
  #our-experts h1 {
    margin-bottom: 1em;
    font-size: 2em;
  }
}
@media (max-width: 575.98px) {
  #our-experts h1 {
    font-size: 1.75em;
    font-weight: 500;
  }
}
#our-experts .blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
@media (max-width: 991.98px) {
  #our-experts .blocks {
    grid-template-columns: 1fr;
  }
}
#our-experts .blocks .each-block {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1em;
}
@media (max-width: 991.98px) {
  #our-experts .blocks .each-block {
    margin-bottom: 1em;
    grid-template-columns: 30% 1fr;
  }
}
@media (max-width: 575.98px) {
  #our-experts .blocks .each-block {
    display: block;
  }
  #our-experts .blocks .each-block .one-block {
    display: grid;
    grid-template-columns: 25% auto;
    gap: 1em;
    align-items: center;
  }
}
#our-experts .blocks .each-block .img img {
  width: 100%;
}
#our-experts .blocks .each-block h4 {
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.3;
}
#our-experts .blocks .each-block .role {
  font-weight: 300;
  color: #8c8c8c;
  font-size: 0.875em;
}
#our-experts .blocks .each-block .description {
  font-weight: 400;
  font-size: 1em;
  margin-bottom: 1em;
}
#our-experts .blocks .each-block a {
  color: #EE1B24;
  font-size: 1em;
  transition: 0.4s all ease-in-out;
}
#our-experts .blocks .each-block a:hover {
  color: rgb(225, 14, 14);
}
#our-experts .blocks .each-block a img {
  padding-left: 5px;
}

.help {
  position: relative;
  padding: 2em 0;
}
.help p {
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  color: #00407D;
  font-size: 1.5em;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .help p {
    max-width: 90%;
    font-size: 1.25em;
  }
}

#our-process {
  position: relative;
  padding: 3em 0;
}
@media (max-width: 575.98px) {
  #our-process {
    padding: 2em 0;
  }
}
#our-process h2 {
  font-size: 2.5em;
  font-weight: 400;
  margin-bottom: 1em;
}
@media (max-width: 991.98px) {
  #our-process h2 {
    font-size: 2em;
  }
}
@media (max-width: 575.98px) {
  #our-process h2 {
    font-size: 1.5em;
  }
}
#our-process .processData {
  text-align: center;
  color: #00407D;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 40px 20px 20px 20px;
  border: 1px solid #c9d3dd;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#our-process .processData span.num {
  border: 1px solid #c9d3dd;
  color: #ec2024;
  font-size: 36px;
  position: absolute;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  top: -29px;
  left: 0;
  right: 0;
  margin: auto;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(234, 238, 244)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(234, 238, 244) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#eaeef4", GradientType=0 );
}
#our-process .processData .matter p {
  text-align: justify;
}
#our-process .processData span.rightArrow {
  position: absolute;
  right: -22px;
  bottom: 0px;
  font-size: 20px;
  color: #ec2024;
}
@media (max-width: 991.98px) {
  #our-process .processData span.rightArrow {
    opacity: 0;
  }
}
#our-process .processData span.downArrow {
  position: absolute;
  right: 15px;
  bottom: -32px;
  font-size: 25px;
  color: #ec2024;
}
@media (max-width: 991.98px) {
  #our-process .processData span.downArrow {
    opacity: 0;
  }
}
#our-process .processData span.leftArrow {
  position: absolute;
  left: -25px;
  bottom: 0px;
  font-size: 25px;
  color: #ec2024;
}
@media (max-width: 991.98px) {
  #our-process .processData span.leftArrow {
    opacity: 0;
  }
}
#our-process .subData {
  border: 1px solid #c9d3dd;
}
@media (min-width: 992px) {
  #our-process .subData {
    border-right: none;
  }
}
#our-process .subData span {
  height: 36px;
  width: 36px;
  font-size: 22px;
  background: #efefef;
  line-height: 34px;
  text-align: center;
  color: #898989;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  font-weight: 400;
}
#our-process .subData ul {
  padding-left: 15px;
  padding-top: 15px;
}
#our-process .subData ul li {
  display: inline-block;
  min-width: 33%;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #our-process .subData ul li {
    min-width: 49%;
  }
}
@media (max-width: 991.98px) {
  #our-process .subData ul li {
    min-width: 45%;
  }
}
@media (max-width: 575.98px) {
  #our-process .subData ul li {
    min-width: 100%;
  }
}
@media (min-width: 992px) {
  #our-process .noBordRgt {
    border-right: none;
  }
  #our-process .noBordLft {
    border-left: none;
  }
  #our-process .noBordRgt:after, #our-process .processData.noBordLft:after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    height: calc(100% - 30px);
    border-left: 1px solid #ccc;
    z-index: 9;
    top: 15px;
  }
}
#our-process .timeline {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0;
}
#our-process .timeline::after {
  content: "";
  position: absolute;
  width: 5px;
  background: #006E51;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
#our-process .block {
  padding: 15px 30px;
  position: relative;
  background: inherit;
  width: 50%;
}
#our-process .block.left {
  left: 0;
}
#our-process .block.right {
  left: 50%;
}
#our-process .block::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: -8px;
  background: #ffffff;
  border: 2px solid #006E51;
  border-radius: 16px;
  z-index: 1;
}
#our-process .block.right::after {
  left: -8px;
}
#our-process .block::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  top: calc(50% - 1px);
  right: 8px;
  background: #006E51;
  z-index: 1;
}
#our-process .block.right::before {
  left: 8px;
}
#our-process .block .date {
  position: absolute;
  display: inline-block;
  top: calc(50% - 0.7em);
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  color: #ec2024;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
  border: 1px solid #c9d3dd;
  color: #ec2024;
  font-size: 36px;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-radius: 100%;
  margin: auto;
  background: white;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #eaeef4));
  background: linear-gradient(to bottom, white 0%, #eaeef4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#eaeef4", GradientType=0 );
}
#our-process .block.left .date {
  right: -75px;
}
#our-process .block.right .date {
  left: -75px;
}
#our-process .block .icon {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 9px 0;
  top: calc(50% - 1em);
  background: #4b749f;
  border: 2px solid #fff;
  border-radius: 40px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  z-index: 1;
}
#our-process .block.left .icon {
  right: 56px;
}
#our-process .block.right .icon {
  left: 56px;
}
#our-process .block .content {
  padding: 30px 90px 30px 30px;
  background: #00407D;
  position: relative;
  border-radius: 0 500px 500px 0;
}
#our-process .block.right .content {
  padding: 30px 30px 30px 90px;
  border-radius: 500px 0 0 500px;
}
#our-process .block .content h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}
#our-process .block .content p {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
}
@media (max-width: 767.98px) {
  #our-process .timeline::after {
    left: 90px;
  }
  #our-process .block {
    width: 100%;
    padding-left: 120px;
    padding-right: 30px;
  }
  #our-process .block.right {
    left: 0%;
  }
  #our-process .block.left::after,
  #our-process .block.right::after {
    left: 82px;
  }
  #our-process .block.left::before,
  #our-process .block.right::before {
    left: 100px;
    border-color: transparent #006E51 transparent transparent;
  }
  #our-process .block.left .date,
  #our-process .block.right .date {
    right: auto;
    left: 15px;
  }
  #our-process .block.left .icon,
  #our-process .block.right .icon {
    right: auto;
    left: 146px;
  }
  #our-process .block.left .content,
  #our-process .block.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
  }
}

.timeline .subData {
  display: block;
  border: none !important;
  padding-left: 1em;
}
.timeline .subData li {
  list-style: disc;
  margin-bottom: 5px;
  color: #fff;
  font-size: 12px;
}
.timeline #more {
  display: none;
}
.timeline #more1 {
  display: none;
}
.timeline a {
  color: #b4b4b4;
  font-size: 1em;
  transition: 0.4s all ease-in-out;
  cursor: pointer;
}
@media (min-width: 2000px) {
  .timeline a {
    font-size: 0.7em;
  }
}
@media (min-width: 3000px) {
  .timeline a {
    font-size: 15px;
  }
}
.timeline a .read-less {
  color: #b4b4b4;
}
.timeline a path {
  fill: #b4b4b4;
}
.timeline a:hover {
  color: #EE1B24;
}
.timeline a:hover span {
  color: #EE1B24;
}
.timeline a:hover path {
  fill: #EE1B24;
}
.timeline a img, .timeline a svg {
  margin-left: 5px;
  width: 15px;
  height: 15px;
}

#our-products {
  position: relative;
  padding: 3em 0;
}
#our-products .investorTable h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0px;
  letter-spacing: 1px;
  padding: 10px 13px;
  text-align: center;
  background: #023f78;
}
#our-products .investorTable .stroke {
  height: 50px;
  border-right: 1px solid #dee2e6 !important;
}
#our-products .investorTable .border {
  border: 1px solid #c9d3dd;
}
#our-products .investorTable .slideDiv {
  box-sizing: border-box;
}
#our-products .slideDiv > div {
  border: 1px solid #c9d3dd;
  padding: 35px 15px 15px 15px;
  margin-right: 8px;
  margin-left: 8px;
  position: relative;
  box-sizing: border-box;
}
#our-products .slideDiv > div:hover {
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #ec2024;
}
#our-products .slideDiv:focus {
  outline: none;
}
#our-products .slideDiv h4 {
  text-transform: uppercase;
  color: #244f80;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
#our-products .slideDiv h5 {
  background: #023f78;
  color: #fff;
  padding: 12px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
#our-products .slideDiv h6 {
  background: #e6e6e6;
  color: #000;
  padding: 12px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}
#our-products .slideDiv h6:before {
  width: 0;
  height: 0;
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e6e6e6;
  content: "";
  bottom: -10px;
  z-index: 999;
  left: 50%;
  margin-left: -5px;
}
#our-products .slideDiv h5.p-10 {
  padding: 10px;
}
#our-products .slideDiv h3 {
  font-size: 24px;
  color: #3c3c3c;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
#our-products .ticketSize {
  font-size: 1.2em !important;
}
#our-products .slideDiv h3.redColor {
  color: #ec2024;
}
#our-products .slideDiv h3.blueColor {
  color: #023f78;
}
#our-products .slideDiv ul {
  padding-bottom: 20px;
}
#our-products .circleTop {
  width: 40px;
  height: 40px;
  line-height: 39px;
  border: 1px solid #c9d3dd;
  position: absolute;
  color: #ec2024;
  text-align: center;
  background-image: linear-gradient(#eaeef4, #fff);
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 18px;
}
#our-products .responsiveSlider .slick-list {
  overflow: visible;
}
@media (max-width: 992px) {
  #our-products .responsiveSlider .slick-list {
    overflow: hidden;
  }
  #our-products .responsiveSlider {
    margin-bottom: 0;
  }
  #our-products .circleTop {
    top: 10px;
  }
  #our-products .slideDiv > div {
    padding: 60px 15px 15px 15px;
  }
  #our-products .borderStructure, #our-products .border-right.stroke {
    display: none !important;
  }
}
#our-products .investorTable .col-9.m-auto {
  padding: 0px 10px;
}
#our-products .investorTable .line {
  border-left: 1px solid #c9d3dd;
  width: auto;
  height: 18px;
  position: relative;
}
#our-products .investorTable .line:after {
  content: "";
  bottom: -4px;
  left: -4px;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #023f78;
  border-radius: 50%;
}
#our-products .responsiveSlider li {
  font-size: 14px;
  color: #212121;
  padding-left: 20px;
  background: url(../img/black_bullet.png) no-repeat 0px 7px;
  margin-bottom: 10px;
}
#our-products .slick-prev:before, #our-products .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #ec2024;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#our-products .slick-next {
  right: -18px;
}
#our-products .slick-dots {
  bottom: auto;
  top: -3.25em;
}
#our-products .slick-dots li {
  margin-top: 2em;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  padding: 0;
  border: 1px solid #707070;
}
#our-products .slick-dots li button {
  width: 10px;
  padding: 0;
}
#our-products .slick-dots li.slick-active {
  background-color: #00407D;
  border: 1px solid #00407D;
}
#our-products .second-bottom-dots {
  position: relative;
}
#our-products .second-bottom-dots .slick-dots {
  bottom: -30px !important;
  top: auto !important;
}
@media (max-width: 991.98px) {
  #our-products #external-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  #our-products #external-buttons a {
    margin-top: 2em;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    padding: 0;
    border: 1px solid #707070;
  }
  #our-products #external-buttons a.active {
    background-color: #00407D;
    border: 1px solid #00407D;
  }
}

.contact-section {
  position: relative;
  background-color: #f2f2f2;
  padding: 0 !important;
}
.contact-section .block {
  background-color: #FFFFFF;
  padding: 3em 5em;
}
@media (max-width: 991.98px) {
  .contact-section .block {
    padding: 3em 1em;
  }
}

#our-approach {
  position: relative;
  padding: 3em 0;
}
@media (max-width: 575.98px) {
  #our-approach {
    padding: 2em 0;
  }
}
#our-approach .block {
  display: flex;
  align-items: center;
  gap: 1em;
}
#our-approach .block:nth-last-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767.98px) {
  #our-approach .block {
    margin-bottom: 1.5em;
  }
}
@media (max-width: 575.98px) {
  #our-approach .block {
    display: block;
    margin-bottom: 2em;
  }
}
#our-approach .block .img {
  position: relative;
  padding: 5px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30%;
}
@media (max-width: 575.98px) {
  #our-approach .block .img {
    margin-bottom: 10px;
  }
}
#our-approach .block .img img {
  width: 100%;
  padding: 8px;
}
@media (max-width: 575.98px) {
  #our-approach .block .img img {
    padding: 1em;
  }
}
#our-approach .block .img .top, #our-approach .block .img .bottom {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#our-approach .block .img .left {
  left: 0;
  border-left: 2px solid #EE1B24;
}
#our-approach .block .img .right {
  right: 0;
  border-right: 2px solid #EE1B24;
}
#our-approach .block .img .bottom {
  bottom: 0;
  border-bottom: 2px solid #EE1B24;
}
#our-approach .block .img .top {
  top: 0;
  border-top: 2px solid #EE1B24;
}
#our-approach .block .txt h4 {
  font-weight: 500;
  font-size: 1.35em;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  #our-approach .block .txt h4 {
    font-size: 1.25em;
  }
}
@media (max-width: 767.98px) {
  #our-approach .block .txt h4 {
    font-size: 1.1em;
  }
}
#our-approach .block .txt p {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  #our-approach .block .txt p {
    font-size: 0.9em;
  }
}

[v-cloak] > * {
  display: none;
}

[v-cloak]::before {
  content: " ";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  background-size: cover;
  left: 50%;
  top: 50%;
}

.filters-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2rem;
  gap: 2rem;
  width: 95%;
}

@media (max-width: 600px) {
  .filters-list {
    display: block;
  }
  .filters-list li {
    margin-bottom: 1em;
  }
}
.filters-list li {
  display: flex;
  flex-direction: column;
}

.filters-list li span {
  font-size: #6a6a6a;
  font-size: 0.9em;
}

.filters-list li select {
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
}

.filters-list li select {
  height: 35px;
  border-radius: 5px;
  background: #00407D;
  border: none;
  padding: 0 45px 0 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 600;
  background-image: url("/img/icons/down-arrow.png");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: 95% center;
}

.filters-list li select:focus {
  border: none;
  outline: none;
}

.filters-list li:nth-child(2) select {
  background: #00407D;
  background-image: url("/img/icons/down-arrow.png");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: 95% center;
}

.cards-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 1rem;
}

@media (max-width: 1100px) {
  .cards-block {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 1rem;
  }
}
@media (max-width: 850px) {
  .cards-block {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
  }
}
@media (max-width: 530px) {
  .cards-block {
    grid-template-columns: 1fr;
    grid-column-gap: 1rem;
  }
}
.filters {
  width: 90%;
  padding-right: 10px;
  margin: 0 auto;
}

.no-films {
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: red;
  font-size: 26px;
  font-weight: bolder;
  text-transform: uppercase;
}

.footContent {
  font-size: 13px;
}/*# sourceMappingURL=app.css.map */