/********** Template CSS **********/
:root {
    --primary: #E40115;
    --secondary: #5F656F;   
    --light: #F5F5F5;
    --dark: #02245B;
}

.btn-elecsbe {
    background-color: #02245B !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}

/* #main {
    visibility: hidden;
} */

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: visible;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** New Spinner Design - Start ***/
/* 
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #02245B;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #Fff;
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
} */
/*** New Spinner Design - End***/



/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

/* .navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
} */

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    /* padding: 20px 0; */
    color: var(--light);
    /* font-size: 18px; */
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        background: linear-gradient(360deg, #ffffff5c, #ffffff6b);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        z-index: 3 !important;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.breadcrumb-item,
.breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    /* margin: 6rem 0; */
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 3px;
    width: 110px;
    height: 110px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/*** Service CSS --- certificate ***/
.service-certificate-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-certificate-item .service-certificate-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #d10909;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-certificate-item .service-certificate-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-certificate-item .service-certificate-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-certificate-item:hover .service-certificate-title {
    top: -100%;
}

.service-certificate-item .service-certificate-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-certificate-item:hover .service-certificate-text {
    top: 0;
}

.service-certificate-item .service-certificate-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-certificate-item:hover .service-certificate-text::before {
    top: -55px;
}

.service-certificate-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-certificate-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

/* .project-item img {
    transition: .5s;
} */



/* .project-item::before {
    content: '';
    display: block;
    position: absolute;
    height: 0%;
    width: 100%;
    bottom: 0;
    transition: height 0.5s ease-out;
    background: linear-gradient(to bottom, transparent 0%, #02245B 100%);
} */

/* .project-item:hover::before {
    height: 100%;
} */

/* .project-item:hover img,
.project-item:hover > .project-info {
    visibility: visible;
    height: 100%;
}

.project-info h5 {
    margin-top: -47px;
    margin-left: 24px;
} */

/* .project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -150px;
} */

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s; 
}

/* .project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px; 
}  */


.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block !important;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev {
  left: -18px;
  position: absolute;
}

.project-carousel .owl-nav .owl-next {
  right: -18px;
  position: absolute;
}

/* Updated CSS */

.project-info {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0;
}

