/* color palette  */
:root {
    --color-one: #012970 ;
    --color-two: #5FBDFF ;
    --color-three: #fff;
    --color-four: #3d3d44;
    --color-five: #000;
    --color-six: #f9f5fd;
    --font-one: "Ariel", sans-serif;
    --font-two: "Poppins", system-ui;
    --border-radius: 25px;
}


/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}
section {
    padding: 100px 0;
    overflow: hidden;
}
.section-title h2 {
    font-size: 45px;
    margin-bottom: 30px;
    color: var(--color-five);
    font-weight: 600;
}
.section-title h4 {
    color: var(--color-one);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 5px;
    font-family: var(--font-two);
}

p, a, li, h5, h6 {
    font-family: var(--font-two);
    color: var(--color-four);
}
h1, h2, h3, h4 {
    font-family: var(--font-one);
    color: var(--color-four);
}
a {
    text-decoration: none;
}
.btn-1 a {
    color: var(--color-two);
    background: var(--color-three);
    border: 2px solid var(--color-two);
    border-radius: var(--border-radius);
    padding: 10px 30px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}
.btn-1 {
    margin-top: 15px;
}
.btn-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    border-radius: var(--border-radius);
    background: var(--color-two);
    z-index: -1;
}
.btn-1 a:hover .btn-bg {
    height: 100%;
    transition: height 0.2s linear;
}
.btn-1 a:hover {
    color: var(--color-three);
    background: transparent;
}
.img-cd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* navigation  */
header {
    background: var(--color-three);
    padding: 10px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}
header.scrolled {
    background: var(--color-three);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
header .container {
    position:relative;
}
header a {
    text-decoration: none;
}
header li {
    list-style: none;
}
.navbar{
    display:flex;
    width:100%;
    height:60px;
    margin:0 auto;
    align-items:center;
    justify-content:space-between;
}
.navbar .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.navbar .logo {
    max-width: 110px;
}
.navbar .links {
    display:flex;
    gap: 40px;
    align-items: center;
}
.navbar .links li a, .dropdown_menu li a {
    color: var(--color-one);
    font-weight: 500;
    font-size: 18px;
    position: relative;
    padding: 0 5px;
}
.navbar .links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust based on your border-bottom thickness */
    width: 0;
    height: 2px; /* Same as your border-bottom thickness */
    background-color: var(--color-two);
    transition: width 0.3s ease;
}
.navbar .links a:hover::after {
    width: 100%;
}
.navbar .links a:hover {
    color: var(--color-two);
}
.dropdown_menu li a:hover {
    color: var(--color-five);
    transition: all 0.2s linear;
}
.nav-btn-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}
.navbar .toggle_btn {
    color: var(--color-one);
    cursor:pointer;
    display:none;
    font-size:1.5rem;
    z-index: 100;
}
.action-btn {
    background: var(--color-three);
    padding: 10px 30px !important;
    border: 2px solid var(--color-two);
    outline:none;
    border-radius: var(--border-radius);
    font-size: 16px;
    color: var(--color-two) !important;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}
