
html {
    scroll-behavior: smooth;
}
body {
    color: #373f51;
    font-family: 'kohinoor-odia', sans-serif;
	font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
}
wrapper {
    min-height: 100vh;
    overflow: hidden;
}





/*------------------------------
            Global        
------------------------------*/
a {
    color: #373f51;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a:hover {
    color: #373f51;
    text-decoration: none;
}
h3 {
	position: relative;
    color: #373f51;
    font-weight: 400;
    margin-bottom: 3rem;
}
h4 {
    font-weight: 400;
    margin-bottom: 1rem;
}
h5 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
p {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}
ul {
    font-size: 1.125rem;
    line-height: 1.5;
}
address {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}
b {
    font-weight: 600;
}
.f54 {
    font-size: 3.375rem;
}
.f48 {
    font-size: 3rem;
}
.f40 {
    font-size: 2.5rem;
}
.f32 {
    font-size: 2rem;
}
.f28 {
    font-size: 1.75rem;
}
.f24 {
    font-size: 1.5rem;
}
.f22 {
    font-size: 1.375rem;
}
.f18 {
    font-size: 1.125rem;
}
.f16 {
    font-size: 1rem;
}
.trans {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}
.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.anchor {
    z-index: -1;
    position: relative;
    padding-top: 4rem;
    margin-top: -4rem;
}
@media (max-width: 1499px) {
    .f54 {
        font-size: 2.75rem;
    }
    .f48 {
        font-size: 2rem;
    }
    .f40 {
        font-size: 2rem;
    }
    .f32 {
        font-size: 1.5rem;
    }
    .f28 {
        font-size: 1.25rem;
    }
    .f24 {
        font-size: 1.125rem;
    }
    .f22 {
        font-size: 1.125rem;
    }
    .f18 {
        font-size: 1rem;
    }
    h5, h6, p, ul, address {
        font-size: 1rem;
    }
}
@media (max-width: 767px) {
    .anchor {
        padding-top: 3rem;
        margin-top: -3rem;
    }
}





/*------------------------------
            Animation      
------------------------------*/
.animation {
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #800000;
}
.animation .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}
.animation .content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    margin: auto;
    transition: all 1.5s ease-in-out;
    opacity: 0;
}
.animation .content h1.visible {
    opacity: 1;
}

  @keyframes blink {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  /* Apply the animation to the underscore */
  .blinking-underscore {
    animation: blink 1s infinite; /* Change the duration as needed */
  }



/*------------------------------
            Navbar
------------------------------*/
.navbar {
    z-index: 999;
    padding: 1rem 0;
}
.navbar .navbar-brand {
    width: 10rem;
    padding: 0;
}
.navbar .navbar-toggler {
    cursor: pointer;
    border: none;
    outline: none;
}
.navbar .fas {
    color: #fff;
    transform: scale(1.5, 1.5);
    padding: 0.5rem;
}
.navbar button:focus {
    outline: none;
    box-shadow: none;
    border: none;
}
.navbar .nav-link {
    position: relative;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 0!important;
    margin: 0 2rem;
}
.navbar.navbar-min {
    background-color: #2b3b4a;
    padding: .5rem 0;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}
@media (min-width: 992px) {
    #home_page .navbar:not(.navbar-min) .nav-link  {
        color: #373f51;
    }
    .navbar.navbar-min .navbar-brand {
        width: 8rem;
    }
    .navbar .nav-link {
        border-bottom: 2px solid transparent;
    }
    .navbar .nav-link.active {
        border-color: #b11f24;
    }
}
@media (min-width: 1440px) {
    .navbar .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media (max-width: 1199px) {
    .navbar .nav-item.nav-link {
        font-size: 14px;
        margin: 0 .5rem;
    }
    .navbar .nav-item.nav-link:not(:last-child)::after {
        top: .5rem;
        right: -.5rem;
        height: .875rem;
    }
}
@media (max-width: 991px) {
    .navbar {
        background-color: #2b3b4a;
        padding: 0.5rem 0;
        box-shadow: 0 0 10px rgba(0,0,0,.2);
    }
    .navbar .navbar-brand {
        width: 8rem;
        padding-left: 0.9375rem;
    }
    .navbar .navbar-nav {
        text-align: center;
        padding: 1rem 0 0.5rem;
        margin: 0;
    }
    .navbar .nav-item.nav-link {
        font-size: 1rem;
        padding: .125rem;
        margin: 0;
    }
}



/*------------------------------
            Header
------------------------------*/
header {
    position: relative;
    color: #fff;
}
header::before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 59, 74, .5);
    content: '';
}
header .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 30rem;
    padding: 6rem 0 2rem;
}
header h1 {
    margin: 0 0 1rem;
}
header h2 {
    margin: 0;
}
header .video {
    z-index: -3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
header .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1399px) {
    header .content {
        min-height: 30rem;
    }
}
@media (max-width: 991px) {
    header .content {
        min-height: 18rem;
        padding: 10rem 0 3rem;
    }
}
	
