@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: "Poppins", sans-serif;

}

:root {
    --primary-color: #0cd1f1;
    --black-color: #000000;
    --font-color: #061626;
    --light-color: #f8f9fa;
    --body-color: #505050;
    --title-color: #1C1C1C;
    --theme-color1: #FF681A;
    --theme-color2: #37D4D9;
}

p {
    font-size: 14px;
    font-weight: 400;
    color: var(--tp-text-body);
    margin-bottom: 15px;
    line-height: 26px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    text-transform: none;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

ul {
    padding: 0;
}

p {
    line-height: 1.8;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
    background: transparent;
    padding-left: 20px;
    padding-right: 50px;
    outline: none;
    border: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 46px;
}

input {
    background: #fff;
    color: #000;
    padding: 8px 12px;
    width: 100%;
}

.preloader {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    background: #fff;
}

.pre-header-main {
    background: #1c1c1c;
    width: 100%;
    min-height: 48px;
}

.pre-header-main .header-info {
    background: #1c1c1c;
    width: 100%;
    min-height: 48px;
}

.pre-header-main .header-info ul li {
    display: flex;
    align-items: center;
    padding: 8px 12px;
}

.pre-header-main .header-info ul li a {
    color: var(--light-color);
    transition: 0.4s ease-in-out;
}

.pre-header-main .header-info .header-contact li:hover a {
    color: var(--theme-color2);
}

.pre-header-main .header-info .header-contact li i {
    background: #fff;
    border-radius: 100%;
    width: 40px;
    height: 38px;
    line-height: 36px;
    display: flex;
    justify-content: center;
    color: var(--theme-color1);
    transition: 0.4s ease-in-out;
}

.pre-header-main .header-info .header-contact li:hover i {
    background: var(--theme-color2);
    color: #fff;
}

.pre-header-main .header-info .header-icons i {
    color: #fff;
    transition: 0.4s ease-in-out;
}

.pre-header-main .header-info .header-icons i:hover {
    color: var(--theme-color1);
}

.pre-header-main .header-info .user-btn {
    background: var(--theme-color1);
    display: flex;
    justify-content: center;
    height: 55px;
    padding: 10px 30px;
    margin-left: 40px;
}

.pre-header-main .header-info .user-btn {
    color: #fff;
    transition: 0.4s ease-in-out;
}

.pre-header-main .header-info .user-btn:hover {
    background: var(--theme-color2);
}

.navbar-header {
    padding: 32px 14px;
}
.header-logo{
    /*width: 200px;*/
    height: 100px;
    object-fit: cover;
}
.header-logo img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-header .navbar-main {
    width: 100%;
}

.navbar-header .navbar-main .navbar-menu-list li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    padding: 8px 25px;
}

.navbar-header .navbar-main .navbar-menu-list li a {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
}

.right-btn-sec .search-btn i,
.right-btn-sec .toggle-btn i {
    background: var(--theme-color1);
    border-radius: 100%;
    width: 47px;
    height: 44px;
    line-height: 45px;
    display: flex;
    justify-content: center;
    color: #fff;
    transition: 0.4s ease-in-out;
    font-size: 18px;
    margin-right: 20px;
    transition: 0.3s ease-in-out;
}

.right-btn-sec .search-btn:hover i,
.right-btn-sec .toggle-btn:hover i {
    background-color: var(--theme-color2);
}

.menu-toggle-btn i {
    display: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

.hero-btn {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 31px;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-radius: 36px;
    margin-left: 20px;
}

.hero-btn::before,
.hero-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    background: #000;
    transform: scale(0);
    transition: opacity ease 0.4s, visibility ease 0.4s, transform ease 0.4s;
    border-radius: 36px;
}

.hero-btn::before {
    transform-origin: left top;
}

.hero-btn::after {
    transform-origin: right bottom;
}