.action-btn:hover .btn-bg {
    height: 100%;
    transition: height 0.2s linear;
}
.action-btn:hover {
    color: var(--color-three) !important;
    background: transparent;
}
.dropdown_menu {
    display: none;
    right: 0;
    position: absolute;
    background: #fff;
    backdrop-filter: blur(15px);
    top: 60px;
    height: 0px;
    width: 100%;
    overflow: hidden;
    transition: .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu li {
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dropdown_menu.open {
    min-height: 340px;
    padding: 15px 15px 30px 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: var(--color-three);
}
.dropdown_menu .action-btn {
    width: max-content;
    display: flex;
    justify-content: center;
}

@media screen and (max-width:991px) {
    .navbar .links, .nav-btn-wrap {
        display: none;
    }
    .navbar .toggle_btn {
        display: block !important;
    }
    .dropdown_menu {
        display: block;
        z-index: 100;
    }
    .navbar .logo {
        max-width: 100px;
    }
}


/* hero  */
.hero-section {
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-three);
    position: relative;
    min-height: 100vh;
    margin-top: 20px;
}
/* .parallax {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../img/hero-bg.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */
.hero-content {
    z-index: 10;
    position: relative;
    display: flex;
    gap: 60px;
    align-items: center;
}
.hero-left, .hero-right {
    width: 50%;
}
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-left h1 {
    color: var(--color-one);
    font-size: 50px;
}
.gradient-txt {
    background: linear-gradient(81deg, #6106ab 0%, #5FBDFF 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-feature-settings: "clig" off, "liga" off;
}
.hero-left p {
    color: var(--color-four);
    padding: 20px 50px 20px 0;
}


/* partners  */
.partners-section .section-title {
    text-align: center;
    padding-top: -20px;
}
.partner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}
.partner {
    height: 40px;
}
.partner img {
    object-fit: contain;
    cursor: pointer;
}
.partner img:hover {
    filter: grayscale(0);
    opacity: 1;
    transition: all 0.30s ease-in-out;
}

.logo-wrapper {
    display: flex;
    animation: scroll 70s linear infinite;
    
  }
  
  .logo-wrapper img {
    width: 150px;
    margin: 0 50px;
  }
  
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-160%);
    }
  }

/* clients section  */
.client-section {
    padding: 0;
    margin: 0;
}
.sectionClass {
    position: relative;
    display: block;
}
.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
}
.projectFactsWrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#projectFacts .fullWidth{
    padding: 0;
}
.projectFactsWrap .item{
    width: 25%;
    height: 100%;
    padding: 50px 0px;
    text-align: center;
    cursor: pointer;
}
.projectFactsWrap .itemTIS{
    width: 25%;
    height: 100%;
    padding: 15px 0px;
    text-align: center;
    cursor: pointer;
}

.projectFactsWrap .itemCP{
    width: 33%;
    height: 100%;
    padding: 15px 0px;
    text-align: center;
    cursor: pointer;
}

.projectFactsWrap .item:nth-child(1){
    background: #9b40d6;
}
.projectFactsWrap .item:nth-child(2){
    background: #7a13c2;
}
.projectFactsWrap .item:nth-child(3){
    background: #6106ab;
}
.projectFactsWrap .item:nth-child(4){
    background: #5a059e;
}
.projectFactsWrap .item p.number{
    font-size: 40px;
    padding: 0;
    font-weight: bold;
}
.projectFactsWrap .item p{
    color: var(--color-three);
    font-size: 18px;
    margin: 0;
    padding: 10px;
}
.projectFactsWrap .item span{
    width: 60px;
    background: var(--color-three);
    height: 2px;
    display: block;
    margin: 0 auto;
}
.projectFactsWrap .item i{
    vertical-align: middle;
    font-size: 50px;
    color: var(--color-three);
}
.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
    color: var(--color-six);
}
.projectFactsWrap .item:hover span{
    background: var(--color-six);
}
  
@media (max-width: 786px) {
    .projectFactsWrap .item {
       flex: 0 0 50%;
    }
}


/* about section  */
.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}
.about-left, .about-right {
    width: 50%;
}
.about-img {
    max-width: 90%;
    margin: 0 auto;
}


/* service */
.service-section .section-title {
    text-align: center;
}
.para-t {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 30px;
}
.service-card {
    background: var(--color-three);
    padding: 25px 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    position: relative;
    border-top: 3px solid var(--color-one);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.service-icon {
    height: 60px;
}
.service-card:hover {
    transform: translateY(-8px);
}
.service-card a:hover {
    border-color: var(--color-two);
}
.service-card img {
    object-fit: contain;
}
.service-grid.two {
    display: flex;
    justify-content: center;
}
.service-grid.two .service-card {
    width: calc(25% - 14px);
}
.service-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}
.service-card h3 {
    color: var(--color-one);
    padding-bottom: 15px;
}


