/*
============================================
*   [Table of contents]
* ==========================================
    Theme Default Css
    
    05. Info Section
    06. Quality Services
    07. Our Expertise
    08. Latest News
    09. Footer
    10. Breadcrumb Area
    11. Masoanry Tab & Pagination
    12. 404 Page
    13. Blog Pages
    14. Blog Single
/* ========================================== */
:root{
    --bs-black:#000000;
    --bs-blue:#0d6efd;
    --bs-indigo:#6610f2;
    --bs-purple:#6f42c1;
    --bs-pink:#e91e63;
    --bs-red:#f74848;
    --bs-orange:#fd7e14;
    --bs-orange-dark:#ee4a34;
    --bs-orange-dark-light:#fae4df;
    --bs-yellow:#f5a416;
    --bs-green:#4caf50;
    --bs-teal:#20c997;
    --bs-cyan:#17a2b8;
    --bs-white:#ffffff;
    --bs-gray:#eeeeee;
    --bs-gray-light: #ebeced;
    --bs-gray-dark:#979797;
    --bs-primary:#c8a97e;
    --bs-primary-dark:#0279b5;
    --bs-primary-light: #f2f8fb;
    --bs-primary-shadow: rgba(0, 136, 204, 0.3);
    --bs-secondary:#000401;
    --bs-secondary-dark: #222222;
    --bs-gray-500: #f2f2f2;
    --bs-gray-500-thumb: #c2c2c2;
    --bs-success:#28a745;
    --bs-info:#17a2b8;
    --bs-warning:#ffc107;
    --bs-danger:#dc3545;
    --bs-light:#f8f9fa;
    --bs-dark:#343a40; /* sans-serif */
	--bs-font-family: 'Sarabun', sans-serif;
    --bs-font-sans-serif:"Montserrat",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-font-default: "Rubik", sans-serif;
    --bs-font-title-text: "Rubik", sans-serif;
    --bs-font-awesome: "FontAwesome";
    --bs-gradient:linear-gradient(180deg,rgba(255,255,255,0.15),rgba(255,255,255,0));
    --bs-gradient-image:linear-gradient(180deg,rgba(255,255,255,0.15),rgba(255,255,255,0));
    --bs-shadow: 2px 5px 20px rgba(0, 0, 0, .2);
    --bs-radius-defualt: 0.1875rem;
    --bs-theme-radius: 40% 60% 45% 55%/71% 67% 33% 29%;
    --bs-theme-radius-reverse: 72% 28% 56% 44%/29% 37% 63% 71%;
    --bs-transition: all .35s cubic-bezier(.645,.045,.355,1);
    --bs-transition-slow: all .55s cubic-bezier(.645,.045,.355,1);
    --bs-transition-very-slow: all .75s cubic-bezier(.645,.045,.355,1);
}
.text-primary2 {
    color:#ff8500;
   }
.title{
    padding-top: 10%;
}
/*=============== Diseño Web =============*/
.design-img{
    background-image: url(/images/diseno.jpg);
    width: 50%;
    height: 350px;
    margin-left: 50%;
}
/*=============== Desarrollo Seguro=============*/
.des-img{
    background-image: url(/images/software-development.jpeg);
    width: 50%;
    height: 350px;
}

/*=============== 07. Info Section =============*/

.info-section {
    position: relative;
    z-index: 0;
    padding-top: 12%;
}

.info-box {
    border-radius: 10px;
    text-align: center;
    padding: 0px 0px 0px;
    background: #ebebeb;
    -webkit-transition: .3s all;
    transition: .3s all;
    /*margin-top: -100px;*/
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
}

.info-box:hover {
    background-color: #244ba9;
    padding-bottom: 0;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
}

.info-box .info-box-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 45px;
    color: var(--bs-primary);
    background: transparent;
    margin: 0 auto;
    border-radius: var(--bs-theme-radius);
    -webkit-transition: .3s all;
    transition: .3s all;
}

.info-box:hover .info-box-icon {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    color: var(--bs-white);
    background-color: #244ba9;
}