/*------------------------------
            Home      
------------------------------*/
.home {
	position: relative;
}
#homeCarousel .carousel-item {
    position: relative;
}
.home .content {
    min-height: 100vh;
}
.home h1 {
    color: #373f51;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    margin: auto;
}
.home .video {
    z-index: -3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.home .video::after {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(231, 226, 205, 0.25);
}
.home .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home a {
    position: relative;
    bottom: 4rem;
    text-align: center;
    font-size: 3rem;
}
.home a.scroll-min {
    opacity: 0;
}
.snapshot {
    color: #fff;
    background: #b11f24;
    text-align: center;
    padding: 5rem 0;
}
.snapshot .title {
    font-weight: 400;
    margin: 0;
}
.what-we-do {
    color: #fff;
    background: linear-gradient(rgba(55, 63, 81, 0.8),rgba(55, 63, 81, 0.8)), url(../images/art/indexalgae.png) center no-repeat;
    background-size: cover;
    padding: 8rem 0;
}
.what-we-do h3 {
    color: #fff;
    text-align: center;
}
.what-we-do .media {
    margin-top: 3rem;
}
.what-we-do .img-container {
    width: 20%;
    background-color: rgba(55, 63, 81, 0.9);
    padding: 1.25rem;
    margin-bottom: auto;
    border-radius: 100%;
}
.what-we-do .media-body {
    width: 80%;
    padding-left: 1rem;
}
.sector {
    padding: 6rem 0 7rem;
}
.sector h3 {
    text-align: center;
}
.sector h3:not(:first-child) {
    margin-bottom: 2rem;
}
.sector hr {
    opacity: 1;
    background-color: #b11f24;
    max-width: 4rem;
    height: .25rem;
    margin: -1.5rem auto 1.5rem;
}
.sector .content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 20rem;
    background-size: cover!important;
    text-align: center;
    margin-top: 1rem;
}
.sector .content:not(:hover) > .info {
    opacity: 0;
}
.sector .title {
    color: #fff;
    font-weight: 300;
    margin: 1rem 0 .5rem;
    margin: auto;
}
.sector .info {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 59, 74, 1);
    padding: 1rem;
}
.sector p {
    color: #fff;
    font-style: italic;
    margin: auto;
}
.different {
    background-color: #f0f0f0;
    padding: 6rem 0 12rem;
}
.different h3 {
    text-align: center;
}
.different .row:nth-child(2),
.different .row:nth-child(3) {
    position: relative;
    left: -5%;
}
.different .col-3 {
    padding: 0;
}
.different .img-container {
    position: relative;
    margin-bottom: -4.75rem;
}
.different .img-container img.hex-icon {
    position: relative;
    left: -1rem;
    width: calc(100% + 2rem);
    transform: rotate(30deg);
    opacity: .95;
}
.different .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
.different .info img {
    width: 6rem;
    height: 6rem;
}
.different .title {
    color: #fff;
    margin: 1rem 0 0;
}
@media (min-width: 1200px) {
    .what-we-do {
        background-attachment: fixed;
    }
}
@media (max-width: 1199px) {
    .different .img-container {
        margin-bottom: -4rem;
    }
}
@media (max-width: 991px) {
    .sector .content {
        height: 14rem;
    }
    .different .img-container {
        margin-bottom: -2.5rem;
    }
    .different .img-container img.hex-icon {
        left: -.5rem;
        width: calc(100% + 1rem);
    }
}
@media (max-width: 767px) {
    .snapshot {
        padding: 4rem 0;
    }
    .snapshot .col-md-3:not(:first-child) .content {
        margin-top: 2rem;
    }
    .snapshot .num {
        margin: 0;
    }
    .what-we-do {
        padding: 4rem 0;
    }
    .what-we-do h3 {
        margin-bottom: 1rem;
    }
    .what-we-do h5.f22 {
        margin-bottom: .5rem;
    }
    .what-we-do .img-container {
        padding: 1rem;
    }
    .sector {
        padding: 4rem 0;
    }
    .different {
        padding: 4rem 0 6rem;
    }
    .different .img-container {
        transform: scale(.92);
        margin-bottom: -2rem;
    }
    .different .info img {
        width: 3rem;
        height: 3rem;
    }
    .different .title {
        font-size: .875rem;
        margin: 0;
    }
}





