:root{
    --bs-primary-rgb : 17, 48, 115;
    --bs-secondary-rgb: 58, 92, 161;
    --bs-link-color-rgb : 17, 48, 115;

    --font_2: normal normal normal 32px/1.4em helvetica-w01-light,helvetica-w02-light,sans-serif;

}

.btn-primary{
    --bs-btn-bg: #234bbc !important;
}


@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth; 
    } 

}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}


body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    overflow: auto;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: "montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

main {
    padding: 0;
    margin: 0;
    flex: 1
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, .logo {
    font-family: "montserrat", sans-serif;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    text-decoration: none;
}

p {
    font-size: 1.1rem;
}

header .navbar .navbar-toggler {
    box-shadow: none !important;
}


header .navbar .navbar-toggler .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #fff;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

header .navbar .navbar-toggler .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #fff;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

header .navbar .navbar-toggler .navbar-toggler-icon:after {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #fff;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    top: 8px;
}

header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
    border-bottom: 1px solid rgba(0,0,0,0) !important;
}

header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}

header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

header nav ul > li > a {
    font-size: 14px !important;
    padding: 10px 15px !important;
    display: inline-block !important;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

header nav ul > li > a.active {
    color: #fff  !important;
}

header nav ul > li > a:hover {
    color: #fff !important;
}

footer .social li {
    display: inline-block;
}

footer .social li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    background: #777;
    border-radius: 50%;
    color: #fff;
}

footer .social svg{
    background-color: white;
}

footer .social li a > span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-overlay {
    z-index: 1;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .66);
    z-index: -1;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
      position: relative;
      background-color: black;
      height: 75vh;
      min-height: 25rem;
      width: 100%;
      overflow: hidden;

}

.hero.overlay {
    position: relative;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: 1;
}

/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
  .hero {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
  }

  .hero video {
    display: none;
  }
}



.homepage-section {
    padding-top:5rem;
    padding-bottom:5rem;

}


.homepage-section h1{
    font-size: 3.3rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 3rem;
}


.homepage-section h1:after {
    content:'';
    position:absolute;
    left:0; right:0;
    top:100%;
    margin:10px auto;
    width:10%;
    height:6px;
}

@media (max-width: 767px) {
    .homepage-section h1{
         font-size: 2rem !important;
         padding-bottom: 2rem !important;
    }


    .homepage-section p {
        padding-top: 2rem !important;
        font-size: 1.1rem !important;
    }

}

.homepage-section-text-light {
    color: #ffffff;
}

.homepage-section-text-dark {
    color: #545454;
}


.homepage-section-text-light h1:after {
    background-color: #ffffff;
}

.homepage-section-text-dark h1:after {
    background-color: #545454;
}

.homepage-section p {
    padding-top: 3rem;
    font-size: 1.5rem;
}

.heading {
    font-size: 50px;
    font-weight: 700;
}

.btn.custom-white-2 {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn.btn-white {
    background-color: white;
}
.btn.btn-white:hover{
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}


.btn.custom-white-2:hover {
    background-color: #fff;
    color: #234bbc;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1rem;
}


.hero img {
    border-radius: 7px;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
}

.summary h3 a{
    color: #000;
    font-weight: 500;
}

.step {
    position:relative;
}

.step .more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
}

 .step:hover:before,  .step:focus:before {
    opacity: 1;
    visibility: visible;
}

.step:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: #4877fb;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.step:hover .more, .step:focus .more {
    background: #234bbc;
    color: #fff;
}


.project-gallery .nav a {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;

}


.project-gallery .nav {
    margin: 10px -3px 0;
    border:none;
}

.project-gallery .nav a::before {
    background: #dadada none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
    transition: .3s;
}

.project-gallery .nav a.active:before {
    opacity: 0;
}

.project-gallery .nav a:hover::before {
    opacity: 0;
}


#clients-list img {
    max-height: 100px;
}

.swiper-pagination {
    position: unset
}
.swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    border-radius: 3px;
    background: rgba(0,0,0,0);
    border: 2px solid #1d2327;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #545454;
}

.swiper-wrapper {
    padding-bottom: 30px;
    padding-top: 30px;
}



.project-gallery .nav-tabs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section .heading {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 30px;
}

section .heading-2 {
    font-size: 24px;
    font-weight: bold;
}



footer .widget h3, footer .widget .h3 {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

footer .widget .links li {
    margin-bottom: 10px;
}

footer .widget .links li a {
    color: #777;
}

footer .widget {
    margin-bottom: 0;
    display: block;
    position: relative;
    z-index: 1;
}

footer .widget .links li a:hover{
    color: #270d0d;
    font-weight: 700;
}

.pagination {
    --bs-pagination-active-bg: #244bbc;
    --bs-pagination-active-border-color: #244bbc;
}

.pagination .page-item {
    margin-right:5px;
}

.pagination .page-item:last-child {
    margin-right:0;
}

.pagination li a, .pagination li span {
    color: #000000;
    text-align: center;
    display: inline-block;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
}


.pagination li.active a, .pagination li.active span, .pagination li:hover a, .pagination li:hover span {
    background: #244bbc;
    color: #fff;
    border: 1px solid transparent;
}


.horizontal-scrollable {
    overflow-x: auto;
    white-space: nowrap;
    margin: 33px 0;
}


/*--------------------------------------------------------------
# Misc 
--------------------------------------------------------------*/

.grecaptcha-badge {
  display: none !important;
}