/* style css */
header {
    width: 100%;
    /* padding: 12px 0; */
    border-bottom: 1px solid rgba(243, 243, 243, 0.102);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}


header.fixed-header {
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 5%);
    position: fixed;
    top: -1px;
    left: 0;
    animation: sticky1 0.35s ease-out;
    background-color: #000;
    z-index: 5;
    transition: all 0.5s ease-in-out;
}

.header {
    background-color: #000;
}

@keyframes sticky1 {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

header.fixed-header nav ul li a {
    color: #fff;
}

header li:not(:nth-last-of-type(1)) {
    margin-right: 30px;
}

header .logo {
    width: 15%;
}

header .logo img {
    width: 150px;
}

header nav {
    width: 54%;
}

header .common-botton {
    justify-content: end;
}

header nav ul li {
    position: relative;
    padding: 25px 0;
    cursor: pointer;
}

header nav ul .mobile-logo {
    display: none;
}

header nav ul li a {
    color: #fff;
}

header nav ul li a i {
    margin-left: 4px;
    transition: all 0.5s ease-in-out;
}

header nav ul .dropdown-list ul {
    width: max-content;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 4px;
    position: absolute;
    top: 72px;
    left: -80px;
    z-index: 11;
    transform: translateY(60px);
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;

}

header nav ul .dropdown-list:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

header nav ul .dropdown-list:hover .dropdown-link i {
    transform: rotate(180deg);

}

header nav .dropdown-list li {
    padding: 12px 10px;
    position: relative;
    margin-right: 0;
    overflow: hidden;
}

header nav .dropdown-list li::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(255 221 93);
    position: absolute;
    top: 0;
    left: -99%;
    z-index: -1;
    transition: all .3s ease-in-out;
}

header nav .dropdown-list li:hover:after {
    left: 0;
}

header nav .dropdown-list li a {
    color: #000;
}

header nav ul .dropdown-list ul li a {
    color: #000;
}

header .toggle-button {
    width: 30px;
    display: none;
}

header .toggle-button span {
    width: 30px;
    height: 4px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

/* mobile css */
header .mobile-menu .mobile-logo a img {
    width: 150px;
}

header .mobile-menu {
    width: 70%;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    left: -100%;
    z-index: 1;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    z-index: 11;

}

header .mobile-menu li {
    margin-right: 0 !important;
}

header .mobile-menu.active {
    left: 0;
}

header .mobile-menu .menu-box {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
}

header .mobile-menu .menu-box .mobile-logo {
    padding: 10px 15px 10px 20px;
    border-bottom: 1px solid #2fb6bc;
}

header .mobile-menu .menu-box .mobile-logo a {
    display: inline-block;
}

header .toggle__button.active span {
    transform: rotate(45deg);
    margin: 5px 0 0 0;
}

header .toggle__button.active span:nth-of-type(2) {
    display: none;
}

header .toggle__button.active span:nth-last-of-type(1) {
    transform: rotate(-45deg);
    margin: -3px 0 0 0;
}

.see__more {
    margin-top: 15px;
    display: block;
}

.menu-categories__list .mobile-menu_list {
    font-size: 13px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2fb6bc;
    transition: all 0.5s ease-in-out;
}

.menu-categories__list .mobile-menu_list:hover,
.subcategories_list:hover,
.subcategories__link li:hover {
    background-color: #cdcdcd61;
}

.menu-categories__list .mobile-menu_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subcategories {
    width: 100%;
    height: 100%;
    top: 92px;
    left: -100%;
    position: absolute;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
}

.subcategories__link {
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    position: absolute;
    background-color: #fff;
    overflow-y: auto;
    transition: all 0.5s ease-in-out;
}

.subcategories.active {
    left: 0;
}

.back-menu {
    padding: 10px 20px;
    border-bottom: 1px solid #2fb6bc;
    z-index: 11;
    cursor: pointer;
}

.subcategories__link .back-menu {
    padding: 0;
    border-bottom: none;
}

.back-menu i {
    margin-right: 4px;
}

.subcategories_list,
.subcategories__link li {
    padding: 10px 20px;
    border-bottom: 1px solid #2fb6bc;
    transition: all 0.5s ease-in-out;
}

.subcategories_list.active .subcategories__link {
    left: 0;
}

.back-to-menu i {
    margin-right: 10px;
}


.subcategories_list a {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories__list_item.active .subcategories {
    left: 0;
}

#tidio-chat #tidio-chat-iframe {
    display: none !important;
}

.categories__list_item .custom_packages li a span {
    display: flex;
    align-self: center;
}

.categories__list_item .custom_packages li a span img {
    width: 35px;
    margin-right: 8px;
}

.subcategories__link .area-menu {
    margin: 20px 0;
}

.subcategories__link .area-menu li {
    border-bottom: none;
    padding: 0;
}

.subcategories__link .area-menu li:nth-last-of-type(1) {
    border-bottom: none;
}

.subcategories__link .area-menu .color-orange {
    border-bottom: 2px dashed #ddd;
    display: inline-block;
    padding-bottom: 4px;
}

.subcategories__link .area-menu li ul {
    padding: 10px 20px;
}

.subcategories__link .area-menu li ul li a {
    padding: 10px 20px;
    border-bottom: 2px dashed #ddd;
}

.mobile-booking-btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    border-top: 2px dashed #dddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 40px;
    cursor: pointer;
    z-index: 11;
}

