/*
font-family: 'Roboto', sans-serif; 
font-family: 'Abril Fatface', serif;
font-family: 'DM Serif Display', serif;
font-family: 'DM Serif Text', serif;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Lobster', sans-serif;
font-family: 'Outfit', sans-serif;
font-family: 'Pacifico', cursive;
font-family: 'Sacramento', cursive;
font-family: 'Lato', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'IBM Plex Sans', sans-serif;
*/
/********** Template CSS **********/
:root {
    --primary: #5b46e9;
    --secondary: #F6F6F6;
    --light: #FFF;
    --dark: #1f1a41;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.floating {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
   }
   
   .fab-icon {
    margin-top: 16px;
   }

   .floating:hover {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    transition: 0.8s;
    background-color: #000;
    color: #25d366;
    border-radius: 10px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
   }   
   
.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #ffffff;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    /*font-family: 'Barlow', sans-serif;*/
    padding: 35px 15px;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--secondary);
    outline: none;
    transition: .5s;
}

.bg-blue {
    background-color: #5542d8; /* You can replace 'blue' with the desired shade of blue */
}

/* Update the color of the links in the blue navbar */
.bg-blue .navbar-light .navbar-nav .nav-link {
    color: white; /* You can adjust the color to suit your design */
}

/* Update the hover and active colors for the links in the blue navbar */
.bg-blue .navbar-light .navbar-nav .nav-link:hover,
.bg-blue .navbar-light .navbar-nav .nav-link.active {
    color: var(--dark); /* You can replace '--primary' with the color you want on hover and active states */
    background: #ffffff65;
    transition: 1s;
}

.navbar-brand img
{
    filter: drop-shadow(5px 3px 3px #1f1a41);
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--dark);
    background: #ffffff65;
    transition: 1s;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        padding: 10px 0;
        transition: 1s;
    }
}

.carousel-caption {
    font-family: 'Outfit', sans-serif;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.carousel-caption h1 {
    text-shadow: 1px 1px 3px #1f1a41;
    font-size: 50px;
    font-weight: 600 !important;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        text-shadow: 1px 1px 3px #1f1a41;
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        text-shadow: 1px 1px 3px #1f1a41;
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.team-item img {
    transform: scale(1.05);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    font-family: 'Outfit', sans-serif;
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -20px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.feature
{
    font-family: 'Outfit', sans-serif;
    background: #5542d8;
    color: #20194d;
}

.testimonial-carousel .owl-nav {
    font-family: 'Outfit', sans-serif;
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    font-family: 'Outfit', sans-serif;
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #181818;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

.feature1
{
    margin: 0;
    padding: 0;
}

.feature1 .containerf
{
    font-family: 'Outfit', sans-serif;
    margin-left: 7%;
    margin-right: 7%;
    margin-bottom: 2%;
    padding: 0;
    border: 1px solid #5b46e9;
    background: #5542d8;
    border-radius: 15px;
}


.feature1 .containerf .text h2
{
    text-align: left;
    font-weight: bolder;
    margin-left: 2%;
    margin-top: 2%;
    padding-top: 2%;
    font-size: 40px;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

.feature1 .containerf .text p
{
    font-weight: normal;
    margin-left: 2%;
    font-size: 22px;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

.feature1 .containerf .btn
{
    margin: 2%;
    border: 1px solid #000;
}

.feature1 .containerf img 
{
    border-radius: 15px;
    width: 127%;
    height: 320px;

}


.feature2
{
    margin: 0;
    padding: 0;
}

.feature2 .containerf
{
    font-family: 'Outfit', sans-serif;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 1%;
    border: 1px solid #000000;
    background: #5542d8;
    border-radius: 15px;
}

.feature2 .containerf .text p
{
    font-weight: normal;
    margin-left: 2%;
    font-size: 35px;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

.feature2 .containerf .btn
{
    margin-top: 20%;
    border: 1px solid #000;
}

.feature2 .containerf img 
{
    border-radius: 15px;
    width: 100%;
    height: 180px;

}

.container-fluids
{
    margin: 2%;
    padding: 2%;
    
}

.container-fluids h4
{
    margin-left: 2%;
    display: inline-block;
    padding: 5px;
    color: #1f1a41;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.container-fluids .d-flex
{
    width: 100%;
    display: grid;
    margin: 0;
    padding: 0;
}

.container-fluids .d-flex a img 
{
    background: #efefef;
    width: 90%;
    margin: 2%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.container-fluids .d-flex a img:hover
{
    width: 85%;
    transition: 0.2s;
    border: 2px solid #20194d;
    border-radius: 15px;
}

.Clients
{
    width: 100%;
    display: grid;
    margin: 0;
    padding: 0;
}

.Clients h1
{
    text-align: center;
}

.Clients img
{
    background: #fff;
    border: 1px solid #20194d;
    width: 100%;
    margin: 2%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.documentss
{
    background: #fff;
    margin: 2%;
    padding: 1%;
}

.documentss h1
{
    text-align: center;
}

.pdf-links {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    font-size: small;
    font-weight: 180;
    cursor: pointer;
  }

.pdf-linkss {
    font-family: 'Outfit', sans-serif;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
    color: #5542d8;
    font-size: large;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #5542d8;
    margin: 1%;
    transition: all 0.5s;
  }

  .pdf-linkss:hover {
    background: #5542d8;
    color: #fff;
  }