/********** Template CSS **********/
:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    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;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

/* Whatsapp icon */
.whatsapp-chat {
    position: fixed;
    bottom: 18px;
    left: 30px;
    z-index: 9999;
  }
  
  .whatsapp-chat img {
    width: 60px;
    transition: filter 0.5s;
  }
  
  .whatsapp-chat img:hover {
    filter: brightness(0.7) saturate(2) hue-rotate(90deg); /* Change the image color to dark green */
  }

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.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;
    border-radius: 50px;
}
.discover-btn{
    width: 200px;
    color: white;
    padding: 15px;
    border: 0px solid;
    border-radius: 50px;
    transition: linear 0.3s;
}
.discover-btn:hover{
    transition: 0.5s;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.service-contact{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
}
.news-container {
    background-image: url('/img/form.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  @media (max-width: 768px) {
    .news-container {
      background-size: contain;
      background-position: top;
    }
  }
button.snd-btn {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
  }
  @media (min-width: 768px) {
    /* Tablet and desktop styles */
    .news-container {
      height: 100vh;
    }
  
    .form {
      width: 50%;
    }
  
    input,
    textarea {
      font-size: 18px;
    }
  
    button.snd-btn {
      font-size: 18px;
    }
  }

.snd-btn:hover {
    transition: linear 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    color: orange;
    background-image: linear-gradient(180deg, orange 0%, white 50%, orange);
}


/*** Navbar ***/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}

/*** MAIL-TOPIC ***/

.mail-container{
    margin: 30px;
}
.mail-p{
    font-size: 20px;
    font-weight: 300;
} 
.mail-img-3 {
    text-align: center;
  }
  
  #responsive-image {
    max-width: 100%;
    height: auto;
  }
  
  @media only screen and (max-width: 767px) {
    #responsive-image {
      max-width: 100%;
      height: auto;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    #responsive-image {
      max-width: 100%;
      height: auto;
    }
  }
  
  @media only screen and (min-width: 1024px) {
    #responsive-image {
      max-width: 100%;
      height: auto;
    }
  }


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 18rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}

/*** CRM-TOPIC ***/

.crm-container{
    margin: 50px;
}

.crm-topic-1{
    color: black;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}
@media (max-width: 768px) {
.crm-topic-1 {
  font-size: 24px;
  line-height: 32px;
}
}
@media (max-width: 480px) {
.crm-topic-1 {
  font-size: 20px;
  line-height: 28px;
}
}

.crm-img-1 img {
    max-width: 100%;
    height: auto;
}
.crm-img-2 img {
    max-width: 100%;
    height: auto;
    }
.crm-img-3 img {
        max-width: 100%;
        height: auto;
    }
    .crm-img-4 img {
        max-width: 100%;
        height: auto;
    }
    .crm-img-5 img{
        max-width: 100%;
        height: auto;
    }
    .crm-img-6 img{
        max-width: 100%;
        height: auto;
    }
    .crm-img-7 img{
        max-width: 100%;
        height: auto;
        }
    
    .crm-img-9 img{
        max-width: 100%;
        height: auto;
        }
    .crm-img-11 img{
        max-width: 100%;
        height: auto;
        }
    
    .crm-img-12 img{
        max-width: 100%;
        height: auto;
        }
    .crm-img-13 img{
        max-width: 100%;
        height: auto;
        }
    

@media (min-width: 576px) { /* For phone */
    .crm-img-1 img,
    .crm-img-2 img,
    .crm-img-3 img,
    .crm-img-4 img,
    .crm-img-5 img,
    .crm-img-6 img,
    .crm-img-7 img,
    .crm-img-9 img,
    .crm-img-11 img,
    .crm-img-12 img,
    .crm-img-13 img{
        width: 100%;
    }
}

@media (min-width: 768px) { /* For tablet */
    .crm-img-1 img,
    .crm-img-2 img,
    .crm-img-3 img,
    .crm-img-4 img,
    .crm-img-5 img,
    .crm-img-6 img,
    .crm-img-7 img,
    .crm-img-9 img,
    .crm-img-11 img,
    .crm-img-12 img,
    .crm-img-13 img{
        width: 80%;
    }
}