.mobile-booking-btn .booking-text {
    width: 50%;
    font-size: 11px;
    font-weight: 600;
}

.mobile-booking-btn .yellow-btn {
    padding: 5px 20px;
    text-align: center;
    border-radius: 30px;
    background: #d3cc1f;
    color: #000;
    border: none;
    font-weight: 800;
}

/* breadcrumb-sec css */
.breadcrumb-sec {
    margin-top: 70px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.breadcrumb-sec ul li:not(:nth-last-of-type(1)) {
    margin-right: 10px;
}

.breadcrumb-sec ul li {
    font-size: 14px;
}

.breadcrumb-sec ul li a {
    font-size: 14px;
    color: #5c5c5c;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}

.breadcrumb-sec ul li a:hover {
    color: #000000;
}

/* banner-sec css */
.banner-sec {
    background-image: url(../images/banner/banner-bg.jpg);
}

.banner-wrapper .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 0;
    cursor: pointer;
    background-color: #fff;
    color: #fdde6a;
}



.banner-wrapper .slick-arrow::after {
    content: "\f104";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "font awesome 5 free";
    width: 40px;
    height: 40px;
    z-index: 11;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 900;
}

.banner-wrapper .slick-next {
    right: 25px;
    left: auto;
}

.banner-wrapper .slick-next::after {
    content: "\f105";

}

.common-banner .banner-text {
    padding: 220px 0 150px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.common-banner .banner-text h1,
.common-banner .main-title {
    font-size: 46px;
    font-weight: 600;
    color: #fff;
}

.common-banner .white-color {
    margin: 20px 0;
}

.common-banner .banner-text p,
.common-banner .link-page-btn {
    color: #fff;
}

.common-banner .white-btn {
    display: inline-block;
    color: #000;
    font-size: 16px;
    padding: 10px 32px;
    background-color: #fdde6a;
    margin-top: 20px;
    font-size: 20px;
    border: none;
    font-weight: 400;
}

.common-banner .white-btn:hover {
    color: #000;
}

.common-banner .white-btn i {
    margin-left: 10px;
    transform: rotate(45deg);
}

/* growing-services css */
.growing-service-sec .row .col {
    padding: 45px 50px 28px;
    /* margin-bottom: 30px; */
    text-align: center;
    background: #fff;
    border-radius: 30px;
    filter: drop-shadow(0px 5px 15px rgba(215, 215, 217, 0.3));
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.growing-service-sec .row .col::after {
    content: "";
    width: 50%;
    height: 50%;
    background-color: #fdde6a;
    position: absolute;
    left: -30px;
    bottom: -60px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.growing-service-sec .row .col:hover:after {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0 50% 0 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

.growing-service-sec .row .col .icon-box img {
    margin: 0 auto;
    width: 150px;
}

.growing-service-sec .row .col h3 {
    font-weight: 500;
    margin: 24px 0;
}

/* about-sec css */
.about-sec ul {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

.about-sec ul li {
    margin-bottom: 10px;
    display: flex;
}

.about-sec ul li i {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background: #52DAA8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.about-sec .link-page-btn{
        color: #000000;
}
/* improve-business-sec css */
/* .improve-business-sec {} */

.improve-business-sec .com .improve-business-sec .text-top p {
    margin: 15px 0 30px;
}

.improve-business-sec .inner-box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px 40px 30px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.improve-business-sec .inner-box1 {
    background-image: url(../images/full-stack-img.png);
    height: 456px;
}

.improve-business-sec .inner-box2 {
    background-image: url(../images/e-commerce-developement-img.png);
    height: 330px;
}

.improve-business-sec .inner-box3 {
    background-image: url(../images/mobile-friendly-developement.png);
    height: 330px;
}

.improve-business-sec .inner-box p {
    margin: 15px 0;
}

.improve-business-sec .link-page-btn {
    color: #626262;
}

/* clean-code-sec css */
.clean-code-sec {
    padding: 70px 0;
}

.clean-code-sec ul {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 20px 0;
    padding: 20px 0;
}

.clean-code-sec ul li {
    display: flex;
    align-items: center;
}

.clean-code-sec ul li span {
    font-size: 44px;
    font-weight: normal;
    border-right: 1px solid #ddd;
    padding-right: 10px;
    margin-right: 10px;
}

.clean-code-sec .col-half img {
    border-radius: 20px;
    width: 80%;
    margin: 0 auto;
}

.clean-code-sec .link-page-btn {
    color: #000;
}

/* call-now-sec css */
.call-now-sec {
    background-image: url(../images/banner/call-banner.png);
    padding: 110px 0 120px;
}

.call-now-sec p {
    margin: 20px 0;
}

.call-now-sec a {
    color: #fcee2d;
}

.call-now-sec a i {
    color: #fcee2d;
}

.call-now-sec .col-half:nth-last-of-type(1) a {
    font-size: 40px;
    display: block;
    margin-top: 20px;
    color: #fff;
    text-align: center;
}

.call-now-sec .col-half img {
    margin: 0 auto;
}

/* benefit-sec css */
.benefit-sec {
    background-position: right;
}

.benefit-sec .row .col {
    text-align: center;
    padding: 40px 40px;
    background: #52DAA8;
    border-radius: 15px;

}

.benefit-sec .row .col i {
    width: 100px;
    height: 100px;
    font-size: 35px;
    border-radius: 50%;
    background-color: #fcee2d;
    color: #000;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.5s ease-in-out;
}

.benefit-sec .row .col h3 {
    padding: 30px 0;
    font-size: 30px;
}

.benefit-sec .row .col p {
    font-size: 18px;
}

/* team css */
/* our-team-sec css */
.our-team-sec {
    background-image: url(../images/banner/feature-bg.jpg);
}

.our-team-sec .col {
    text-align: center;
    cursor: pointer;
}

.our-team-sec .col img {
    margin: 0 auto;
    border-radius: 50%;
}


.our-team-sec .col h3 {
    margin: 20px 0 0;
}

.our-team-sec .col span {
    color: #7b7b7b;
    font-size: 14px;
}


.our-team-sec .col,
.our-team-sec .col img,
.our-team-sec .col h3 {
    transition: all 0.5s ease-in-out;
}

.our-team-sec .col:hover img,
.our-team-sec .col:hover h3,
.our-team-sec .col:hover span {
    transform: scale(0.8);

}

/* blog css */

.blog-sec .row{
    row-gap: 30px;
}
.blog-sec .row .col {
    width: calc(33.33% - 20px);
    margin-right: 30px;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.blog-sec .row .col:nth-of-type(3n) {
    margin-right: 0;
}

.blog-sec .row .col:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.blog-sec .row .col .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.blog-sec .row .col img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    transition: all 0.5s ease-in-out;
}

.blog-sec .row .col .badge {
    position: absolute;
    background-color: #d7ce34;
    color: #000;
    padding: 4px 10px;
    font-size: 13px;

}

.blog-sec .row .col .badge.date {
    top: 0;
    right: 0;
    border-radius: 0 0 0 7px;
}

.blog-sec .row .col .badge.category {
    top: 0;
    border-radius: 0 0 6px 0;
}

.blog-sec .row .col .blog-text {
    padding: 40px 20px;
}

.blog-sec .row .col h3 {
    font-size: 24px;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.blog-sec .row .col p {
    margin: 20px 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.blog-sec .common-heading {
    max-width: 100%;
}

.blog-sec .common-heading h2::after {
    bottom: -25px;
}

/* search-form-sec css */
.search-form-sec .form-group {
    position: relative;
}

.search-form-sec .form-group button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 8px 20px;
    border-radius: 0 7px 7px 0;
    background-color: #fdde6a;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* pagination css */
.pagination-list li a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(19, 17, 37, 0.1);
    background: #F5F5F5;
    color: #101010;
    font-size: 20px;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-list li:not(:nth-last-of-type(1)) {
    margin-right: 15px;
}

/* contact Us css */
.contact-sec .col-half img {
    width: 80%;
    border-radius: 10px;
}

.contact-sec .cont-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.contact-sec .cont-info:nth-last-of-type(1) {
    margin-bottom: 0;
}
.contact-sec .cont-info .cont-right{
    width:80%;
}

.contact-sec .cont-info .cont-left {
    margin-right: 30px;
}

.contact-sec .cont-info i {
    font-size: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fcee2d;
    color: #000;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.5s ease-in-out;
}

.contact-sec .cont-info h5 {
    color: #52DAA8;
}

.contact-sec .col-3:nth-of-type(2) {
    padding: 30px;
}

/*  */
.various-marketing {
    padding: 70px 0;
}

.various-marketing .row .col-half img {
    border-radius: 20px;
}

.various-marketing .row .col-half p {
    margin: 20px 0;
}

.various-marketing ul {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 20px 0;
    padding: 20px 0;
}

.various-marketing ul li {
    display: flex;
    align-items: center;
}

.various-marketing ul li span {
    font-size: 44px;
    font-weight: normal;
    border-right: 1px solid #ddd;
    padding-right: 10px;
    margin-right: 10px;
}

.various-marketing .col-half img {
    border-radius: 20px;
    width: 80%;
    margin: 0 auto;
}

.various-marketing .link-page-btn {
    color: #000;
}

/* blog-detail sec css */


.blog-detail-sec {
    padding: 20px 0 70px;
}

.blog-detail-sec .col-left {
    max-width: 1040px;
    margin: 0 auto;
}

.blog-detail-sec .breadcrum ul li {
    color: #010208;
}



.blog-detail-sec .content-text {
    margin: 20px 0;
}

.blog-detail-sec .content-text .main-image {
    margin: 20px 0;
}

.blog-detail-sec .content-text .main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-detail-sec .content-text h1 {
    font-size: 40px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.blog-detail-sec .content-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-detail-sec .table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.blog-detail-sec .table-responsive table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.blog-detail-sec .table-responsive table th {
    background-color: #33b6bb;
    letter-spacing: 0.3px;
}

.blog-detail-sec .table-responsive table td,
.blog-detail-sec .table-responsive table th {
    padding: 12px;
    text-align: left;
    color: white;
    border: 1px solid #ddd;
}

.blog-detail-sec .table-responsive table td,
.blog-detail-sec .table-responsive table th {
    color: #000;
}

.blog-detail-sec .table-responsive table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.blog-detail-sec .table-responsive table tr:hover {
    background-color: #ddd;
}

.blog-detail-sec .table-responsive table tr.bg-green {
    background-color: #33D13F;
}

.table-content-title {
    background-color: #efeeeef3;
    padding: 10px 20px;
    border-radius: 10px 10px;
    cursor: pointer;
}

.table-content-title h2 {
    font-size: 20px;
    color: #33b6bb;
}

.table-content-title i {
    font-size: 25px;
    transition: all 0.5s ease-in-out;
}

.table-content-title.active i {
    transform: rotate(180deg);
    border-radius: 10px 10px 0 0;
}

.table-content-list {
    display: none;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 0 0 16px 16px;
    padding-left: 52px;
}

/* .table-content-list.active{
    display: block;
} */
.table-content ul li {
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    list-style: decimal;
    transition: all 0.5s ease-in-out;
}

.table-content ul li a {
    font-size: 15px;
    color: #000000;
}

.table-content ul li:hover {
    color: #24B4BD;
    cursor: pointer;
}


.table-content ul li a:hover {
    color: #24B4BD;
    transition: all 0.5s ease-in-out;
}



.blog-detail-sec .tab-section {
    position: relative;
    margin-top: 30px;
    border: 1px solid #b5b5b5;
    border-radius: 5px;
    background: #ffffff;
    padding: 20px;
}

.blog-detail-sec .tab-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.blog-detail-sec .tab-section h2 span {
    margin-right: 10px;
    color: #d6ce33;
}

.blog-detail-sec .tab-section .img-box img {
    margin-bottom: 20px;
}

.blog-detail-sec .tab-section h3 {
    font-size: 20px;
    line-height: 1.5;
    margin: 10px 0;
}

.blog-detail-sec .tab-section h4 {
    font-size: 16px;
}

.blog-detail-sec .tab-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-detail-sec .tab-section p a,
.blog-detail-sec .tab-section li a {
    color: #33b6bb;
}

.blog-detail-sec .tab-section ul,
.blog-detail-sec .tab-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-sec .tab-section ul ol {
    margin: 20px 0;
    padding-left: 30px;

}

.blog-detail-sec .tab-section ol ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-sec .tab-section li {
    margin-bottom: 10px;
    list-style: disc;
}

.blog-detail-sec .tab-section img {
    width: 100% !important;
    margin: 10px 0;
    border-radius: 12px;
}

.blog-detail-sec .tab-section li::marker {
    color: #28b2b2;
}

.blog-sec .travel-list {
    width: 100%;
    overflow-x: auto;
}

.blog-sec .travel-list ul li {
    padding: 12px 20px;
    background-color: #28b2b2;
    color: #fff;
    margin-right: 10px;
    border-radius: 5px;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.blog-sec .travel-list ul li::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background-color: #f79420;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.blog-sec .travel-list ul li:hover::after {
    left: 0;
}

.blog-sec .blog-box {
    /* width: 33.33%; */
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    border: 1px solid #dddddd61;
    margin: 10px;
}

.blog-sec .blog-box .img-box {
    position: relative;
    width: 100%;
}

.blog-sec .blog-box .img-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.blog-sec .blog-box .content-box {
    padding: 14px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px -2px 20px;
}

.blog-detail-sec .tab-section .inner-row {
    justify-content: space-between;
}

.blog-detail-sec .tab-section .inner-col {
    width: 48%;
}

/* footer css */
footer {
    background-image: url(../images/banner/feature-bg.jpg);
}

footer .left-col {
    width: 30%;
}

footer .right-col {
    width: 54%;
}
footer .right-col .col-3:nth-of-type(1) {
    width: 24%;
}


footer .right-col .col-3:nth-of-type(2) {
    width: 45%;
}


footer h5 {
    margin-bottom: 20px;
}

footer .row p {
    margin: 20px 0;
}

footer ul li {
    margin-bottom: 16px;
}

footer ul li a {
    display: flex;
    align-items: center;
}

footer ul li a i {
    margin-right: 6px;
    font-size: 15px;
}

footer .recent-blog ul li {
    width: 30%;
    margin-bottom: 14px;
}

.copy-right {
    padding: 12px 0 6px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.copy-right p {
    color: #7b7b7b;
}

.copy-right p a {
    color: #7b7b7b;
}