.project-info::before {
    content: '';
    display: block;
    position: absolute;
    height: 0%;
    width: 100%;
    bottom: 0;
    padding: 0;
    transition: height 0.5s ease-out;
    background: linear-gradient(to bottom, transparent 0%, #02245B 100%);
}

.project-info:hover::before {
    height: 100%;
}

.project-info:hover > .bottom-left {
  display: block;
}

.project-info:hover > .centered {
  display: block;
}


.image-btm{
    float: left;
    padding: 5px;
}

.project-info > .bottom-left {
  position: absolute;
  bottom: 8px;
  left: -10px;
  display: none;
}

.project-info > .centered {
  position: absolute;
  bottom: 0%;
  left: 5%;
  /* width: max-content; */
  display: none;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .5s;
    text-decoration: double;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}


/*************  Arpan's CSS  *************/
/*************  Start  *************/
.a_imange {
    /* height: 100%;
    width: 100%; */

    /* margin:auto;
    background-image: url('https://i.imgur.com/Ljd0YBi.jpg'); 
    background-repeat: no-repeat;
    background-size:cover;
    background-position: 50%;
    background-color: #fff;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index:-1;
    position:fixed; */


    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    /* background-image: url(New_Design/img/slide/slides/6.jpg); */
    background-position: 0% 50%;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: 101.602% 106.682%;
}

 /* Custome CSS  */

 .text-primary{color:#E40115 !important}
 .bg-primary{background-color:#E40115 !important}

 /*** Background Image ***/

/* body {
  background-image: url("https://f.hellowork.com/blogdumoderateur/2013/02/nyan-cat-gif-1.gif");  
}   */

/*** extra -- End ***/
/* #overlayText {
    position:absolute;
     top:30%;
     left:20%;
     z-index:1;
}
   
#topText {
     color: white;
     font-size: 20px;
     align-self: center; 
} */


/* video background */
/* #background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  } */
  
  /*** page content ***/
  
  /* body {
    font-family: Trebuchet MS;
    margin: 0;
    padding: 0;
  }
  
  h1, h2 {
    color: white;
    font-weight: bold;
    text-align: center;
  }
  
  h1 {
    font-size: 6rem;
    margin-top: 30vh; 
  }
  
  h2 { font-size: 3rem; }
  
  @media (max-width: 750px) {
      #background-video { display: none; }
      body {
        background: url("https://assets.codepen.io/6093409/river.jpg") no-repeat;
        background-size: cover;
      }
  }
  
  main {
    background-color: white;
    font-size: 2rem;
    margin-top: 50vh;
    padding: 10px;
    color: black;
    position: relative;
  }  */

/*** Extra -- End ***/


/*************  End  *************/
/*************  Arpan's CSS  *************/


/*** Responsive Image Css ***/ 

/*** Navbar ***/
.navbar1.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar1 .navbar-brand1 {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

 .navbar1 .navbar-brand1::after {
    position: absolute;
    content: "";
    /* width: 50px;
    height: 100%; */
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: none;
}

.navbar1 .navbar-nav1 .nav-link1 {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}


.navbar1 .navbar-nav1 .nav-link1:hover,
.navbar1 .navbar-nav1 .nav-link1.active {
    /* color: var(--primary); */
    color: var(--light);
}

.navbar1 .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar1 .navbar-nav1 .nav-link1  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar1 .navbar-nav1 {
        border-top: 1px solid #EEEEEE;
    }
}
     
@media (min-width: 992px) {
    .navbar1 .nav-item1 .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar1 .nav-item1:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** New Full Size Navbar ***/

header .sticky #navbarCollapse .dropdown-content-new {
    background: white;
    background-color: rgba(0,66,137,.8784313725490196);
}

.navbar-new {
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar-new a {
  float: left;
  font-size: 16px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown-new {
  float: left;
  overflow: hidden;
}

.dropdown-new .dropbtn-new {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white ;
  padding: 14px 16px;
  background-color: inherit;
  font: inherit;
  margin: 0;
}

.navbar-new a:hover, .dropdown-new:hover .dropbtn-new {
  /* background: linear-gradient(360deg, #ffffff5c, #ffffff6b); */
  background-color: rgba(0,66,137,.8784313725490196);
}

.dropdown-content-new {
  display: none;
  position: absolute;
  background-color: rgba(0,66,137,.8784313725490196);
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  transform: translate(0, 0%);
  transition: 5s !important;
  padding-bottom: 1rem;
}

.dropdown-content-new .header-new {
  background: transparent;
  padding: 16px;
}

.dropdown-new:hover .dropdown-content-new {
  display: block;
}

/* Create three equal columns that floats next to each other */

.column-new {
  float: left;
  /* padding: 4px; */
  /* margin-top: -32px !important;   */
}

.column-new span {
  padding-left: 4rem !important;
}

.column-new a {
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  float: none;
  width: max-content;
  color: #fff !important;
  margin: -3px;
  position: relative;
  display: block;
  text-align: left;
  text-decoration: none;
}
      
/* .column-new a:hover { */
  /* background: linear-gradient(360deg, #ffffff5c, #ffffff6b); */
  /* color: linear-gradient(148deg, rgba(2,36,91,1) 4%, rgba(228,1,21,1) 100%); */
  /* -webkit-text-fill-color: linear-gradient(148deg, rgba(2,36,91,1) 4%, rgba(228,1,21,1) 10%); */
  /* -webkit-background-clip: text; */
/* } */


.column-new a::after {
	opacity: 1;
	transform: scale(0);
	transform-origin: center;
}
.column-new a:hover::after,
.column-new a:focus::after{
	transform: scale(1);
}

.column-new a:hover {
  color:#E40115 !important;
}

.column-new  a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.column-new  a:hover::before {
  transform: scaleX(1);
}


.column-new a {
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  float: none;
  width: max-content;
  color: #fff !important;
  margin: -3px;
  position: relative;
  display: block;
  text-align: left;
  text-decoration: none;
}
      
/* .column-new a:hover { */
  /* background: linear-gradient(360deg, #ffffff5c, #ffffff6b); */
  /* color: linear-gradient(148deg, rgba(2,36,91,1) 4%, rgba(228,1,21,1) 100%); */
  /* -webkit-text-fill-color: linear-gradient(148deg, rgba(2,36,91,1) 4%, rgba(228,1,21,1) 10%); */
  /* -webkit-background-clip: text; */
/* } */


.column-new a::after {
	opacity: 1;
	transform: scale(0);
	transform-origin: center;
}
.column-new a:hover::after,
.column-new a:focus::after{
	transform: scale(1);
}

.column-new a:hover {
  color:#E40115 !important;
}

.column-new  a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.column-new  a:hover::before {
  transform: scaleX(1);
}

.text-justify {
    text-align: justify;
}

.Text-Bb { color: #02245B; }
.Text-Bw { color: #ffffff; }


/* Loader CSS -- START */

.loader {
    border: 16px solid #e40115;
    border-radius: 50%;
    border-top: 16px solid #02245b;
    border-bottom: 16px solid #02245b;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

/* Loader CSS -- END */



.underline {
  font-size: 20px;
  font-weight: 600;
  margin: auto !important;
  cursor: pointer;
  float: none;
  width: max-content;
  color: #fff !important;
  margin: -3px;
  position: relative;
  display: block;
  text-align: left;
  text-decoration: none;
}
      
/* .column-new a:hover { */
  /* background: linear-gradient(360deg, #ffffff5c, #ffffff6b); */
  /* color: linear-gradient(148deg, rgba(2,36,91,1) 4%, rgba(228,1,21,1) 100%); */
  /* -webkit-text-fill-color: linear-gradient(148deg, rgba(2,36,91,1) 4%, rgba(228,1,21,1) 10%); */
  /* -webkit-background-clip: text; */
/* } */


.underline::after {
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
}
.underline:hover::after,
.underline:focus::after{
    transform: scale(1);
}

.underline:hover {
  color:#E40115 !important;
}

.underline::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.underline:hover::before {
  transform: scaleX(1);
}


.underline {
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  float: none;
  width: max-content;
  color: #fff !important;
  margin: -3px;
  position: relative;
  display: block;
  /* text-align: left; */
  text-decoration: none;
}
      
/* .column-new a:hover { */
  /* background: linear-gradient(360deg, #ffffff5c, #ffffff6b); */
  /* color: linear-gradient(148deg, rgba(2,36,91,1) 4%, rgba(228,1,21,1) 100%); */
  /* -webkit-text-fill-color: linear-gradient(148deg, rgba(2,36,91,1) 4%, rgba(228,1,21,1) 10%); */
  /* -webkit-background-clip: text; */
/* } */


.underline::after {
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
}
.underline:hover::after,
.underline:focus::after{
    transform: scale(1);
}

.underline:hover {
  color:#E40115 !important;
}

.underline::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.underline:hover::before {
  transform: scaleX(1);
}


/* Effect One */
.btn-effect1 {
    overflow: hidden;
    position: relative;
    color: #fff;
    background-color: #02245b;
  }
  .btn-effect1 span {
    z-index: 20;
  }
  .btn-effect1:after {
    background: #ffffff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.25, 0.1, 0.25, 1);
    width: 50px;
    z-index: -10;
  }
  .btn-effect1:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .btn-effect1:hover {
    overflow: hidden;
    position: relative;
    color: #ffffff;
    background-color: #e40115 !important;
  }


/* Toggle Switch Css -- Start */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #02245B;
}

input:focus + .slider {
  box-shadow: 0 0 1px #02245B;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* Toggle Switch Css -- End */

/* Image Preview CSS Start */

.thumbnail {
  position: relative;
  z-index: 0;
}

.thumbnail:hover {
  background-color: transparent;
  z-index: 50;
}

.thumbnail span {
  /*CSS for enlarged image*/
  position: absolute;
  background-color: white;
  padding: 5px;
  left: -1000px;
  border: 1px solid;
  border-radius: 0.5rem;
  visibility: visible;
  color: black;
  text-decoration: none;
}

.thumbnail span img {
  /*CSS for enlarged image*/
  border-width: 0;
  padding: 2px;
}

.thumbnail:hover span {
  /*CSS for enlarged image on hover*/
  visibility: visible;
  top: 0;
  left: 60px; /*position where enlarged image should offset horizontally */
}

/* Image Preview CSS END */