.info-box h5 {
    position: relative;
    color: var(--bs-secondary);
    padding-bottom: 0.95rem;
    margin-bottom: 0.85rem;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.info-box:hover h5 {
    color: var(--bs-white);
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
}

.info-box h5:after,
.info-box h5:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.info-box h5:after {
    bottom: 0;    
    width: 90px;
    height: 2px;
    background-color: var(--bs-secondary);
}

.info-box:hover h5:after, .info-box:hover h5:before,
.info-box:focus-within h5:after, .info-box:focus-within h5:before {
    background: var(--bs-white);
}

.info-box h5:before {
    bottom: -3px;
    z-index: 1;
    width: 28px;
    height: 8px;
    border-radius: 4px;
    background-color: #FF8500
    
}

.info-box p {
    margin: 0;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.info-box:hover p {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    color: var(--bs-white);
}

.info-box .theme-link {
    margin-top: 0.625rem;
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    text-decoration: none;
}

.info-box:hover .theme-link {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
}

.info-box .read-link:hover,
.info-box .read-link:focus,
.info-box .read-link {
    color: var(--bs-white);
}

.info-box .theme-link .read-link:hover:after,
.info-box .theme-link .read-link:focus:after,
.info-box .theme-link .read-link:after {
    color: var(--bs-primary);
    background-color: var(--bs-white);
}
/*===== 06. Responsive info box =====*/
@media only screen and (max-width:1200px) {
    .w100px {
        width: 150px;
    }

    .contact-info .contactinfo-form {
        padding: 30px 15px;
    }

    .logo-text h2 {
        color: #fff;
        font-size: 30px;
    }

    .logo-text .logo-title {
        color: #fff;
    }
}


@media only screen and (max-width:1300px) and (min-width:1200px) {  }

@media only screen and (min-width: 992px) {
    .main-navigation .logo {
        margin-left: -4px;
    }
    .header-transparent .main-header {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-top: 0;
        margin: 0 auto;
        z-index: 99;
    }
    .header-transparent .main-header {
        background: none;
    }
    .header-transparent .main-slider div.theme-content {
        margin-top: 7.75rem;
    }

    .text-lg-left .heading-seprator h1:before {
        margin: auto auto auto 0;
    }
    .text-lg-left .heading-seprator h1:after {
        left: 45px;
        text-align: center;
        margin: auto auto auto 0;
    }

    .footer-2:before {
        content: "";
        width: 100%;
        -ms-flex: 0 0 27%;
        flex: 0 0 27%;
        max-width: 27%;
        height: 100%;
        position: absolute;
        background-color: #08c;
    }
    .footer-2 .widget_about {
        padding: 0 30px 0 0;
    }

    .footer-2.right .widget_about {
        padding: 0 0 0;
    }
    .footer-2 .widget:not(.widget_about),
    .footer-2.right .widget {
        padding-left: 40px;
    }
    .footer-2.right .row .row [class*=col-]:nth-child(2) .widget {
        padding-left: 0px;
    }
    .footer-2.right:before {
        right: 0;
    }
    .footer-2.left .payment_methods li:hover {
        color: #181b1e;
    }
    .footer-2.right [class*=col-]:first-child {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    /* Classic Blog */
    .classic-blog .post-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .classic-blog .post-item .post-thumbnail {
        flex: 0 0 auto;
        max-width: 45%;
    }

    .classic-blog .post-item .post-content {
        flex: 1;
        -webkit-transform: translate(-30px, 1px);
        transform: translate(-30px, 1px);
        border-radius: 10px;
        height: 100%;
        padding-left: 23px;
        padding-right: 23px;
        margin: 0;
    }
	
	.header-transparent .header-widget .textwidget, 
	.header-transparent .above-header .contact-area, 
	.header-transparent .above-header .contact-area:hover .contact-icon, 
	.header-transparent .above-header .contact-area:focus-within .contact-icon, 
	.header-transparent .header-widget .widget:not(.widget_social_widget) ul li,
	.header-transparent .header-widget .widget:not(.widget_social_widget) ul li a, .header-transparent .header-widget .widget li span {
		color: var(--bs-white);
	}
	
	.header-transparent .main-header .widget:not(.widget_social_widget) li:not(:last-child) {
		border-right-color: rgba(255, 255, 255, 0.3);
	}
}

@media only screen and (max-width:1200px) and (min-width:991px) {
    .w100px {
        width: 100px;
    }
    .navigation .nav-menu .menu li a {
        padding: 18px 6px;
    }

    .is-sticky .navigation .menu li a {
        padding: 16px 6px;
    }

    .widget_links ul {
        min-width: 100px;
    }

    .post-item .post-content {
        padding: 15px;
    }

    .post-content-bottom {
        margin-top: 15px;
        padding: 10px 0 0;
    }

    .navigation .menu li a {
        padding: 18px 8px;
    }

    .nav-menu .menu {
        margin-left: 0;
        -webkit-transition: .3s all;
        transition: .3s all;
    }

    .is-sticky .nav-menu .menu {
        margin-left: 0;
    }
}

@media only screen and (max-width:991px) {
    .logo-text img {
        padding: 10px 0px;
    }
    ul.menu-right-list {
        margin-right: 50px;
    }
	.widget-left, .widget-right {
		display: block;
	}
	.widget-right .widget .contact-area, 
	.widget-left .widget .contact-area {
		justify-content: center;
	}
    .theme-slider .theme-content {
        margin-bottom: 0;
        margin-top: 0;
    }

    .theme-content h6 {
        font-size: 1.375rem;
    }

    .theme-content h1 {
        font-size: 1.75rem;
    }

    .theme-content p {
        font-size: 0.875rem;
    }

    .gallery-items .gallery-item a {
        width: 33.33%;
    }

    .info-section {
        margin-top: 6.25rem;
    }

    .info-box {
        margin-top: 0;
    }

    .info-box:hover {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }

    .info-box:hover .info-box-icon {
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }

    .info-box:hover h5 {
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }

    .info-box:hover p {
        -webkit-transform: translateY(-25px);
                transform: translateY(-25px);
        color: var(--bs-white);
    }

    .info-box:hover a {
        -webkit-transform: translateY(3px);
                transform: translateY(3px);
    }

    .widget_links {
        margin-left: 0;
    }

    .widget_links ul li {
        margin-bottom: 15px;
    }

    .masonary-tab-sorting li a {
        margin-bottom: 10px;
    }

    .masonary-tab-sorting {
        margin-bottom: 50px;
    }

    .contact-form form {
        padding-bottom: 40px;
    }

    .page-contact-info {
        margin-top: 0;
    }

    .text-404 {
        font-size: 200px;
    }

    .subscribe-form {
        width: 50%;
    }

    .video-section {
        display: block;
        position: relative;
        height: 500px;
        width: 100%;
        margin-bottom: 50px;
    }

    .cs-close {
        display: none;
    }

    .cs-section .cs-section-inner-container {
        width: 100%;
    }
    .comment-list .children {
        margin-left: 0;
    }
}

@media only screen and (max-width:991px) {
    .header-widget:not(.header-item):not(.header-carousel) .widget:not(.widget_media_video) {
		line-height: 40px;
	}
}

    
@media only screen and (min-width: 768px) {
    
}

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

    .theme-content h6,
    .theme-content h1,
    .theme-content p {
        margin-bottom: 0.625rem;
    }

    .theme-content .btn {
        padding: 0.375rem 0.875rem;
    }

    .theme-content .btn-like-icon .bticn {
        width: 36px;
        line-height: 2.4;
    }

    .theme-content .btn.btn-like-icon {
        padding-right: 3rem;
    }

    .commingsoon-wrap .cs-intro-left-section-container {
        padding: 30px 20px
    }

    ul.menu-right-list {
        margin-right: 70px;
    }

    .info-text {
        margin-left: 54px;
    }

    .info-text h6 {
        padding-top: 3px;
    }

    .info-icon {
        width: 20px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .info-area .info-icon i {
        line-height: 40px;
    }

    .info-icon:before {
        left: -10px;
        border-top: 20px solid transparent;
        border-right: 10px solid #00325b;
        border-bottom: 20px solid transparent;
    }

    .info-icon:after {
        right: -10px;
        border-top: 20px solid transparent;
        border-left: 10px solid #00325b;
        border-bottom: 20px solid transparent;
    }

    .single-seriveces {
        padding: 1.5rem;
    }

    .overview-wrapper {
        padding-bottom: 6.25rem;
    }

    .pricing-wrapper .featured-text {
        top: 26px;
        right: -80px;
    }

    .gallery-items .gallery-item a {
        width: 50%;
    }

    .expertise-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .expertise-icon {
        margin-bottom: 25px;
    }

    .expertise-item .expertise-icon:after,
    .expertise-item .expertise-icon:before {
        left: 30px;
    }

    .success-info {
        padding: 2rem;
    }

    .cta-wrapper .boxed-btn {
        margin-top: 0;
    }

    .cta-wrapper .or {
        display: block;
        margin: 15px auto;
    }

    .partners-wrapper .owl-nav {
        position: relative;
        margin: 20px auto 0;
        width: 200px;
        text-align: center;
        top: 0;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }

    .partners-wrapper .owl-nav .owl-next {
        right: 0;
        float: none;
    }

    .partners-wrapper .owl-nav .owl-prev {
        left: 0;
    }

    .widget_office {
        margin-left: 0;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-copyright {
        margin-top: 20px;
    }

    .payment_methods li {
        margin-top: 10px;
    }

    .subscribe-form {
        width: 80%;
    }

    .breadcrumb-area {
        text-align: center;
    }

    .breadcrumb-area h3 {
        float: none;
        display: inline-block;
        margin-bottom: 10px;
    }

    .breadcrumb-area ul {
        float: none;
    }

    .pagination-nav li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .pagination-nav li.prev a,
    .pagination-nav li.next a {
        line-height: 32px;
    }

    .widget_links ul {
        min-width: 110px;
    }
    .page-contact-wrap .widget.widget-contact .contact-area {
        flex: 0 0 47%;
        max-width: 47%;
    }
    .page-contact-wrap .widget.widget-contact {
        padding: 0;
    }
	
	.main-footer .widget .widget-title {
		display: inline-block;
	}
	
	.main-footer .widget .widget-title:before {
		right: 0;
		margin: auto;
	}
}

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

    .subscribe-form button.btn-like-icon {
        padding-right: 46px;
    }

    .subscribe-form button.btn-like-icon .bticn {
        width: 46px;
    }

    .logo-text h2 {
        font-size: 26px;
    }

    .pagination-nav li a {
        width: 35px;
        height: 35px;
        line-height: 34px;
    }

    .pagination-nav li.prev a,
    .pagination-nav li.next a {
        padding: 0 15px;
        margin: 0 5px;
    }

    .pagination-nav li.dotted {
        display: none;
    }

    .comments-area {
        padding: 30px 15px;
    }

    .info-area {
        padding: 5px 0;
    }

    .video-overlay iframe {
        width: 90%;
    }

    .author-profile {
        padding: 15px;
        text-align: center;
    }

    .author-profile .media {
        display: block;
    }

    .author-profile img {
        margin-right: 0;
        padding-top: 15px;
    }

    .author-social {
        padding-top: 15px;
    }

    .comment-list article .comment-metadata {
        text-align: left;
    }

    .comment-list article .comment-content {
        margin-left: 0;
    }

    .comment-list .edit {
        margin-left: 0;
    }

    .widget_links {
        margin-left: 0;
    }

    .pricing-wrapper .featured-text {
        top: 26px;
        right: -65px;
    }

    .menu-right-list li.search-button {
        display: none;
    }

    .page-contact-wrap .widget.widget-contact .contact-area {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .page-contact-wrap .widget.widget-contact .contact-area:not(:first-child):not(:nth-child(2n+3)) {
        margin-left: 0;
    }
}

@media only screen and (max-width:540px) {
    .theme-slider .theme-content {
        max-width: 288px;
    }
    .theme-slider .theme-slider-card {
        padding: 25px;
    }

    .theme-content h6 {
        padding: 0.3125rem 0.625rem;
        font-size: 0.85rem;
        margin-bottom: 0.3125rem;
    }

    .theme-content h1 {
        font-size: 1.25rem;
        margin-bottom: 0.3125rem;
    }

    .theme-content p {
        font-size: 0.8125rem;
        margin-bottom: 0.3125rem;
        max-width: 275px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .theme-slider .text-center p {
        margin-left: auto;
        margin-right: auto;
    }

    .theme-slider .text-right p {
        margin-left: auto;
    }

    .theme-content .btn {
        font-size: 0.75rem;
        padding: 0.25rem 0.45rem;
        margin-top: 10px;
    }

    .theme-content .btn:not(:last-child) {
        margin-right: 0;
    }

    .theme-content .btn.btn-like-icon {
        padding-right: 2.25rem;
    }

    .theme-content .btn-like-icon .bticn {
        width: 28px;
    }

    .commingsoon-wrap .cs-intro-right-section,
    .commingsoon-wrap .cs-section.cs-subscription-section,
    .commingsoon-wrap .cs-section.cs-contact-section {
        padding: 70px 40px 0;
    }

    .commingsoon-wrap .cs-section.cs-contact-section {
        padding-bottom: 70px;
    }

    .header-single-slider .inner-content h1 {
        font-size: 20px;
    }

    .header-single-slider .inner-content p {
        font-size: 12px;
    }

    .header-single-slider .inner-content .boxed-btn {
        font-size: 14px;
    }

    .header-single-slider .inner-content .boxed-btn {
        font-size: 14px;
    }

    .header-single-slider figure img {
        max-width: 120%;
        min-height: 280px;
    }

    .info-wrapper {
        padding: 30px 30px;
    }

    .text-404 {
        font-size: 150px;
        margin-bottom: 30px;
    }

    .subscribe-form h3 {
        font-size: 24px;
    }

    .subscribe-form h4 {
        font-size: 16px;
    }

    .pagination-nav li {
        margin-bottom: 10px;
    }

    .pagination-nav li:last-child {
        margin-bottom: 0;
    }

    .comment-list article .comment-metadata {
        float: none;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .widget_about {
        padding-right: 40px;
    }

    .comment-list .children {
        margin-left: .5rem;
    }

    .comment-list .children .comment-body {
        padding: 16px;
    }
}

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

    .overview-btn {
        width: 100%;
    }

    .overview-btn .btn {
        display: block;
        width: 100%;
    }

    .overview-btn .btn:nth-child(2) {
        margin-top: 1.5rem;
    }

    .logo-text .logo-title {
        font-size: 10px;

    }

    .subscribe-form {
        width: 100%;
    }

    .navigation .col-5,
    .navigation .col-7 {
        max-width: 50% !important;
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none;
        text-align: center;
    }

    .mean-container .mean-nav {
        margin-top: -17px;
    }

    .pagination-nav li.prev a,
    .pagination-nav li.next a {
        padding: 0 8px;
    }

    .pagination-nav li a {
        width: 26px;
        height: 26px;
        line-height: 24px;
    }

    .pagination-nav li.prev a,
    .pagination-nav li.next a {
        line-height: 24px;
    }

    .pagination-nav li.prev a,
    .pagination-nav li.next a {
        margin: 0;
    }

    .text-404 {
        font-size: 115px;
    }

    .page-404 h2 {
        font-size: 24px;
    }

    .page-404 h3 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .subscribe-form span.input {
        width: 78%;
    }

    .shopping-cart {
        width: 270px;
        left: -160px;
    }

    .shopping-cart:after {
        left: 68%;
    }

    .comments-area .comment-meta .comment-author img {
        position: unset;
        margin-right: 0.5rem;
        display: inline-block;
    }

    .comments-area .comment-body {
        padding: 25px 22px;
    }

    .comment-meta .comment-metadata {
        margin: 0;
        white-space: nowrap;
    }

    .comment-metadata .edit-link {
        margin-left: 0;
        display: block;
        margin-top: 5px;
    }

    .comment-meta .comment-metadata time {
        font-size: 14px;
    }
}

@media only screen and (max-width:330px) {
    .mobile-logo .logo {
        max-width: 168px;
    }
    .subscribe-form span.input {
        width: 75%;
    }
    .logo-text .logo-title {
        font-size: 9px;
    }
    .header-single-slider .inner-content {
        padding: 15px 15px;
    }
    .header-single-slider .inner-content h1 {
        font-size: 18px;
    }
    .header-single-slider .inner-content .boxed-btn {
        font-size: 14px;
    }
    .shopping-cart .shopping-cart-items {
        padding-top: 10px;
    }
    .shopping-cart {
        padding: 15px 15px;
    }
    .shopping-cart .boxed-btn {
        margin-top: 0;
    }
}


/*===== 07. Heading Section =====*/

.heading-seprator h1 {
    color: var(--bs-secondary);
    position: relative;
    padding-bottom: 1.65rem;
    margin-bottom: 1rem;
}

.heading-seprator h1:after {
    content: "\f103";
    font-family: var(--bs-font-awesome);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: .65rem;
    color: var(--bs-white);
    background-color: var(--bs-primary);
    border-radius: var(--bs-theme-radius);
    z-index: 0;
}

.heading-seprator h1:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    width: 112px;
    height: 2px;
    margin: auto;
    background-color: var(--bs-secondary);
}

.text-white.heading-seprator h1:after {
    color: var(--bs-primary);
}

.text-white.heading-seprator h1:after,
.text-white.heading-seprator h1:before {
    background-color: var(--bs-white);
}

.heading-seprator p {
    margin-bottom: 0;
    font-weight: 400;
}

/*=============== 08. Quality Services =============*/

.single-seriveces {
    position: relative;
    top: 0;
    z-index: 1;
    background: var(--bs-white);
    padding: 15% 12%;
    text-align: center;
    margin: 10px;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
    box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
    border-bottom: 5px solid transparent;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
}

.single-seriveces:hover {
    top: -10px;
    box-shadow: 0px 10px 30px 0px rgba(38, 59, 94, 0.1);
    border-color: var(--bs-primary);
}

.single-seriveces:hover .services-icons {
    border-radius: var(--bs-theme-radius-reverse);
}

.services-icons {
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 2.75rem;
    border-radius: var(--bs-theme-radius);
    margin-bottom: 30px;
    display: inline-block;
    color: var(--bs-white);
    background-color: var(--bs-primary);
    -webkit-transition: ease all 0.3s;
    transition: ease all 0.3s;
}

.col:nth-child(3n-2) .single-seriveces .services-icons,
.owl-item:nth-child(3n-2) .single-seriveces .services-icons {
    background-color: var(--bs-yellow);
}

.col:nth-child(3n-3) .single-seriveces .services-icons,
.owl-item:nth-child(3n-3) .single-seriveces .services-icons {
    background-color: var(--bs-green);
}

.services-icons i {
    vertical-align: middle;
}

.single-seriveces .services-icons img {
    width: 44px;
    display: inline-block;
}

.single-seriveces h5 {
    margin-bottom: 10px;
}

.single-seriveces h5 a {
    text-decoration: none;
    display: block;
}

.single-seriveces h5 a:not(:hover):not(:focus) {
    color: var(--bs-secondary);
}

.single-seriveces p {
    margin-bottom: 0;
}


/* =============== Main Nav Tab ============= */
.main-nav-tab {
    -webkit-box-shadow: 0px 20px 45px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 20px 45px 0px rgba(0, 0, 0, 0.08);
    border-radius: 1.61765rem;
    max-width: 260px;
    margin: 0 auto;
    background-color: var(--bs-white);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px 0;
    z-index: 1;
    position: relative;
}

.main-nav-tab li {
    display: inline-block;
}

.main-nav-tab li a {
    display: block;
    color: #5f5f5f;
    font-weight: 600;
    min-width: 125px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 8px 31px;
    text-align: center;
    text-decoration: none;
}

.main-nav-tab li a.active {
    color: var(--bs-white);
}

.main-nav-tab li a,
.tab-swipe .indicator {
    border-radius: 1.35294rem;
}

.tab-swipe {
    position: relative;
}

.tab-swipe .indicator {
    background-color: var(--bs-primary);
    position: absolute;
    left: 0;
    z-index: -1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    height: calc(100% - 10px);
}

.main-nav-tab-2 {
    margin-bottom: 50px;
}

.main-nav-tab-2.nav-tabs {
    border-bottom: 1px solid rgba(9, 208, 201, 0.25);
}

.main-nav-tab-2 li {
    width: calc(100% / 4);
}

.main-nav-tab-2 li a {
    display: block;
    text-align: center;
    color: var(--bs-white);
    font-family: var(--bs-font-family);
    font-size: 1.17647rem;
    font-weight: 500;
    padding-bottom: 40px;
}

.main-nav-tab-2 li a>p {
    min-height: 46px;
    display: block;
    margin-bottom: 15px;
}

.main-nav-tab-2.tab-swipe .indicator {
    top: inherit;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    bottom: -1px;
    border-radius: 0px;
    height: 2px;
    background-color: #09d0c9;
}

/*=============== 13. Our Gallery =============*/

.col figure.gallery-item {
    margin: 0;
}

.gallery-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--bs-primary);
}

.gallery-item img {
    transition: all .35s;
    -webkit-transition: all .35s;
    transform: translate3d(0,0,0) scale(1.01);
    -webkit-transform: translate3d(0,0,0) scale(1.01);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
    transform: translate3d(-4px,0,0) scale(1.1) rotate(3deg);
    -webkit-transform: translate3d(-4px,0,0) scale(1.1) rotate(3deg);
}

.gallery-item figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2em;
    font-weight: 600;
    color: var(--bs-white);
    background: rgb(24 27 30 / 80%);
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--bs-transition-slow);
    transition: var(--bs-transition-slow);
}