@media (min-width: 992px) { /* For desktop */
    .crm-img-1 img,
    .crm-img-2 img,
    .crm-img-3 img,
    .crm-img-4 img,
    .crm-img-5 img,
    .crm-img-6 img,
    .crm-img-7 img,
    .crm-img-9 img,
    .crm-img-11 img,
    .crm-img-12 img,
    .crm-img-13 img{
        width: 60%;
    }
}


    /*** Contact ***/
    .contact-details{
        display: flex;
        justify-content: space-around;
        margin: 100px;
        padding: 20px;
    }
    .phone{
        width: 200px;
    }
    .email{
        width: 200px;
    }
    .address{
        width: 340px;
    }

    /*** Home Contact Form ***/

    input[type=text], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        resize: vertical;
      }
      
      label {
        padding: 12px 12px 12px 0;
        display: inline-block;
      }
      
      input[type=submit] {
        background-color: #04AA6D;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        float: right;
      }
      
      input[type=submit]:hover {
        background-color: #45a049;
      }
      
      .container {
        border-radius: 5px;
        padding: 20px;
      }
      
      .col-25 {
        float: left;
        width: 25%;
        margin-top: 6px;
      }
      
      .col-75 {
        float: left;
        width: 75%;
        margin-top: 6px;
      }
      .row:after {
        content: "";
        display: table;
        clear: both;
      }

/*** Feature ***/

.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}
.feature-item img {
    width: 100%;
    height: auto;
  }
  
  @media (min-width: 576px) {
    .feature-item img {
      max-width: 80%;
    }
  }
  
  @media (min-width: 992px) {
    .feature-item img {
      max-width: 70%;
    }
  }
  
  @media (min-width: 1200px) {
    .feature-item img {
      max-width: 60%;
    }
  }

/*** About ***/

.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}
.home-cicles{
    padding: 10px;
}
.home-content p{
    font-size: 18px;
}

/*** Fact ***/

.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}
.home-facts-container{
    display: flex;
}

.mid-content-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.img {
    max-width: 100%;
    height: auto;
  }  
.mid-mid-content{
    display: flex;
    flex-direction: column;
}

.skill-1 {
    color: orange;
}

.skill-2{
    color: var(--primary);
}

.skill-3{
    color: black;
}
.vega-img{
    height: 115px;
    width: 130px;
}
.technik-img{
    height: 130px;
    width: 130px;
}
.cloud-img{
    height: 130px;
    width: 130px;
}
.partners-data{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partners-data img{
    height: 250px;
    width: 200px;
}

.partners-data p{
    margin: 50px;
    font-size: larger;
    font-weight: 500;
}
p i.fa-phone-alt {
    color: white;
}
@media only screen and (max-width: 768px) {
    .mid-content-circle {
        flex-direction: column;
    }
    .circle-first,
    .circle-second,
    .circle-third {
        flex-basis: 100%;
    }
}
@media only screen and (max-width: 480px) {
    .mid-content-circle {
        display: block;
    }
    .mid-mid-content {
        margin-top: 20px;
    }
}
.circle-first,
.circle-second,
.circle-third {
    flex-basis: 33%;
    padding: 20px;
}

.mid-content-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
  }
  
  .img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
  }
  
  .design-content {
    margin-top: 20px;
    text-align: center;
  }
  
  .heading {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin: 40px;
  }
  
  @media screen and (min-width: 768px) {
    .mid-content-circle-design{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding: 60px;
    }
    
    .img {
      max-width: 40%;
    }
    
    .design-content {
      margin-top: 0;
      max-width: 45%;
      text-align: left;
    }
  }
  

/*** Newsletter ***/
.news-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

.form {
    width: 100%;
    max-width: 600px;
  }

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  outline: none;

}

/*** SERVICE-TOPIC ***/
.service-topic-1{
    font-size: 20px;
    font-weight: 500;
}
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