.hero-btn:hover::before,
.hero-btn:hover::after {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

/* ---------------- mobile Navabar ---------------- */
@media screen and (max-width: 991px) {
    .navbar-header .navbar-main .navbar-menu-list li {
        padding: 8px 15px;
    }

    .navbar-header .navbar-main .navbar-menu-list li a {
        font-size: 18px;
    }

    .right-btn-sec .search-btn i,
    .right-btn-sec .toggle-btn i {
        display: none;
    }

    .menu-toggle-btn i {
        display: block;
    }

    .menu-toggle-btn i {
        background: var(--primary-color);
        padding: 12px 16px;
        color: #fff;
        font-size: 20px;
        border-radius: 3px;
    }
}

.mobile-menu .mobile-logo img {
    width: 100px;
}

.mobile-menu-area .offcanvas-header {
    background: #fff0e8;
    padding: 25px 10px;
}
.mobile-menu-area.offcanvas{
    visibility: visible;
}
.mobile-menu-area .mobile-logo img {
    width: 34%;
}

.mobile-menu-area ul li {
    padding: 10px 0px;
    border-bottom: 1px solid #ededed;
}

.mobile-menu-area ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.mobile-menu-area ul li a:hover {
    color: var(--theme-color1);
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
.scroll-btn i {
    background-color: var(--primary-color);
    color: #fff;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}

.scrollToTop .show {
    bottom: 60px;
    opacity: 1;
    visibility: visible;
}

.scroll-btn {
    position: relative;
    display: inline-block;
}

.scroll-main {
    position: fixed;
    right: 20px;
    bottom: 0;
    z-index: 9999;
}

.scroll-btn:before {
    content: '';
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: -6px;
    top: -6px;
    border-radius: 100px;
    border: 2px dashed var(--primary-color);
    z-index: 1;
    transform: all 0.4s ease;
    animation: spin 13s infinite linear;
}

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

.home-slider .item {
    position: relative;
}

.home-slider .owl-dots {
    position: absolute;
    bottom: 35px;
    /* Adjust based on your preference */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot span {
    width: 25px;
    height: 4px;
    margin: 4px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 10px;
}

/*-------------about-csss---------- */
.about-wrap {
    padding: 100px 0;
}

.about-wrap .about-content h6 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.about-wrap .about-content h2 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-wrap .about-image img {
    width: 100%;
    height: auto;
}

.btn-page {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary-color);
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 50px;
}

.section-padding-md {
    padding-top: 30px;
    padding-bottom: 40px;
}

/*-------------//services-------------*/
.section-title h2 {
    font-size: 30px;
    font-weight: bold;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #020020;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 40px;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 20px);
}

.bg-color-accent2 {
    background-color: #f9fbfe;
}

.service-wrap-layout1 {
    overflow: hidden;
}

.service-wrap-layout1 .animated-shape ul {
    position: relative;
    z-index: 0;
}

.service-wrap-layout1 .animated-shape ul li:first-child {
    top: 0px;
    left: 30px;
    z-index: 1;
}

.service-wrap-layout1 .animated-shape ul li {
    position: absolute;
    z-index: -1;
}

.service-wrap-layout1 .animated-shape ul li:last-child {
    top: 300px;
    right: 30px;
    z-index: 2;
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
    }

    75% {
        transform: translate(100px, 100px);
    }

    100% {
        transform: translate(0, 0);
    }
}

path {
    animation: changeFillColor 4s infinite, changeOpacity 4s infinite, move 4s infinite;
}

.service-box-layout1 {
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 40px 30px 20px;
    border-radius: 4px;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.service-box-layout1 .icon-holder {
    position: relative;
    z-index: 1;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.service-box-layout1 .icon-holder .icon {
    width: 120px;
    height: 120px;
    padding: 25px;
    border-radius: 100px;
    margin: -15px auto;
    background: var(--primary-color);
}

.service-box-layout1 .icon-holder .icon:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translateX(1px) rotate(0deg);
    }

    25% {
        transform: translateX(-1px) rotate(-5deg);
    }

    50% {
        transform: translateX(-2px) rotate(5deg);
    }

    75% {
        transform: translateX(1px) rotate(-5deg);
    }

    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

.service-box-layout1 .icon-holder .icon img {
    width: 100%;
    height: 100%;
}

.service-wrap-layout1 .item-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.service-box-layout1:hover {
    -webkit-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.1);
}

.service-bx-layout {
    background: #f9fbfe;
    position: relative;
    width: 100%;
}

.service-bx-layout .animated-shape ul {
    position: relative;
    z-index: 0;
}

.service-bx-layout .animated-shape ul li {
    position: absolute;
    z-index: -1;
}

.service-bx-layout .animated-shape ul li:first-child {
    top: 0px;
    left: 30px;
    z-index: 1;
}

.service-bx-layout .animated-shape ul li:last-child {
    top: 300px;
    right: 30px;
    z-index: 1;
}

.service-bx-layout .item-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

@media screen and (max-width: 1080px) {
    .service-bx-layout {
        height: auto;
    }
}

@media screen and (max-width: 1024px) {
    .animated-shape {
        display: none;
    }
}


@media screen and (max-width: 1300px) {
    .navbar-header .navbar-main .navbar-menu-list li {
        padding: 8px 16px;
    }

    .navbar-header .navbar-main .navbar-menu-list li a {
        font-size: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .hero-btn {
        font-size: 13px;
        padding: 14px 20px;
    }

    .navbar-header .navbar-main .navbar-menu-list li {
        padding: 8px 12px;
    }

    .navbar-header .navbar-main .navbar-menu-list li a {
        font-size: 14px;
    }
}

/* ---------------------progeress-layout-------------------- */
.bg-gradient-layout2 {
    position: relative;
    z-index: 0;
}

.bg-gradient-layout2:before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -o-linear-gradient(30deg, #0cd1f1  0%, #2c7be9 100%);
    background-image: linear-gradient(60deg, #2c7be9 0%, #0cd1f1 100%);
}

.progress-wrap-layout1 .progress-inner-wrap {
    padding: 105px 0 75px;
}

.progress-box-layout1 {
    text-align: center;
    margin-bottom: 30px;
}

.progress-box-layout1 .counting-text {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.progress-box-layout1 .item-label {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
}

/* -------- testimonial-slider ------------ */
.testimonial-box-layout1 {
    text-align: center;
    margin-bottom: 21px;
}

.testimonial-box-layout1 .top-box {
    background-image: -o-linear-gradient(30deg, #fff 0%, #acd7e5 100%);
    background-image: linear-gradient(175deg, #ffffff 0%, var(--primary-color) 100%);
    width: 100%;
    height: 340px;
    border-radius: 50px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 62px 30px 73px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.testimonial-box-layout1 .bottom-box .media {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-box-layout1 .media img {
    width: 55px;
    height: 56px;
    object-fit: cover;
    border-radius: 80px;
}

.testimonial-box-layout1 .item-title {
    font-size: 21px;
    margin-left: 12px;
    font-weight: 500;
    margin-bottom: 0px;
}

.testimonial-box-layout1 .top-box i {
    background: -webkit-linear-gradient(#130566, #130664);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    opacity: 0.6;
}

.testimonial-slider .custom-prev,
.testimonial-slider .custom-next {
    border: 1px solid #ccc;
    border-radius: 40px;
    padding: 15px;
    color: #868282;
}

.testimonial-slider .custom-prev:hover,
.testimonial-slider .custom-next:hover {
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    padding: 15px;
    color: #fff;
    background-color: var(--primary-color);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
}

/* ---------------contact-form----------- */
.contact-form {
    position: relative;
    padding: 100px 0;
}

.contact-form .form-box form {
    border: 1px solid #ddd;
    padding: 45px;
    border-radius: 5px;
    background: #fbfbfb;
}

.contact-form .input-group {
    padding-block-end: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.contact-form .input-group {
    margin-block-end: 20px;
}

.contact-form .input-group textarea {
    height: 100px;
}

.contact-form .contact-info {
    background-color: #fbfbfb;
    border-radius: 5px;
    padding: 46px;
    border: 1px solid #ddd;
}

.contact-form .contact-info .info-heading {
    margin-block-end: 40px;
}

.contact-form .form-heading h6 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.contact-form .form-heading h2 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-form .contact-info .info-heading h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    position: relative;
}

.contact-form .contact-info .info-box {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-block-end: 32px;
}

.contact-form .contact-info .info-box i {
    padding: 6px;
    font-size: 24px;
    color: var(--primary-color);
}

.contact-form .contact-info .content h4 {
    font-size: 20px;
    font-weight: 600;
}
.contact-form .contact-info .content a{
    color: #000;
    
}

.contact-form .input-group textarea {
    height: 100px;
    width: 100%;
}

/* ----------footer------------ */

.footer {
    background-color: #ddd;
    padding: 100px 0;
    margin-top: 50px;
}

.footer .footer-text {
    color: #000;
    padding: 24px 40px 8px 3px;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 30px;
}

.footer .social-icon {
    gap: 18px;
    display: flex;
    align-items: center;
}

.footer .social-icon a {
    width: 45px;
    height: 45px;
    display: flex;
    background: transparent;
    border: 1px solid #000;
    border-radius: 40px;
    line-height: 40px;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
}

.footer .social-icon i {
    font-size: 15px;
    color: #000;
}

.footer .footer-head-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    border: none;
    margin: 0 0 30px 0;
    padding: 0 0 20px 0;
    color: #000;
    position: relative;
}

.footer .footer-head-title::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    bottom: 0;
}

.footer .footer-head-title::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    outline: 4px solid var(--primary-color);
    background-color: #000;
    border-radius: 50%;
    left: 4px;
    bottom: -3px;
    animation: lefttoRight infinite 5s linear;
}

.footer .footer-list-sec ul>li>a {
    width: max-content;
    display: flex;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    max-width: 100%;
    align-items: center;
    padding: 0 0 15px;
    transition: 0.4s ease-out;
}

.footer .footer-list-sec ul>li>a:hover {
    color: var(--primary-color);
}

@keyframes lefttoRight {
    0%,
    100% {
        left: 0px;
    }

    50% {
        left: 56px;
    }
}

.footer .slider-btn {
    background-color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    padding: 18px 32px;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.4s ease-in-out;
    color: white;
}

.footer .slider-btn:hover {
    transform: translatey(-10px);
}

.about-banner {
    background-image: url(assets/img/work-with-us.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
    position: relative;
}

/* 
.about-banner:before {
    content: '';
    position: absolute;
    background: linear-gradient(45deg, #011d26, #000);
    opacity: 0.7;
    width: 100%;
    height: 350px;
} */

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 3;
    top: 110px;
}

.thm-breadcrumb {
    padding-top: 3px;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.thm-breadcrumb li a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.page-header__inner h2 {
    font-size: 45px;
    line-height: 71px;
    font-weight: 700;
    color: #000000;
}

.page-header {
    position: relative;
}

.page-header-shape-1 {
    position: absolute;
    width: auto;
    left: 20px;
    top: 60px;
    animation: edublink-rotate-y 15s normal infinite linear;
}

.page-header-shape-2 {
    position: absolute;
    width: auto;
    right: 10%;
    bottom: 40px;
    animation: edublink-rotate-y 15s normal infinite linear;
}

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

/* ----------- partner-sec------------ */
.partner-sec {
    background: #f9fbfe;
    padding-bottom: 120px;
    margin-top: 60px;
}

/* -----why choose us------ */
.why-choose-us {
    padding: 100px 0;
    position: relative;
}

.why-choose-us .why-choose-content h6 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.why-choose-us .why-choose-content h2 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.why-choose-us .icon-list-icon {
    color: #17b88f;
    font-size: 18px;
    margin-right: 8px;
}

.why-choose-us .icon-list-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--tp-text-body);
    margin-bottom: 5px;
}

.why-choose-image {
    position: sticky;
    top: 15%;
}

/* -------blog-section------- */
.blog-section {
    padding: 100px 0;
    position: relative;
}

.blog-style-1 {
    position: relative;
}

.blog-style-1 .content {
    padding: 25px 30px 30px;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
}

.blog-style-1 .content h5 a {
    color: #000;
    transition: 0.3s ease-in-out;
}

.blog-style-1 .content h5 a:hover {
    color: var(--primary-color);
}

.blog-section .content .blog-meta {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin: -5px 4px;
}

.blog-section .content .blog-meta i {
    font-size: 16px;
    padding-right: 10px;
    position: relative;
    top: 2px;
    color: var(--primary-color);
}

.blog-section .content .blog-meta li {
    margin: 5px 16px;
    color: #000;
    position: relative;
}

.blog-section .content .blog-meta li:after {
    content: "";
    height: 19px;
    width: 1px;
    background-color: #dbdbdb;
    position: absolute;
    top: 3px;
    right: -18px;
}

.blog-section .content .blog-meta li:last-child::after {
    content: "";
    height: 19px;
    width: 1px;
    background-color: transparent;
    position: absolute;
    top: 3px;
    right: -18px;
}

.blog-sidebar-1 {
    background-color: #fff;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.07);
    border-radius: 13px;
    padding: 35px 45px 40px 30px;
}

.recent-post {
    padding: 35px 40px;
}

.post-widget-thumb img {
    min-width: 80px;
    max-width: 80px;
    width: 80px;
    display: flex;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.post-widget-thumb {
    padding-right: 0;
    margin-right: 20px;
}

.blog-sidebar-1 .media-body h5 a {
    font-size: 15px;
    color: #000;
    margin: 0;
}

.blog-sidebar-1 .post-icon i {
    color: var(--primary-color);
    margin-right: 2px;
}

.widget-category-sec ul li {
    text-align: right;
    display: block;
    padding: 12px 14px;
}

.widget-category-sec ul li a {
    float: left;
    display: block;
    color: #000;
}

/* ----------blog-detail--------------- */
.blog-detail-section {
    padding: 100px 0;
}

.blog-details-top a {
    color: #808080;
    margin-bottom: 6px;
    display: inline-block;
}

.blog-details-top .blog-meta {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 18px;
}

.blog-details-top .blog-meta i {
    font-size: 16px;
    padding-right: 10px;
    position: relative;
    top: 2px;
    color: var(--primary-color);
}

.blog-details-top .blog-meta li {
    margin: 5px 16px;
    color: #000;
    position: relative;
}

.blog-details-top .blog-meta li:after {
    content: "";
    height: 19px;
    width: 1px;
    background-color: #dbdbdb;
    position: absolute;
    top: 3px;
    right: -18px;
}

.blog-details-top .blog-meta li:last-child::after {
    content: "";
    height: 19px;
    width: 1px;
    background-color: transparent;
    position: absolute;
    top: 3px;
    right: -18px;
}

.post-thumbnail-img {
    margin: 0px 0px 35px;
}

.post-thumbnail-img img {
    width: 100%;
    height: auto;
}

/* ----------------------right-fix-sec----------------- */
.right-fix-sec {
    position: fixed;
    top: 45%;
    z-index: 99999;
    right: -30px;
    transform: rotate(-90deg);
}

.right-fix-sec .info-btn {
    background: var(--primary-color);
    padding: 9px 19px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 8px 8px 0px 0px;
}

.right-fix-sec2 {
    position: fixed;
    top: 66%;
    z-index: 99999;
    right: -47px;
    transform: rotate(-90deg);
}

.right-fix-sec2 .info-btn {
    background: var(--primary-color);
    padding: 9px 19px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 8px 8px 0px 0px;
}