.gallery-item figcaption:before,
.gallery-item figcaption:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-item figcaption:after {
    background-color: rgba(255,255,255,.4);
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-101%,0);
    -webkit-transition: all .6s;
}

.gallery-item:hover figcaption:after,
.gallery-item:focus-within figcaption:after {
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,101%,0);
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,101%,0);
}

.gallery-item figcaption:before {
    content: "\f002";
    font-family: var(--bs-font-awesome);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 19%;
    height: 20%;
    line-height: 1;
    background-color: var(--bs-white);
    border-radius: var(--bs-theme-radius);
    top: auto;
    right: 0;
    bottom: 15px;
    left: 0;
    margin: 0 auto;
    transform: translateX(500%);
    opacity: 0;
    visibility: hidden;
    transition: var(--bs-transition-very-slow);
}

.gallery-item:hover figcaption:before,
.gallery-item:focus-within figcaption:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    margin: 0 auto;
}

.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
    opacity: 1;
    visibility: visible;
}

.gallery-icon {
    position: relative;
}

/*=============== 14. Our Expertise =============*/

.expertise-item {
    padding: 30px 25px 25px;
    border: 1px solid var(--bs-gray-500);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
}

.expertise-item:hover {
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    position: relative;
    flex: 0;
}

.expertise-card {
    flex: 1;
}