/* review-section  */
/* .parallax4 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("../img/review-bg.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */
.review-wrapper-outer {
    display: flex;
    gap: 50px;
    align-items: center;
}
.review-wrapper-left {
    width: 50%;
}
.review-wrapper {
    width: 40%;
}
.review-slider .splide__arrow {
    bottom: -40px;
    top: unset;
    transform: unset;
}
.review-slider .splide__arrow--prev {
    left: unset;
    right: 30px;
}
.review-slider .splide__arrow--next {
    right: 0;
}
.review-slider .splide__arrow {
    background: transparent;
    color: var(--color-five);
}
.review-slider .splide__arrow:hover svg {
    background: transparent;
    transition: all 0.2s linear;
    fill: var(--color-two);
}
.review-card {
    min-height: 280px;
}
.review-card:hover {
    box-shadow: 0 4px 8px rgba(145, 179, 250, 0.3);
    transition: all 0.2s linear;
}
.review-card p {
    line-height: 1.5;
    text-align: left;
}
.review-card h5 {
    font-size: 18px;
    font-weight: 500;
}
.review-card h6 {
    font-size: 14px;
    color: rgb(163, 161, 161);
    font-weight: 400;
}
.review-img img {
    max-width: 80%;
    margin: 0 auto;
}
.client-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    display: none;
}
.star-wrapper {
    padding-bottom: 15px;
}
.star-wrapper i {
    color: rgb(255, 230, 0);
}


/* blog  */
.blog-section .section-title {
    text-align: center;
}
.blog-slider {
    margin-top: 0px;
}
.blog-card img {
    border-radius:  25px 25px 0 0;
    height: 200px;
    object-fit: contain;
}
.blog-card img:hover {
    transform: scale(1.02);
    transition: all 0.3s linear;
}
.blog-card {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    background: var(--color-three);
}
.blog-slider .splide__arrow {
    bottom: -40px;
    top: unset;
    transform: unset;
    background: transparent;
}
.blog-slider .splide__arrow--prev {
    left: unset;
    right: 30px;
}
.blog-slider .splide__arrow--next {
    right: 0;
}
.blog-txt {
    padding: 20px;
}
.blog-txt a {
    font-size: 18px;
    color: var(--color-five);
    padding-bottom: 12px;
}
.blog-card:hover a {
    color: var(--color-one);
    text-decoration: underline;
}
.blog-txt p {
    font-size: 14px;
}


/* contact  */
.contact-section {
    background-size: cover;
    display: flex;
    align-items: center;
    background: var(--color-three);
}
.contact-section .section-title {
    text-align: center;
}
.contact-section p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.contact-section h3 {
    padding: 50px 0 25px 0;
    text-align: center;
    color: var(--color-four);
    font-size: 24px;
}
.map-wrapper {
    height: 400px;
}
.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    padding-top: 50px;
    width: 80%;
    margin: 0 auto;
}
.contact-left, .contact-right {
    width: 50%;
}
.contact-left h5, .contact-left h6 {
    color: var(--color-four);
    font-size: 25px;
    font-family: var(--font-one);
    padding-bottom: 25px;
    font-weight: 600;
}
.contact-left h6 {
    padding-top: 30px;
}
.contact-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.contact-line p, .contact-line a {
    text-align: left;
    width: 100%;
    color: var(--color-four);
    font-size: 18px;
    width: max-content;
    margin-left: 0;
}
.contact-icon i {
    color: var(--color-one);
    width: 30px;
    font-size: 18px;
}
.contact-line a:hover {
    color: var(--color-one);
    transition: all 0.3s linear;
}
.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-icon i {
    font-size: 20px;
    color: var(--color-one);
}
.social-icon span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-one);
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icon span:hover {
    transform: rotate(360deg);
    transition: all 0.4s;
    color: var(--color-six);
    background: var(--color-one);
}
.social-icon span:hover i {
    color: var(--color-six);
}
#msgSubmit {
    font-family: var(--font-two);
    margin-top: 8px;
    text-align: center;
}
.support-link {
    text-decoration: underline;
}