.boxes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 40px;
}

.box-1 {
  flex-basis: 30%;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  background-color: #f5f5f5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.box-1 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.box-1 p {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  color: black;
}

@media screen and (min-width: 768px) {
  .box-1 {
    flex-basis: 20%;
    margin-right: 2%;
    margin-left: 2%;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 992px) {
  .box-1 {
    flex-basis: 16.6%;
    margin-right: 1%;
    margin-left: 1%;
    margin-bottom: 20px;
  }
}

  .mail-container h2{
    text-align: center;
}
@media only screen and (max-width: 600px) {
    .mail-container h2 {
        font-size: 24px;
    }
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .mail-container h2 {
        font-size: 36px;
    }
}
@media only screen and (min-width: 1025px) {
    .mail-container h2 {
        font-size: 48px;
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}
.home-news-img{
    display: block;
}
.home-news-container{
    display: flex;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}
.professional-contact{    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.professional-contact-btn{
    width: 150px;
    color: white;
    padding: 15px;
    border: 0px solid;
    border-radius: 50px;
    transition: linear 0.3s;
}
.professional-contact-btn:hover{
    transition: 0.5s;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.professional-data p{
    font-size: large;
    font-weight: 500;
}

/*** Footer ***/
.footer {
  margin-top: 6rem;
  padding-top: 9rem;
  background:
      url(../img/bg-top.png),
      url(../img/map.png);
  background-position:
      center top,
      center center;
  background-repeat: no-repeat;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, .1);
  border-radius: 40px;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: .3s;
}

.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 {
  letter-spacing: 1px;
  box-shadow: none;
  color: var(--secondary);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
  color: var(--secondary);
}

/*** FAQs ***/
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  details {
    margin-bottom: 20px;
  }

  summary {
    color: black;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
  }

  summary:hover {
    background-color: #e0e0e0;
  }

  summary::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 18px;
    color: black;
  }

  summary[open]::before {
    content: '-';
  }

  .faq-ans {
    margin-left: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 8px;
  }

  .summary-p{
    color: black;
    line-height: 1.5;
  }

  /*** VPS ***/
  .column-divider {
    border-right: 1px solid #ffffff;
  }

  /*** ThankYou ***/

.thank-you-container {
  margin-top: 50px;
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.thank-you-container img {
  width: 100px;
  margin-bottom: 20px;
}
.thank-you-container h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary);
}
.thank-you-container p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--secondary);
}
@media (max-width: 576px) {
  .thank-you-container {
      padding: 20px;
  }
  .thank-you-container h1 {
      font-size: 24px;
  }
  .thank-you-container p {
      font-size: 16px;
  }
}

/*** Blog ***/
.blog-container {
  height: 100%;
  padding: 20px;
  box-shadow: 5px 13px 12px 5px rgba(0 , 0 , 0 , 0.4);
  margin: 10px;
}
.blog-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.blog-title {
  font-size: 24px;
  font-weight: bold;
  margin: 20px;
  color: blue;
}
.blog-subtitle {
  margin: 10px;
  color: rgb(71, 71, 71);
}
.read-more-btn {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .blog-image {
    height: 150px;
  }
  .blog-title {
    font-size: 20px;
  }
}

/*** Blog Css ***/
  .blog-post {
    background-color: rgb(231, 231, 231);
    padding: 20px;
    margin-bottom: 20px;
  }
  .center-img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .blog-post h2{
    margin: 30px;
    color: var(--primary);
    text-align: center;
  }
  .blog-post p, span{
    color: rgb(0, 0, 0);
  }
  
  @media only screen and (max-width: 767px) {
    /* Styles for mobile devices */
    .center-img {
      max-width: 100%;
    }
  }

  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    /* Styles for tablets */
    .center-img {
      max-width: 80%;
    }
  }

  @media only screen and (min-width: 1024px) {
    /* Styles for widescreen */
    .center-img {
      max-width: 60%;
    }
  }