.expertise-item .icon {
    width: 80px;
    height: 80px;
    display: block;
    line-height: 80px;
    text-align: center;
    color: var(--bs-primary);
    background: var(--bs-white);
    border-radius: var(--bs-theme-radius);
    font-size: 42px;
    margin-right: 1rem;
    position: relative;
    box-shadow: 0 0 15px 5px rgba(0, 136, 204, 0.27);
}

.expertise-item h5 a {
    text-decoration: none;
}

.expertise-item h5 a:not(:hover):not(:focus) {
    color: var(--bs-secondary);
}

.expertise-item p {
    margin: 0;
}

.success-info {
    padding: 3.094rem;
    text-align: center;
    background-color: var(--bs-white);
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}

.success-inner>i,
.success-inner img {
    display: inline-block;
    margin-bottom: 2.75rem;
}

.success-inner h5 {
    margin-bottom: 1rem;
}

.success-inner p {
    margin: 0;
}

.success-inner .btn {
    margin-top: 1rem;
}

/*=============== 17. Latest News =============*/

.post-item .post-title {
    font-size: 1.25rem;
}

.post-item {
    margin-bottom: -40px;
}

.post-item .post-thumbnail {
    position: relative;
    z-index: 0;
    overflow: hidden;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}

.post-item .post-thumbnail img {
    width: 100%;
    z-index: -1;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.post-item:hover .post-thumbnail img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2)
}