/* footer  */
footer {
    padding: 60px 0;
    background: #f7f7fa;
    background-image: url(../img/footer-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
}
.footer-left, .footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-logo {
    max-width: 100px;
}
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 20px;
}
.footer-social span {
    border-radius: 50%;
    border: 1px solid var(--color-one);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-social span:hover {
    border-color: var(--color-two);
    transition: all 0.2s linear;
}
.footer-social i {
    color: var(--color-one);
    font-size: 18px;
}
.footer-social span:hover i {
    color: var(--color-two);
    transition: all 0.2s linear;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
footer a, footer p, footer h4 {
    color: var(--color-one);
}
footer a:hover {
    color: var(--color-two);
    transition: all 0.2s linear;
}


/* copyright  */
.copyright-section {
    padding: 0;
    background: #f7f7fa;
}
.copyright-section .container {
    border-top: 1px solid var(--color-one);
}
.copyright p {
    padding: 20px 0;
    text-align: center;
    color: var(--color-one);
    font-size: 14px;
}
.ft-site-name {
    color: var(--color-one);
}


/* back to top  */
.backToTopBtn {
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 1000000;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: none;
    color: var(--color-three);
    border-radius: 100%;
    transition: 0.5s;
    cursor: pointer;
}
.backToTopBtn:not(:hover) {
    background: var(--color-one)
}
.backToTopBtn:hover {
    background: var(--color-two);
}
.backToTopBtn.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.backToTopBtn:not(.active) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}


/* ------------------------------ responsive home page  --------------------------------------------  */

@media screen and (max-width:767px) {
    
    /* common  */
    .container {
        padding: 0 15px;
    }
    section {
        padding: 90px 0;
    }
    .section-title h2 {
        font-size: 32px;
    }

    /* hero  */
    .hero-section {
        min-height: unset;
        padding-top: 60px;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-right, .hero-left {
        width: 100%;
    }
    .hero-left h1 {
        font-size: 50px;
    }

    /* partners  */
    .partner-wrap {
        gap: 30px;
    }
    .partner {
        height: 25px;
    }

    /* about  */
    .about-content .section-title {
        text-align: center;
    }
    .about-content {
        flex-direction: column-reverse;
    }
    .about-left, .about-right {
        width: 100%;
    }
    .about-content p {
        text-align: center;
    }

    /* services  */
    .para-t {
        width: 85%;
    }
    .service-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .service-grid.two {
        flex-direction: column;
        padding-top: 20px;
    }
    .service-grid.two .service-card {
        width: 100%;
    }

    /* review  */
    /* .review-section {
        background-image: url(../img/review-bg.png);
        background-position: right;
    } */
    .review-card {
        padding: 18px;
    }
    .review-wrapper, .review-wrapper-left {
        width: 100%;
    }
    .review-wrapper-outer {
        flex-direction: column-reverse;
    }
    .review-img img {
        max-width: 100%;
    }

    /* contact  */
    .contact-section p {
        width: 100%;
    }
    .contact-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .contact-left, .contact-right {
        width: 100%;
    }

    /* footer  */
    footer {
        padding: 40px 0;
    }
    .footer-content {
        gap: 25px;
        flex-direction: column;
    }
    .footer-left, .footer-right {
        gap: 5px;
    }
    .footer-social {
        padding-top: 15px;
    }

    /* copyright  */
    .copyright-section {
        padding: 0;
    }
}



@media screen and (max-width:991px) and (min-width:768px) {

    .section-title h2 {
        font-size: 40px;
    }

    /* nav  */
    .navbar .links {
        gap: 30px;
    }
    
    /* hero  */
    .hero-section {
        min-height: unset;
    }

    /* partners  */
    .partner-wrap {
        gap: 40px;
    }
    .partner {
        height: 30px;
    }

    /* services  */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-grid.two {
        flex-wrap: wrap;
        padding-top: 20px;
    }
    .service-grid.two .service-card {
        width: calc(50% - 10px);
    }

    /* review  */
    .review-wrapper-left {
        width: 40%;
    }
    .review-wrapper {
        width: 60%;
    }
    .review-img img {
        max-width: 100%;
    }

    /* contact  */
    .contact-wrapper {
        width: 100%;
    }

    /* footer  */
    .footer-content {
        flex-wrap: wrap;
    }
    .footer-left, .footer-right {
        width: 45%;
    }
}


@media screen and (max-width:390px) {
    
    .projectFactsWrap .item {
        flex: 0 0 100%;
    }
}




/* ###################   PRODUCT  PAGE   ######################  */

.page-header-section {
    /* background-image: url(../img/page-gradient.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    /*background-image: linear-gradient(125deg, #6106ab 0%, #5FBDFF 100%);*/
    background-image: url(../img/product-header.png);
    
    background-size: cover;
    background-repeat: no-repeat; */
    margin-top: 80px;
    padding: 100px 0;
}
.breadcrumb {
    padding: 10px 0;
    font-size: 14px;
}
.breadcrumb ul {
    list-style: none;
    display: flex;
    justify-content: start;
}
.breadcrumb li + li:before {
    content: ">";
    margin: 0 10px;
    color: var(--color-three);
}
.breadcrumb a {
    color: var(--color-three); 
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

.page-top-wrap h2 {
    color: var(--color-three);
    padding-left: 100px;
    font-size: 60px;
}


/* product-section  */
.product-section .section-title h2 {
    text-align: center;
    color: var(--color-one);
}
.product-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding: 50px 0;
}
.product-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: var(--border-radius);
}
.product-img {
    height: 300px;
}
.product-img img {
    object-fit: contain;
}
.product-txt h3 {
    padding-bottom: 10px;
}

.share-wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}
.share-wrapper .btn-1 {
    margin: 0;
}
.share {
    display: flex;
    gap: 10px;
    align-items: center;
}
.share p {
    padding: 0 !important;
}
.share-social {
    display: flex;
    gap: 10px;
    align-items: center;
}
.share-social a {
    color: var(--color-four);
    border: 1px solid #dfdddd;
    border-radius: 50%;
}
.share-social span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
}
.share-social a:hover {
    color: var(--color-two);
    transition: all 0.2s linear;
    border-color: var(--color-two);
}


