@font-face {
    font-family: 'Charter';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Charter Regular.otf') format('woff');
}
@font-face {
    font-family: 'TestSohne-Dreiviertelfett';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/TestSohne-Dreiviertelfett-BF663d89ccc5f66.otf') format('woff');
}
@font-face {
    font-family: 'HelveticaNeueLight';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/HelveticaNeueLight.otf') format('woff');
}

:root {
    --TestSohne-Dreiviertelfett: 'TestSohne-Dreiviertelfett'; 
    --Charter: 'Charter';
    --HelveticaNeueLight: "HelveticaNeueLight"
}
.blogHeroSection{
    background-image: url(../images/blogs/blogBanner.png);
    background-position: 100% 100%;
    background-size: 100% 100%;
    color: #FFFFFF;
    /* height: 20rem; */
    height: 22rem;
    display: flex;
    align-items: center;
    justify-content: center;
}.blogHeroSection h2{
    font-family: var(--TestSohne-Dreiviertelfett);
    margin-top: 5rem;
}
.blogHeroSection p{
    font-family: var(--Charter);
    font-size: 15px;
}
.blogCardMain{
    width: 90%;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
}
.blogcard{
    width: 310px;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    border: 1px solid #d4d4d4;
    border-radius: 15px;
    padding: 10px;
}
.blogcard:hover{
    box-shadow: rgba(0, 0, 0, 0.30) 0px 1px 15px;

}
/* .blogcard:hover:after { transform: scaleX(1); }
.blogcard:after {
    display:block;
    content: '';
    border-bottom: solid 3px #019fb6;  
    transform: scaleX(0);  
    transition: transform 300ms ease-in-out;
    transform-origin:  0% 50%; 
  } */
.blogcard img{
    width: 100%;
    height: 180px;
    border-radius: 10px;
}
.blogcard h6, .carousel-content h3{
    margin-top: 10px;
    color: #242424;
    font-family: var(--TestSohne-Dreiviertelfett);
    font-size: 15px;
    /* padding: 0 10px; */
}
.blogcard p, .carousel-content p{
    color: #616161;
    font-family: var(--Charter);
    margin-bottom: 0px;
    font-size: 15px;
    /* padding: 0 10px; */
}
.blogcard a {
    color: #000;
}
.readMoreBlog{
    color: #556eed;
    font-size: 13px;
    font-family: var(--HelveticaNeueLight);
    display: block;
    text-align: right;
    margin-top: 10px;
}
.carousel-btn{
    height: 10px !important;
    width: 10px !important;
    border-radius: 50%;
}
#carouselExampleFade{
    margin-top: 7rem;
}
.carousel-item{
    width: 100%;
    height: 50vh;
    position: relative;
}
.carousel-item img{
    height: 100%;
}
.carousel-content{
    position: absolute;
    bottom: 6rem;
}
.carousel-content{
    width: 90%;
    /* padding: 10px; */
}
.carousel-content p, .carousel-content h3{
    color: #fff;
}
.carousel-content h3{
    font-size: 20px;
}
.carousel-content p{
    font-size: 13px;
}
.slide1{
    background-image: url(../images/blogs/blogSlide1.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 100% 100%;
}
.slide2{
    background-image: url(../images/blogs/blogSlide2change.jpg);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 100% 100%;
}
.slide3{
    background-image: url(../images/blogs/blogSlide3.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 100% 100%;
}
.carousel-content a{
    color: #80D7F7;
}
.carousel-indicators{
    width: 88%;
    margin: 2rem auto;
    justify-content: flex-start;
}
.carouselDataMain{
    width: 90%;
    margin: 0 auto;
}

.navmainfixed {
    top: 0 !important;
}

/* Custom Carousel Styling */
.custom-carousel {
position: relative;
width: 98%;
margin: 10px auto;
overflow: hidden;
}

.carousel-slide {
position: absolute;
opacity: 0;
transition: opacity 1s ease-in-out;
width: 100%;
/* height: 96.5vh; */
height: 50.5vh;
margin-top: 4.5rem;

/* height: 100%; */
}

.carousel-slide img {
width: 100%;
height: 100%;
display: block;
}

.carousel-slide.active {
opacity: 1;
position: relative;
}


.carousel-control {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: transparent;
color: white;
display: none;
border: none;
cursor: pointer;
font-size: 2rem;
padding: 10px;
z-index: 10;
}

.carousel-control.prev {
left: 20px;
}

.carousel-control.next {
right: 20px;
}

.carousel-indicators {
text-align: center;
margin-top: 10px;
}

.indicator {
display: inline-block;
width: 10px;
height: 10px;
margin: 5px;
background-color: #333;
border-radius: 50%;
cursor: pointer;
}

.indicator.active {
background-color: #ccc;
}

@media(min-width: 600px){
    .blogCardMain{
        justify-content: space-between;
    }
    .carousel-item{
        height: 80vh;
    }
    #carouselExampleFade{
        margin-top: 3.5rem;
    }
    
    .carousel-content{ 
        width: 400px;
    }
    .carousel-slide{
        height: 55.5vh;
        margin-top: 3.4rem;
    }
}
@media(min-width: 768px){
    .carousel-slide{
        height: 80.5vh;
    }
    .blogCardMain{
        justify-content: space-between;
        background-color: #fafafa;
    }
    .blogcard h6{
        font-size: 17px;
    }
    .blogHeroSection{
        height: 17rem;
    }
    .carousel-content{ 
        width: 500px;
        bottom: 9rem;
    }
    .carousel-item{
        height: 96.5vh;
    }
    .carousel-content h3{
        font-size: 25px;
    }
    .carousel-content p{
        font-size: 15px;
    }
    .navbar-brand img {
        width: 73%;
    }
}
@media(min-width: 992px){
    .carousel-slide{
        height: 96.5vh;
        margin-top: 0;
    }
    .blogCardMain{
        width: 90%;
    }
    .blogHeroSection p, .blogcard p {
        font-size: 16px;
    }
    #carouselExampleFade{
        width: 98%;
        margin: 10px auto;
    }
    .carousel-content{ 
        width: 500px;
        bottom: 6rem;
    }
    .navmain{
        top: 12px;
    }
    .carousel-content h3{
        font-size: 30px;
    }
    .carousel-content p{
        font-size: 17px;
    }
}

@media(min-width: 1200px){
  
    .blogCardMain{
        width: 80%;
    }

}