.post-item .post-thumbnail:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    z-index: 1;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.post-item:hover .post-thumbnail:after {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    visibility: visible;
}

.post-item .post-thumbnail .post-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: var(--bs-theme-radius);
    color: var(--bs-primary);
    background-color: var(--bs-white);
    text-align: center;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: 2;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.post-item:hover .post-overlay {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
}

.post-item .post-content {
    background: var(--bs-white);
    border-radius: 10px 10px 0 0;
    margin: 0 12px;
    padding: 25px 15px 25px 15px;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    -webkit-box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.06);
}

.post-item .meta-info {
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    font-size: .9rem;
}

.post-item .meta-info a {
    text-decoration: none;
    display: inline-block;
    color: var(--bs-secondary);
}

.post-item .meta-info li {
    display: inline-block;
}

.post-item .meta-info li:not(:last-child) {
    margin-right: 10px;
}

.post-item .meta-info li i {
    margin-right: 5px;
    color: var(--bs-primary);
}

.post-item .post-title a {
    display: block;
    text-decoration: none;
}

.post-item .post-content-bottom {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding: 20px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.more-link {
	position: relative;
	padding-right: 0;
    text-decoration: none;
    -webkit-transition: ease padding-right 300ms;
    transition: ease padding-right 300ms;
}

.more-link:not(:hover),
.more-link:not(:focus) {
    color: var(--bs-secondary);
}

.more-link:after {
    content: "\f178";
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--bs-font-awesome);
    opacity: 0;
    visibility: hidden;
    transition: var(--bs-transition);
}