@media screen and (max-width:767px) {
    
    .page-header-section {
        padding: 80px 0;
    }
    .page-top-wrap h2 {
        font-size: 50px;
    }
    .product-section {
        padding: 60px 0;
    }
    .product-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        padding: 10px 0 50px 0;
    }
    .product-img {
        height: 100%;
    }
    .share-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }
}


@media screen and (max-width:991px) and (min-width:768px) {
    
    .page-header-section {
        padding: 100px 0;
    }
    .product-section {
        padding: 80px 0;
    }
    .product-wrapper {
        grid-template-columns: repeat(1, 1fr);
        padding: 10px 0 50px 0;
    }
    .product-img {
        height: 100%;
    }
}




/* ###################   SINGLE  BLOG  PAGE   ######################  */

.blog-header-section {
    /* background-image: url(../img/page-gradient.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    margin-top: 80px;
    padding: 60px 0;
}
.blog-top-wrap h2 {
    color: var(--color-one);
    font-size: 45px;
    text-align: center;
    padding-bottom: 80px;
}
.single-blog-img img {
    max-height: 400px;
    object-fit: contain;
    border: 1px solid var(--color-four);
    max-width: max-content;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    padding: 10px;
}
.single-blog-img, .blog-header-section p {
    padding-bottom: 50px;
}
.blog-header-section h3 {
    padding-bottom: 20px;
    font-size: 25px;
    color: var(--color-five);
}
.share-wrapper.blog {
    justify-content: end;
    padding-top: 50px;
}


@media screen and (max-width:767px) {

    .blog-top-wrap h2 {
        font-size: 30px;
        padding-bottom: 50px;
    }
    .single-blog-img, .blog-header-section p {
        padding-bottom: 30px;
    }
}


@media screen and (max-width:991px) and (min-width:768px)  {

    .blog-top-wrap h2 {
        font-size: 40px;
        padding-bottom: 50px;
    }
}