/*------------------------------
            About        
------------------------------*/
.intro {
    background-color: #b11f24;
    padding: 5rem 0;
}
.intro h3 {
    color: #fff;
    margin: 0;
}
.intro h3 b {
    color: #F0C987;
    font-weight: 400;
}
.about {
    padding: 6rem 0;
}
.about .row {
    background-color: #fafafa;
}
.about .row:not(:last-child) {
    margin-bottom: 4rem;
}
.about .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 2rem;
}
.about .img-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.about .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about p {
    margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .about .row:nth-child(even) .col-lg-6:first-child {
        order: 2;
    }
    .about .row:nth-child(even) .col-lg-6:last-child {
        order: 1;
    }
}
@media (max-width: 991px) {
    .about .content {
        padding: 1rem;
    }
}





/*------------------------------
            Services        
------------------------------*/
.services {
    color: #fff;
    background-color: #2b3b4a;
    padding: 6rem 0;
}
.services h3 {
    color: #fff;
}
.services .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100% );
    padding: 2.5rem 1.5rem;
    border: 1px solid #fff;
}
.flip-container, .front, .back {
    height: 24rem;
}
.front {
    text-align: center;
}
.services .img-container img {
    width: 8rem;
    height: 8rem;
    margin: auto;
}
.services .title {
    font-weight: 600;
    text-transform: uppercase;
    margin: 2rem 0 1rem;
}
.services p {
    margin: 0;
}
.services p b {
    color: #F0C987;
    font-weight: 400;
}
@media (max-width: 991px) {
    .services .img-container img {
        width: 5rem;
        height: 5rem;
    }
    .flip-container, .front, .back {
        height: 16rem;
    }
    .services .content {
        padding: 1rem;
    }
    .services p {
        font-size: .75rem;
    }
}





/*------------------------------
            News        
------------------------------*/
.news {
    padding: 8rem 0;
}
.news .col-12:not(:last-child) {
    margin-bottom: 2rem;
}
.news .img-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 14.375rem;
    padding: 1rem;
    border: 1px solid #BED3CB;
    margin-bottom: 1rem;
}
.news .img-container img {
    max-width: 9.5rem;
    max-height: 9.5rem;
}
.news .title {
    font-weight: 500;
    line-height: 1.1;
    padding-bottom: 1rem;
    border-bottom: 1px solid #BED3CB;
    margin-bottom: 1rem;
}
.news .info {
    color: #6B7177;
}
.news .info span {
    padding: 0 .5rem;
}
.news p {
    color: #6B7177;
}
@media (min-width: 1200px) {
    .news .col-12:not(:last-child) {
        margin-bottom: 4rem;
    }
    .news .img-container {
        margin-right: 2rem;
    }
    .news .info {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 1199px) {
    .news {
        padding: 4rem 0;
    }
}
@media (max-width: 767px) {
    .news .img-container {
        height: 10rem;
    }
    .news .img-container img {
        max-width: 100%;
        max-height: 100%;
    }
}





/*------------------------------
           News Article
------------------------------*/
.news-article {
    padding: 6rem 0;
}
.news-article .nav {
    margin-bottom: 4rem;
}
.news-article .nav-item {
    font-weight: 300;
    text-transform: uppercase;
}
.news-article .nav-item i {
    color: #45464E;
}
.news-article .date {
    letter-spacing: 1px;
    margin-bottom: .75rem;
}
.news-article .title {
    color: #000;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}





/*------------------------------
            Contact        
------------------------------*/
.contact {
    padding: 8rem 0;
}
.contact .form-control,
.contact .form-select {
    position: relative;
    background-color: #fff;
    padding: 1rem 1.25rem 1rem 2.625rem;
    border: 1px solid #2D3B4A;
    border-radius: .625rem;
    margin-bottom: 1.375rem;
}
.contact .form-control:focus,
.contact .form-select:focus {
    box-shadow: 0 0 0 .25rem rgba(45, 59, 74, .25);
    outline: #2D3B4A;
}
.contact img {
    z-index: 3;
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    width: 1rem;
    height: 1rem;
}
.contact .btn {
    display: inline-block;
    color: #fff;
    background-color: #373f51;
    width: auto;
    min-width: 13rem;
    letter-spacing: .72px;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 3rem;
    border: none;
    border-radius: 1rem;
    transition: all .3s ease-out;
}
.contact .btn:hover {
    background-color: #b11f24;
}





/*------------------------------
            Terms        
------------------------------*/
.terms {
    padding: 5rem 0;
}





/*------------------------------
            Footer        
------------------------------*/
footer {
    z-index: 99;
    color: #fff;
    background: #2b3b4a;
    padding: 1rem 0;
}
footer img {
    width: 8rem;
    margin-bottom: 1rem;
}
footer p {
    margin: 0;
}
footer a {
    color: #fff;
}
footer a:hover {
    color: #fff;
    opacity: .9;
}
@media (max-width: 991px) {
    footer a {
        display: block;
        margin: .25rem 0 0;
    }
    footer a.ms-4 {
        margin-left: 0!important;
    }
    footer span.px-2 {
        display: none;
    }
}