.more-link:hover,
.more-link:focus {
    padding-right: 20px;
    color: var(--bs-primary);
    text-decoration: none;
}

.more-link:hover:after,
.more-link:focus:after {
    opacity: 1;
    visibility: visible;
    right: 0;
}

/*=============== 20. Footer =============*/

.footer-wrapper {
    color: var(--bs-white);
    position: relative;
    overflow: hidden;
    background-color: var(--bs-secondary);
}

.footer-inner {
    padding: 50px 0 20px;
}

.footer-contacts {
    padding-bottom: 30px;
    color: var(--bs-white);
    text-align: center;
}

.footer-contacts a {
    display: block;
    width: 100%;
    height: 30px;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-contacts i {
    color: var(--bs-white);
    display: block;
    font-size: 33px;
    margin-bottom: 12px;
}

.footer-matter {
    padding: 0;
    border-top: 4px double #37485c;
    border-bottom: 4px double #37485c;
    overflow: hidden;
}

.footer-matter .widget {
    padding: 1.5rem 0.525rem;
}

.footer-matter .border-right {
    border-right: 1px solid #37485c !important;
}

.footer-matter .columns {
    padding: 20px 0 20px 50px;
}

/* Scroll Up */
.scrollingUp {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    color: var(--bs-white);
    border: none;
    border-radius: var(--bs-theme-radius);
    background-color: var(--bs-secondary-dark);
    -webkit-transition: .9s;
    transition: .9s;
    box-shadow: 0 2px 12px -3px rgba(0, 0, 0, .5);
}

.scrollingUp:hover {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .5)
}

.is-active {
    opacity: 1;
    visibility: visible;
}

/*=============== 21. Breadcrumb Area =============*/
.breadcrumb-area {
    padding: 70px 0 70px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--bs-white);
}

.header-transparent .breadcrumb-area {
    min-height: 300px;
    align-items: flex-end;
    padding: 60px 0 45px;
}

.breadcrumb-area:before,
.breadcrumb-area:after {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    z-index: -1;
}

.breadcrumb-area:before {
    top: 0;
    height: 100%;
    background-color: var(--bs-secondary-dark);
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    z-index: -1;
	background-color: #222222;
    opacity: 0.75;
    background-image: url(../images/pattern_banner.png);
    background-repeat: repeat;
    background-position: left top;
}

.breadcrumb-area:after {
    bottom: -15px;
    height: 15px;
    background: url(../images/bg/breadcrumbbefore.png);
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    z-index: -1;
}

.breadcrumb-area h3 {
    position: relative;
    padding-left: 70px;
    margin: 0;
    float: left;
}

.breadcrumb-area h3:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 6px;
    border-radius: 3px;
    margin: auto 0;
    background-color: var(--bs-primary);
}

.breadcrumb-area ul {
    float: right;
    margin: 0;
}

.breadcrumb-nav li {
    display: inline-block;
    position: relative;
    color: var(--bs-white);
}

.breadcrumb-nav li a {
    color: var(--bs-white);
    text-decoration: none;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.breadcrumb-nav li a:hover {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}

.breadcrumb-nav li:last-child:after {
    display: none;
}

/*=============== 23. Masoanry Tab & Pagination =============*/

/* Pagination */

.navigation.pagination {
    display: inline-flex;
}

nav.woocommerce-pagination ul, .pagination .nav-links {
    display: inline-flex;
}

.pagination .page-numbers:not(.dots) {
    font-weight: 600;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    color: var(--bs-white);
    background-color: var(--bs-secondary);
    display: flow-root;
    font-size: 16px;
    line-height: 1.1;
    min-width: 44px;
    text-align: center;
    padding: 0.72rem 0.35rem;
    transition: all 0.3s ease 0s;
    vertical-align: baseline;
    white-space: nowrap;
    text-decoration: none;
    border-radius: var(--bs-theme-radius);
    cursor: pointer;
}

.pagination .page-numbers.dots {
    display: inline-block;
    line-height: 16px;
    font-size: 50px;
    margin-right: 10px;
}

.pagination .nav-links a:hover,
.pagination .nav-links a:focus,
.pagination .nav-links .page-numbers.current {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.pagination .page-numbers:not(.dots):not(:last-child) {
    margin-right: 10px;
}

.bs-post-pagination div.nav {
    display: inline-flex;
    align-items: center;
}

.bs-post-pagination div.nav>span {
    display: inline-block;
    margin: 0 10px;
    line-height: 40px;
    padding: 0 10px;
    font-weight: 700;
}

.bs-post-pagination div.nav a {
    display: inline-block;
    color: var(--bs-white);
    padding: 5px 25px;
    font-weight: 600;
    letter-spacing: 0.185px;
    position: relative;
    z-index: 0;
    border-radius: 6.25rem;
    background-color: var(--bs-primary);
    vertical-align: middle;
    display: inline-block;
    padding: 0 20px;
    line-height: 40px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*===== // =====*/

/*=============== 25. 404 Page =============*/
.text-404 {
    font-size: 23.75rem;
    line-height: 0.75;
    margin-bottom: 2.75rem;
    font-weight: 800;
    font-family: var(--bs-font-sans-serif);
}

.page-404 h3 {
    margin-bottom: 50px;
}

.page-404 .page-404-text .btn.btn-like-icon {
    padding-right: 1rem;
    padding-left: 3.75rem;
}

.page-404 .page-404-text .btn.btn-like-icon .bticn {
    right: auto;
    left: 0;
}

.subscribe-form {
    width: 40%;
    margin: 0 auto;
    margin-top: 40px;
    display: inline-block;
}

.subscribe-form p {
    float: left;
    width: 80%;
    margin: 0;
}

.subscribe-form button {
    float: left;
    margin-top: 0;
    padding: 0;
    width: 46px;
    height: 46px;
}

.subscribe-form button.btn-like-icon {
    padding-right: 50px;
}

.subscribe-form button.btn-like-icon .bticn {
    width: 50px;
}

.subscribe-form button:hover {
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}


/*=============== 26. Blog Pages =============*/

.post-thumb {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.post-thumb .meta-date {
    padding: 10px 20px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.post-content-bottom .more-link {
    text-align: right;
    font-weight: 600;
}

.post-content .meta-date, .post-content-bottom .more-link {
    display: inline-block;
    line-height: 1.5;
    vertical-align: text-top;
}

.blog-content .pagination-nav {
    margin-top: 0;
}

.blog-content .sidebar .widget:last-child {
    margin-bottom: 0;
}

/*=============== 28. Blog Single =============*/

/* Author */
.author-profile {
    padding: 30px;
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.06);
}

.author-profile img {
    margin-right: 1.25rem;
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.06);
    border-radius: var(--bs-theme-radius);
}

.author-profile .media {
    padding-bottom: 30px;
    display: flex;
    align-items: center;
}

.author-body h3 a {
    display: inline-block;
    margin: 0;
}

.author-body h3 a:not(:hover):not(:focus) {
    color: var(--bs-secondary);
    text-decoration: none;
}

.author-social {
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
}

.author-social .social-links {
    position: relative;
    visibility: visible;
    -webkit-transform: translate(0);
            transform: translate(0)
}

.single-comments-title h5,
.comment-reply-title,
.author-profile h3 {
    font-weight: 700;
    line-height: 1;
    position: relative;
    padding-left: 15px;
}

.single-comments-title h5:before,
.comment-reply-title:before,
.author-profile h3:before {
    content: "";
    width: 6px;
    height: 100%;
    background-color: var(--bs-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 50px;
}

/* Comments Area */

.comments-area {}

.single-comments-title,
.comments-title {
    margin-bottom: 1.25rem;
    text-align: left;
}

.comment-list {
    padding: 0;
    list-style: none;
    margin-bottom: 1.75rem;
}

.comments-area li {
    list-style: none;
}

.comments-area .comment-body {
    position: relative;
    padding: 30px 30px 30px 113px;
    min-height: 120px;
    overflow-wrap: break-word;
    border-radius: 10px;
    z-index: 0;
    box-shadow: 0px 0px 5.52px 0.48px rgba(33, 33, 33, 0.23);
}

.comments-area li:not(:last-child) .comment-body {
    margin-bottom: 1.25rem;
}

.comments-area .comment-meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-weight: 600;
}

.comments-area .comment-meta .comment-author img {
    position: absolute;
    z-index: 0;
    left: 30px;
    top: 55px;
    bottom: 0;
    width: 65px;
    border-radius: 5px;
}

.comment-author b {
    font-weight: 700;
}

.comment-meta .comment-metadata {
    margin-left: 5px;
}

.comment-author a:not(:hover):not(:focus),
.comment-metadata a:not(:hover):not(:focus) {
    text-decoration: none;
}

.comment-content {
    position: relative;
    z-index: 0;
    padding: 0.5rem 0 0.85rem;
}

.comment-content p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.comment-metadata .edit-link {
    margin-left: 10px;
}

.comment-metadata .edit-link,
.comment-body .reply {
    font-weight: 600;
    display: inline-block;
}

.comment-metadata .edit-link a,
.comment-body .reply a {
    display: inline-flex;
    color: var(--bs-white);
    background-color: var(--bs-secondary);
    border-radius: 0;
    font-size: 12px;
}

.comment-metadata .edit-link a,
.comment-body .reply a {
    padding: 0.5rem 0.973rem;
}

.comment-metadata .edit-link a:hover,
.comment-body .reply a:hover,
.comment-metadata .edit-link a:focus,
.comment-body .reply a:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.comment-body .reply {
    text-align: left;
}

.comment-list .children {
    position: relative;
    padding: 0;
    margin: 0;
    margin-left: 4.5rem;
    z-index: 0;
}

#cancel-comment-reply-link {
    color: var(--bs-primary);
    text-decoration: underline;
}

#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus {
    text-decoration: none;
}

/* Comment Form */

.comment-respond {
    margin-bottom: 1.75rem;
}

.single-comments-title h5,
.comment-reply-title {
    text-align: left;
    color: var(--bs-secondary);
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.comment-form > p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    flex: 1 1 40%;
}

.comment-form > p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 1.25rem;
}

.comment-form p.comment-form-url:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 0;
}

.comment-form label {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 5px;
}

.comment-form .comment-form-cookies-consent label {
    margin-bottom: 0;
    vertical-align: middle;
    margin-left: 6px;
}

.comment-form .required {
    color: var(--bs-red);
}

.comment-form-comment {
    max-width: 100%;
    flex-basis: 100%;
}

.comment-form > p:not(:last-child) {
    margin-bottom: 1.25rem;
}

.comment-form-cookies-consent, .form-submit {
    width: 100%;
}

/* ----------------------
*   Shapes Section
---------------------------*/

.shapes-section {
    position: relative;
    overflow: hidden;
}

.shapes-section .shapes-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.shapes-section .shapes-box span {
    position: absolute;
}

.shapes-section .shapes-box span b {
    width: 20px;
    height: 20px;
    border-radius: var(--bs-theme-radius);
    box-shadow: 0px 20px 24px 0px currentColor;
    display: inline-block;
    opacity: 0.5;
}

.shapes-section .shapes-box span b.green {
    color: #1edee4;
    background: #1edee4;
}

.shapes-section .shapes-box span b.yellow {
    color: #ffbc5c;
    background: #ffbc5c;
}

.shapes-section .shapes-box span b.pink {
    color: #ff2560;
    background: #ff2560;
}

.shapes-section .shapes-box span b.blue {
    color: #0080ff;
    background: #0080ff;
}

.shapes-section .shapes-box span b.theme {
    color: #0026FF;
    background: #0026FF;
}

.shapes-section .shapes-box span:nth-child(1) {
    left: 4.8%;
    top: 4.5%;
}

.shapes-section .shapes-box span:nth-child(2) {
    left: 9.6%;
    top: 27.2%;
}

.shapes-section .shapes-box span:nth-child(3) {
    left: 8.8%;
    bottom: 16%;
}

.shapes-section .shapes-box span:nth-child(4) {
    left: 25%;
    bottom: 21%;
}

.shapes-section .shapes-box span:nth-child(5) {
    right: 35%;
    top: 6.6%;
}

.shapes-section .shapes-box span:nth-child(6) {
    right: 18%;
    bottom: 30%;
}

.shapes-section .shapes-box span:nth-child(7) {
    right: 10%;
    top: 50%;
}

.shapes-section .shapes-box span:nth-child(8) {
    right: 11.8%;
    top: 33%;
}

.shapes-section .shapes-box span:nth-child(9) {
    right: 15%;
    top: 10%;
}

.shapes-section .shapes-box span:nth-child(10) {
    right: 25%;
    bottom: 33%;
}
/*===== // =====*/


.post-content .wp-block-search .wp-block-search__button {
    padding: 0 20px 0px 10px;
    background: #0026ff;
    color: #fff;
}

.post-content .wp-block-calendar {
    margin-top: 20px;
}


.wp-block-image figcaption {
    text-align: center;
}

.wp-block-file .wp-block-file__button {
    background: var(--bs-primary);
}

ol.wp-block-latest-comments {
    padding: 0;
}

/*-------------------------services footer-------------------------*/
#services_footer_info{
    display: flex;
    justify-content: space-around;
}

.servives_blocks_info{
    display: flex;
    flex-direction: column;
    padding-right: 20%;
}
/*--------------------------------------------------*/
/*-------------------info no animation------------------*/
info-section-NA {
    position: relative;
    z-index: 0;
    padding-top: 12%;
}

.info-box-NA {
    border-radius: 10px;
    text-align: center;
    padding: 0px 0px 0px;
    background: #ebebeb;
   
    -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
}

.info-box-NA:hover {
    background-color: #244ba9;
    padding-bottom: 0;
    
}

.info-box-NA .info-box-icon-NA {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 45px;
    color: var(--bs-primary);
    background: transparent;
    margin: 0 auto;
    border-radius: var(--bs-theme-radius);
    
}

.info-box-NA:hover .info-box-icon-NA {
   
    color: var(--bs-white);
    background-color: #244ba9;
}

.info-box-NA h5 {
    position: relative;
    color: var(--bs-secondary);
    padding-bottom: 0.95rem;
    margin-bottom: 0.85rem;
    
}

.info-box-NA:hover h5 {
    color: var(--bs-white);
   
}

.info-box-NA h5:after,
.info-box-NA h5:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    
}

.info-box-NA h5:after {
    bottom: 0;    
    width: 90px;
    height: 2px;
    background-color: var(--bs-secondary);
}

.info-box-NA:hover h5:after, .info-box-NA:hover h5:before,
.info-box-NA:focus-within h5:after, .info-box-NA:focus-within h5:before {
    background: var(--bs-white);
}

.info-box-NA h5:before {
    bottom: -3px;
    z-index: 1;
    width: 28px;
    height: 8px;
    border-radius: 4px;
    background-color: #FF8500
    
}

.info-box-NA p {
    margin: 0;
    
}

.info-box-NA:hover p {
    
    color: var(--bs-white);
}

.info-box-NA .theme-link {
    margin-top: 0.625rem;
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    text-decoration: none;
}

.info-box-NA:hover .theme-link {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    
}

.info-box-NA .read-link:hover,
.info-box-NA .read-link:focus,
.info-box-NA .read-link {
    color: var(--bs-white);
}

.info-box-NA .theme-link .read-link:hover:after,
.info-box-NA .theme-link .read-link:focus:after,
.info-box-NA .theme-link .read-link:after {
    color: var(--bs-primary);
    background-color: var(--bs-white);
}