:root {
    --primary-color: #03c281;
    --secondary-color: #151A20;
    --white: #ffffff;
	--primary-color-opacity-44: rgb(178 245 199 / 44%);
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

a {
    color: var(--primary-color);
    text-decoration: underline;
}

a:hover,
a:focus-within,
a:focus {
    color: var(--primary-color);
    text-decoration: dotted underline;
}

a:focus,button:focus-visible,.btn:focus,button:focus-within,.btn-close:focus {
    outline: 1px dotted;
    text-decoration: none;
    outline-offset: -3px;
}
.widget.widget-contact:focus{
    outline: 1px dotted var(--primary-color);
    text-decoration: none;
    outline-offset: -3px;
}


/*01. header css */
.header-widget .widget-contact .contact-area {
    display: flex;
    align-items: center;
}
.main-header .topbar{
    padding: 15px 0;
    position: relative;
}
.main-header .topbar::before {
    position: absolute;
    content: '';
    inset: 0;
    background-color: var(--white);
    z-index: -2;
    opacity: 0.2;
}
.main-header.transparent {
    /* position: absolute; */
    width: 100%;
    z-index: 9999;
}
a.navbar-brand h1 {
    color: var(--white);
    margin: 0;
    font-weight: 800;
}
a.navbar-brand h1 span{
    color: var(--secondary-color);
}
.main-header .nav-area {
    border-top: 1px solid rgba(120 120 120 / 20%);
    border-bottom: 1px solid rgba(120 120 120 / 20%);
}
.header-widget .widget-contact:not(:last-child) {
    border-right: 1px solid rgba(120 120 120 / 100%);
}
.header-widget .widget-contact {
    margin-right: 10px;
    padding-right: 20px;
}

.header-widget .widget-contact .contact-area:not(:last-child) {
    margin-right: 30px;
}

.header-widget .widget-contact .contact-icon {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    text-align: center;
    line-height: 33px;
    padding: 0;
}

.header-widget .widget-contact .contact-info .text {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--white);
}
.nav-area .menu-right {
    height: 100%;
    position: relative;
}
.menu-right > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu-right > ul > li > a{
    margin-right: 10px;
    display: inline-block;
    text-align: center;
    margin-left: 10px;
    color: var(--white);
    position: relative;
}

.cart_dropdown .dropdown-menu {
    right: 0;
    left: unset;
}
.cart_dropdown .dropdown-menu .shopping-cart .main-btn:hover,
.cart_dropdown .dropdown-menu .shopping-cart .main-btn:focus-within{
    color: var(--primary-color);
    border-color: var(--secondary-color);
}
.cart_dropdown .dropdown-menu .shopping-cart .main-btn:hover::before,
.cart_dropdown .dropdown-menu .shopping-cart .main-btn:focus-within::before{
    background-color: var(--secondary-color);
}
.menu-right .cart_dropdown a .cart-badge{
    width: 15px;
    height: 15px;
    display: inline-block;
    line-height: 17px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    border-radius: 15px;
}
.header-widget .widget-contact .contact-info .text a {
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
}

.header-widget {
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: end;
}
@keyframes fadeInDeep{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.main-header .is-sticky-menu {
    position: fixed;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    -webkit-box-shadow: 0 10px 15px rgb(0 0 0 / 5%);
    -ms-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px rgb(0 0 0 / 5%);
    -webkit-animation: 1s ease-in-out 0s normal none 1 running fadeInDeep;
    animation: 1s ease-in-out 0s normal none 1 running fadeInDeep;
    transition: 0.65s;
    background-color: var(--secondary-color);
    padding: 10px;
}
.is-sticky-menu a.navbar-brand h1 span {
    color: var(--white);
}
.progress-top {
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all linear 0.1s;
    min-width: 1%;
    visibility: hidden;
    z-index: 1;
}
.is-sticky-menu .progress-top{
    visibility: visible;
}
.header-top-right .widget_social_widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: start;
}
.widget_social_widget ul li a{
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 4px;
    background: var(--white);
    line-height: 33px;
    text-align: center;
    margin-right: 10px;
    position: relative;
    transition: 0.65s;
    text-decoration: none;
}
.widget_social_widget ul li a::before{
    content: '';
    transition: 0.65s;
    position: absolute;
    inset: -4px 5px;
    border: 1px solid var(--white);
    border-radius: 4px;
    z-index: 0;
}
.header-top-right .widget_social_widget ul li a:hover,
.header-top-right .widget_social_widget ul li a:focus-within{
    background: var(--secondary-color);
    color: var(--white);
}
.header-top-right .widget_social_widget ul li a:hover::before,
.header-top-right .widget_social_widget ul li a:focus-within::before{
    border-color: var(--secondary-color);
}

.nav-area-inner .navbar-brand {
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-area-inner .navbar-brand img{
    max-width: 100%;
}
.main-header .navbar .navbar-nav .dropdown-menu{
    padding: 0;
    border-radius: 0;
    border: none;
}
.navbar-nav .nav-item .nav-link {
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    line-height: 4;
    margin-right: 15px;
}
.navbar-nav .nav-item .nav-link:active{
    color: var(--primary-color);
}
.nav-area .navbar {
    padding: 0;
}
.navbar.navbar-expand-lg .btn-bars{
    width: 40px;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
}
.main-header .navbar .dropdown-menu .dropdown-item{
    text-decoration: none;
    padding: 10px;
} 
.navbar-nav .dropdown-menu li .dropdown-item:hover,
.navbar-nav .dropdown-menu li .dropdown-item:focus-within,
.navbar-nav .dropdown-menu li .dropdown-item.active {
    color: var(--white);
    background-color: var(--primary-color);
}
.dropdown-menu > li{
    position: relative;
}
.navbar .navbar-nav li .dropdown-menu li .dropdown-menu,
.navbar .navbar-nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu{
    left: 100%;
    top: 0;
}
.navbar .navbar-nav li .dropdown-menu li .dropdown-menu li .dropdown-menu,
.navbar .navbar-nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu,
.navbar .navbar-nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu{
    top: 100%;
    left: 0%;
}
.navbar .navbar-nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu,
.navbar .navbar-nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu{
    left: -100%;
    top: 0%;
}
.navbar .navbar-nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu{
    top: 0%;
    left: -100%;
}
.menu-right .modal .modal-content {
    background: transparent;
}
.menu-right .modal .modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    opacity: 0.5;
}
.navbar-nav .dropdown-menu li.dropdown .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}
.header-search-flex .search-form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
}
.header-search-flex .search-form .header-search-field {
    width: 100%;
    outline: none;
    border: none;
    transition: 0.65s;
    transition-delay: 0.5s;
    background-color:  var(--white);
    color: var(--secondary-color);
    padding: 15px;
    border-radius: 50px;
    box-shadow: none;
}
.header-search-flex .search-form ::placeholder{
    color: var(--white);
}
.header-search-flex .search-form .search-submit {
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    transition: 0.65s;
    transition-delay: 0.5s;
    color: var(--white);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 30px;
}
.menu-right .modal-header {
    border: none;
}
.menu-right .modal .modal-header .btn-close {
    color: var(--white);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    opacity: 1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
    top: 20%;
    z-index: 999;
    background-color: var(--primary-color);
    border-radius: 50px;
    box-shadow: none;
}
.modal .header-search-flex .search-form .header-search-field:not(.modal.show .header-search-flex .search-form .header-search-field) {
    opacity: 0;
    transform: translateX(-50%);
    visibility: hidden;
}

.modal .header-search-flex .search-form .search-submit:not(.modal.show .header-search-flex .search-form .search-submit) {
    opacity: 0;
    transform: translateX(200%);
    visibility: hidden;
}
.header-search-flex {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* cart  */
.cart_dropdown .dropdown-menu{
    padding: 0;
    border-radius: 0;
    width: 320px;
    padding: 20px;
    background-color: var(--white);
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.cart_dropdown .dropdown-menu.show{
    animation: cartion .2s linear;
}
@keyframes cartion {
    from{
        transform: translate(0 , 66px) scale(.7);
        visibility: hidden;
        border-radius: 100%;
    }
    to{
        transform: translate(0 , 66px) scale(1);
        visibility: visible;
        border-radius: 0%;
    }
}
.cart_dropdown > a span.cart-badge{
    display: inline-block;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    line-height: 16px;
    font-size: 12px;
    border-radius: 15px;
    vertical-align: super;
    margin: 0 0 0 -3px;
    color: var(--white);
}
.shopping-cart .cart-header>i {
    font-size: 16px
}

.shopping-cart .cart-header {
    display: flex;
    border-bottom: 1px solid rgba(120 120 120 / 20%);
    padding-bottom: 15px;
    line-height: 1;
    justify-content: space-between
}

.shopping-cart .main-button {
    text-decoration: none;
    border: 1px solid rgba(255 255 255 / 20%);
    color: var(--text-white);
    font-weight: 500;
    display: block;
    font-size: 18px;
    background: var(--dark-3);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.shopping-cart .cart-header .cart-total {
    font-size: 16px
}

div.shopping-cart ul.cart-items {
    padding: 0;
    margin: 20px 0 20px;
    list-style: none;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
}

div.shopping-cart ul.cart-items li {
    display: inline-block;
    width: 100%;
    margin: 0 10px 10px 0;
    padding: 0;
    font-size: 15px;
    position: relative;
    border: 1px solid rgba(120 120 120 / 20%);
    border-radius: 5px;
}

div.shopping-cart ul.cart-items li a:focus-within,div.shopping-cart ul.cart-items li a:hover {
    color: var(--primary-color);
}

div.shopping-cart ul a.remove {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0px, -50%);
    width: 15px;
    height: 15px;
    line-height: 13px;
    text-align: center;
    border-radius: 4px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    transition: 0.65s;
    opacity: 0;
}
div.shopping-cart ul.cart-items li a.remove:hover,
div.shopping-cart ul.cart-items li a.remove:focus{
    text-decoration: none;
    color: var(--white);
    background-color: var(--primary-color);
}


.shopping-cart .cart-items .item-img {
    float: left;
    margin-right: 12px;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    text-align: center;
    line-height: 4.1;
}

.shopping-cart .cart-items .item-img img {
    width: 90%;
    display: inline-block;
    float: none;
    height: auto;
    margin: auto
}

.shopping-cart .cart-items .item-name {
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding-top: 15px;
    line-height: 1;
    text-align: left;
    color: var(--secondary-color);
}

.shopping-cart .cart-items .item-name:focus-within,.shopping-cart .cart-items .item-name:hover {
    color: var(--primary-color)
}

.shopping-cart .cart-badge {
    color: var(--white);
    font-size: 10px;
    margin: 0 0 0 -10px;
    width: 16px;
    height: 16px;
    line-height: 1.6;
    text-align: center;
    vertical-align: super;
    border-radius: 100px;
    display: inline-block;
    background-color: var(--primary-color)
}

.shopping-cart .cart-items .quantity {
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 3;
    float: left;
    transition: 0.65s;
}

.shopping-cart .cart-items .quantity span bdi {
    color: var(--secondary-color);
    font-weight: 400
}

.shopping-cart .cart-items .amount {
    font-size: 12px;
    font-weight: 600;
    margin-right: 0;
    color: #222
}
div.shopping-cart ul.cart-items li:hover a:not(a.remove),
div.shopping-cart ul.cart-items li:hover span.quantity{
    transform: translateX(25px);
}
div.shopping-cart ul.cart-items li:hover a.remove,
div.shopping-cart ul.cart-items li:focus a.remove{
    opacity: 1;
    z-index: 0;
}

/* mobile  */
button.dropdown-toggle {
    background: none;
    border: none;
}
/* slider css */
.slider-section{
    background-color: var(--secondary-color);
    position: relative;
}
.slider-section.slider-one::before {
    content: '';
    position: absolute;
    /* background-repeat: no-repeat; */
    left: 0;
    right: 0;
    bottom: 0;
    height: 52px;
    animation: slide 100s linear infinite;
    -webkit-animation: slide 100s linear infinite;
}
.slider-section .slider-item{
    position: relative;
}
.slider-section .slider-item::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--secondary-color);
    opacity: 0.8;
}

.slider-image img {
    width: 100%;
}
.slider-item img {
    width: 100%;
    display: block;
}
.slider-section .carousel-caption {
    position: unset;
    text-align: left;
    padding: 0;
}
.slider-section .slider-content {
    display: flex;
    align-items: center;
    height: 100%;
    position: absolute;
    width: 100%;
    inset: 0;
}
.slider-content .slide_subtitle{
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
    opacity: 0;
    display: inline-block;
    font-size: 20px;
}
.slider-content .main-btn{
    opacity: 0;
}


.slider-content .slide_subtitle:before{
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
}
.slide_title {
    font-size: 55px;
    text-transform: uppercase;
    opacity: 0;
    font-weight: 700;
}
.slider-content p{
    opacity: 0;
    color: var(--white);
    margin-bottom: 25px;
}

.slider-content .order-call {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    opacity: 0;
}
.slider-item > .row{
    align-items: center;
}
.slider-content .order-call .icon{
    font-size: 40px;
    margin-right: 15px;
    color: var(--primary-color);
}
.slider-content .order-call .call-info{
    display: flex;
    align-items: start;
    flex-direction: column;
}
.slider-item .slider-image img{
    transform: translateY(100%);
    opacity: 0;
    transition: 0.5s;
}
.carousel-item.active .slider-item .slider-image img{
    opacity: 1;
    transform: translateX(0px);
}
.carousel-item.active .slider-content .slide_subtitle{animation: fadefIn 0.3s linear;opacity: 1;}
.carousel-item.active .slider-content .slide_title{animation: fadefIn 0.4s linear;opacity: 1;}
.carousel-item.active .slider-content p{animation: fadefIn 0.5s linear;opacity: 1;}
.carousel-item.active .slider-content .order-call{animation: fadefIn 0.6s linear;opacity: 1;}
.carousel-item.active .slider-content .main-btn{animation: fadefIn 0.7s linear;opacity: 1;}

@keyframes fadefIn {
    from {
        opacity: 0;
        transform: translateX(200px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}


.slider-content .order-call .call-info a{
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    margin: 0;
}
.slider-section button.carousel-control-prev,
.slider-section button.carousel-control-next {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: var(--primary-color);
    top: 50%;
    transform: translate(0px, -50%);
    font-size: 16px;
    color: var(--white);
    opacity: 1;
    transition: 0.6s;
}
.slider-section button.carousel-control-prev::before,
.slider-section button.carousel-control-next::before {
    transition: 0.6s;
    position: absolute;
    content: '';
    inset: -4px 4px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
}
.slider-section button.carousel-control-prev:hover,.slider-section button.carousel-control-next:hover,
.slider-section button.carousel-control-prev:focus-within,.slider-section button.carousel-control-next:focus-within{
    background-color: var(--white);
    color: var(--primary-color);
}
.slider-section button.carousel-control-prev:hover::before,.slider-section button.carousel-control-next:hover::before,
.slider-section button.carousel-control-prev:focus-within::before,.slider-section button.carousel-control-next:focus-within::before {
    border-color: var(--white);
}
.slider-section button.carousel-control-prev {
    left: 20px;
}

.slider-section button.carousel-control-next {
    right: 20px;
}

.slider-section .carousel-indicators button{
    width: 5px;
    height: 5px;
    border-radius: 15px;
    opacity: 1;
    border: 6px solid var(--white);
    outline: none;
    background: var(--primary-color);
    margin: 5px 0 ;
}
.slider-section .carousel-item {
    transition-duration: 1.5s;
}
.slider-section .carousel-indicators button.active{
    border: 6px solid var(--primary-color);
    background: var(--white);   
}
.slider-section .carousel-indicators{
    margin: 0;
}
@keyframes slide{
    0% {
        background-position: 0 bottom;
    }
    100% {
        background-position: 1920px bottom;
    }
}
.elem1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    top: 23%;
    transition: 0.5s;
}
.elem2 {
    position: absolute;
    transition: 0.5s;
    top: 80%;
    left: 54%;
    transform: translateX(-54%) scale(0);
}
.carousel-item.active .elem1,.carousel-item.active .elem2{
    transform: translateX(-50%) scale(1);
}
.elem1 img{
    animation: move1 5s linear infinite;
    width: 100px;
}

.elem2 img{
    animation: move2 2s linear infinite;
    width: 100px;
}

@keyframes move1 {
    0% {
        transform: rotate(0deg) translateY(0px) translateX(0px);
    }
    50% {
        transform: rotate(45deg) translateY(20px) translateX(50px);
    }
    100% {
        transform: rotate(0deg) translateY(0px) translateX(0px);
    }
}

@keyframes move2 {
    0% {
        transform: rotate(-30deg) translate(0,0);
    }
    50% {
        transform: rotate(-30deg) translate(30px,-30px);
    }
    100% {
        transform: rotate(-30deg) translate(0,0);
    }
}

/* btn */
a.main-btn,.main-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    padding: 15px 15px;
    border-radius: 5px;
    position: relative;
    line-height: 1;
    transition: 0.65s;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    z-index: 1;
}
.main-btn::before{
    content: '';
    transition: 0.65s;
    background: var(--primary-color);
    position: absolute;
    inset: 4px -5px;
    border-radius: 5px;
    z-index: -1;
}
a.main-btn:hover,.main-btn:hover,
a.main-btn:focus-within,.main-btn:focus-within{
    color: var(--secondary-color);
    border-color: var(--white);
}
.main-btn:hover::before,
.main-btn:focus-within::before{
    background-color: var(--white);
}

.slider-content .light_bg {
    color: var(--secondary-color);
    border-color: var(--white);
    margin-left: 15px;
}
.slider-content .light_bg::before {
    background: var(--white);
}
.slider-content .light_bg:hover,.slider-content .light_bg:focus-within {
    color: var(--white);
    border-color: var(--primary-color);
}
.slider-content .light_bg:hover::before,.slider-content .light_bg:focus-within::before {
    background: var(--primary-color);
}
/* slider section end */


/* section title */
.section-title{
    text-align:center;
	margin-bottom:40px;
}
.section-title .maintitle {
	display: inline-block;
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 30px;
}
.section-title .maintitle span {
    display: inline-block;
    position: relative;
}
.section-title .maintitle span:not([class*="customize-"])::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    transform: translateX(-50%);
    left: 50%;
    bottom: -15px;
    border-radius: 5px;

}

.section-title p{
	margin: 0;	
}


/*-----------------------------------------------------
 =================service section======================
 ------------------------------------------------------*/
 .service-section{
     padding: 100px 0 75px;
    position: relative;
}
.service{
	align-items:center;
	text-align:center;
	border: none;
	box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
	padding:40px 30px;
	margin-bottom:1px;
	border-radius:0;
	position: relative;
	z-index: 1;
    margin-bottom: 25px;
}
.service > img{
    width: 100%;
}
.service::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 100%;
	transition: 0.35s;
	background: var(--primary-color);
	z-index: -1;
}
.service:hover::before,.service:focus-within::before{
	right: 0;
}
.service .service-icon{
	width:80px;
	height:80px;
	font-size:36px; 
	color:var(--white);
	display:inline-block;
	margin-bottom:30px;
	display:inline-block;
	border-radius:80%;
	background-color:var(--primary-color);
	line-height:80px;
	text-align:center;
	transition:1s;
	position: relative;
    z-index: 1;
}
.service .service-icon::after{
    content: '';
	position: absolute;
	inset: -5px;
	border: 2px solid var(--primary-color);
	border-radius: 100px;
    z-index: -1;
}
.service:hover .service-icon,.service:focus-within .service-icon{
	background-color:var(--white);
	color: var(--primary-color);
}
.service:hover .service-icon::after,.service:focus-within .service-icon::after{
	border-color:var(--white) ;
}
.service-content{
	padding: 0;
}
.service:hover .service-content p,.service:focus-within .service-content p,
.service:hover .service-content h2,.service:focus-within .service-content h2{
	color:var(--white);
}
.service-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}
.service-content p{
    margin-bottom: 25px;
}
.service:hover .main-btn,.service:focus-within .main-btn{
    color: var(--white);
    border-color: var(--secondary-color);
}
.service:hover .main-btn:before,.service:focus-within .main-btn:before{
    background: var(--secondary-color);
}

/* service section end*/



/*-----------------------------------------------------
 =================Portfolio section======================
 ------------------------------------------------------*/
 .portfolio-section{
     padding: 100px 0 75px;
    position: relative;
    background-color: color-mix(in srgb, var(--primary-color) 3%, transparent);
 }
 .portfolio{
    margin-bottom: 25px;
 }
.card-body {
	padding: 0px;
}

.image img {
	width: 100%;
}
.portfolio-section .filter-button-group {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: center;
}
.portfolio-section .filter-button-group li a {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    padding: 15px 15px;
    border-radius: 5px;
    position: relative;
    line-height: 1;
    transition: 0.65s;
    font-weight: 500;
    border: 1px solid var(--secondary-color);;
    z-index: 1;
}
.portfolio-section .filter-button-group li a::before{
    content: '';
    transition: 0.65s;
    background: var(--secondary-color);
    position: absolute;
    inset: 4px -5px;
    border-radius: 5px;
    z-index: -1;
}
.portfolio-section .filter-button-group li a.active{
    color: var(--white);
    border-color: var(--primary-color);
}
.portfolio-section .filter-button-group li a.active::before{
    background-color: var(--primary-color);
}

.portfolio-section .filter-botton a:hover,
.portfolio-section .filter-botton a.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
}
.portfolio-section .filter-button-group li a:not(:last-child) {
    margin-right: 15px;
    margin-bottom: 10px;
}

.portfolio-section .filter-botton ul {
	list-style: none;
	padding: 0px;
	display: inline-flex;
	border-radius: none;
	text-align: center;
}

.filter-botton {
	text-align: center;
}

.image {
	position: relative;
	z-index: 1;
}
.image::after {
	position: absolute;
	content: '';
	inset: 15px;
	display: block;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border: 2px solid var(--white);
	z-index: 0;
}
figure.image::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: var(--primary-color);
    opacity: 0.7;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.portfolio:hover .image::before, .portfolio:focus .image::before {
    transform-origin: bottom;
    transform: scaleX(1);
}
.image:hover::after {
	opacity: 1;
}

.portfolio-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
    z-index: 1;
}
.portfolio-content a {
    color: var(--white);
    display: inline-block;
}

.image:hover .portfolio-content {
	opacity: 1;
}

.portfolio-item .portfolio-content{
	color: var(--white);
	text-align: center;
	font-size: 18px;
}
/* end */
     



/*-----------------------------------------------------
================= CTA section======================
------------------------------------------------------*/
.cta-section{
    background-size: cover;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}
.cta-section::before{
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    opacity: 0.8;
    z-index: -1;
}
.cta-content {
    text-align: center;
}
.cta-content span {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
}
.cta-content h2 {
    color: var(--white);
    font-weight: 600;
    font-size: 45px;
    margin-bottom: 15px;

}
.cta-content p{
    color: var(--white);
    margin-bottom: 30px;
}
.cta-content .video_playbtn{
    display: inline-block;
}
.video_playbtn a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    background: var(--white);
    border-radius: 40px;
    margin: 0 10px;
    position: relative;
}
.video_playbtn a:hover,.video_playbtn a:focus-within{
    background: var(--primary-color);
    color: var(--white);
}
.video_playbtn a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100%;
    z-index: 0;
    animation: wave 1s linear infinite;
}
.cta-section .main-btn.light_bg {
    color: var(--secondary-color);
    border-color: var(--white);
}
.cta-section .main-btn.light_bg::before {
    background: var(--white);
}
.cta-section .main-btn.light_bg:hover,.cta-section .main-btn.light_bg:focus-within {
    color: var(--white);
    border-color: var(--primary-color);
}
.cta-section .main-btn.light_bg:hover::before,.cta-section .main-btn.light_bg:focus-within::before {
    background: var(--primary-color);
}

@keyframes wave {
    from {
        box-shadow: 0 0 0 0 var(--primary-color);
    }
    to {
        box-shadow: 0 0 0px 10px var(--primary-color);
        opacity: 0;
    }
}



/*-----------------------------------------------------
=================feature section======================
------------------------------------------------------*/
.feature-section{
    padding: 100px 0 75px;
    position: relative;
    background-color: var(--white);
}
.feature-item{
	box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
	position: relative;
    margin-bottom: 25px;
    min-height: 380px;
    display: flex;
    align-items: center;
}


.feature-item .content-area > span{
	font-size: 16px;
    color: var(--secondary-color);
    padding-left: 15px;
    display: inline-block;
    font-weight: 600;
}
.feature-item:hover .content-area > span,
.feature-item:focus-within .content-area > span{
    color: var(--white);
}
.feature-item .content-area {
    position: absolute;
	padding: 20px;
}

.feature-item .feature-body h2{
	color: var(--secondary-color);
	font-size: 28px;
	font-weight: 500;
}

.feature-item p{
	color: gray;
    margin-bottom: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #efefef;
    margin-top: 15px;
}

.feature-item:hover p{
	border-bottom: 1px solid gray;
	color: gray;
}

.feature-item .icon{
	width: 40px;
	height: 40px;
	font-size: 20px; 
	color: var(--white);
	display: inline-block;
	border-radius: 50%;
	background-color: var(--primary-color);
	line-height: 40px;
	text-align: center;
	margin-top: 12px;
}

.feature-body{
	padding: 0;
	margin-top: 15px;
}


.feature-item .main-btn > span {
    visibility: hidden;
    width: 0;
    transition: width 0.2s, opacity 0.8s;
    opacity: 0;
    display: inline-block;
    line-height: 0;
}

.feature-item .main-btn:hover > span {
    visibility: visible;
    width: 90px;
    opacity: 1;
}
.feature-item:hover .feature-body p,.feature-item:focus-within .feature-body p{
	color: var(--white);
}

.feature-item:hover .feature-body h2,.feature-item:focus-within .feature-body h2{
	color: var(--white);
}
.feature-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.feature-image{
	position:relative;
    height: 100%;
    width: 100%;
}

.feature-image::before{
	position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	transition: 1s;
	background-color: rgba(255 255 255 / 100%);
	content: '';
}
.top-side:hover .feature-image::before{
	opacity: 1;
}
.feature-item:hover .feature-image::before{
	background-color: rgba(0 0 0  / 50%);
}
.feature-item:has(.content-area:first-child):hover{
    background-color: var(--secondary-color);
}



/*-----------------------------------------------------
=================Testimonial section======================
------------------------------------------------------*/

.testimonial-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-position: center center;
}
.testimonial-section::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--secondary-color);
    opacity: 0.7;
    z-index: -1;
}
.testimonial-section .carousel-indicators [data-bs-target] {
    background: none;
    border: none;
    outline: none;
    opacity: 1;
    width: 150px;
    height: 150px;
    text-indent: 0;
    position: relative;
}
.testimonial-section .carousel-indicators [data-bs-target]::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 10s linear infinite;
    opacity: 0;
}
.testimonial-effect-1 {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: spin 10s linear infinite;
}

.testimonial-effect-1:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 25px;
    right: 10px;
    box-shadow: 0 0 20px var(--primary-color);
    opacity: 0;
}
@keyframes spin{
    from{
        transform: rotate(0);
    }
    to{
        transform: rotate(360deg);
    }
}
.carousel-indicators [data-bs-target].active .testimonial-effect-1:before,
.carousel-indicators [data-bs-target].active::before {
    opacity: 1;
}

.testimonial-section .carousel-indicators [data-bs-target] img{
    width: 100%;
    border-radius: 100%;
}
.testimonial-section .carousel-indicators{
    margin: 0;
    display: block;
}
.testimonial-content p {
    color: var(--white);
    background: rgba(255 255 255 / 10%);
    padding: 40px 30px;
    position: relative;
}
.testimonial-content p::before{
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--primary-color);
    font-size: 35px;
    margin-right: 15px;;
}
.testimonial-content .client-info h2 {
    color: var(--white);
    font-size: 22px;
	font-weight: 500;
}
.testimonial-content .client-info span {
    color: var(--primary-color);
}
.testimonial-section .section-title .maintitle,.testimonial-section .section-title p{
    color: var(--white);
}




/*-----------------------------------------------------
=================Team section======================
------------------------------------------------------*/
.team-section {
    padding: 100px 0 75px;
    position: relative;
    background: var(--white);
}

.team {
	position: relative;
	text-align: center;
	border: none;
	padding-top: 0px;
	overflow: hidden;
	box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
	border-radius: 0;
	margin-bottom: 25px;
    min-height: 450px;
}
.team-content .icon {
	color: var(--white);
	display: inline-block;
	background-color: var(--primary-color);
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
}

.team-content .icon:hover {
	color: var(--white);
	background-color: black;
}

.team-content {
	border: 0px;
	position: absolute;
	padding-top: 30px;
	bottom: 0;
	width: 100%;
	background: #fff;
	transform: translateY(50px);
	transition: 0.65s;

}

.team:hover .team-content {
	transform: translateY(0px);
}

.team .team-content ul {
	list-style: none;
	padding: 15px 0;
	margin: 0;
	background-color: var(--primary-color);
    justify-content: center;
}

.team .team-content ul li {
	display: inline-block;
}
.team .team-content ul a{
    margin: 0 2px;
}

.team .team-content .widget_social_widget ul a:hover,.team .team-content .widget_social_widget ul a:focus-within {
	color: var(--white);
	background-color: var(--primary-color);
}
.team .team-content .widget_social_widget ul a:hover::before,.team .team-content .widget_social_widget ul a:focus-within::before {
	border-color: var(--primary-color);
}

.tooltip-inner {
	background-color: var(--primary-color) !important;
}

.tooltip-arrow::before {
    border-bottom-color: var(--primary-color) !important;
}


.team .team-content h2 {
	color: black;
	font-size: 22px;
	font-weight: 500;
}
.team .team-content span {
	color: var(--primary-color);
	font-size: 18px;
	padding: 1px;
    display: inline-block;
    margin-bottom: 10px;
}
.team-body {
	padding: 0;
}
.team-image>img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 0px;
}
.team-image {
    position: relative;
}
.team-image::before {
    position: absolute;
    content: '';
    width:100%;
    height: 100%;
    top: 0;
    left : 0;
    background-color: var(--secondary-color);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
    opacity: 0.6;
}
.team:hover .team-image::before, .team:focus .team-image::before {
    transform-origin: bottom;
    transform: scaleX(1);
}


/*-----------------------------------------------------
=================Pricing section======================
------------------------------------------------------*/
.pricing-section{
    padding: 100px 0 75px;
    background-color: color-mix(in srgb, var(--primary-color) 3%, transparent);
}
.price_outer {
    background: var(--secondary-color);
    position: relative;
    border-radius: 0;
    transition: 0.3s ease-in-out;
    padding: 25px 35px 25px 35px;
    z-index: 1;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    margin-bottom: 25px;
} 
.price_outer::before{
    position: absolute;
    content: '';
    background-color: var(--white);
    z-index: -1;
    width: calc(100% - 25px);
    height: calc(100% - 70px);
    top: 0;
    left: 0px;
    border-radius: 0 0 15px;
}
.price_item.recommend .price_outer::before{
    background-color: var(--primary-color);
}
.price_item.recommend .price_outer .icon,
.price_item.recommend .price_outer .heading h2,
.price_item.recommend .price_outer span.price,
.price_item.recommend .price_inner ul li i,
.price_item.recommend .price_inner ul li{
    color: var(--white);
}
.price_item.recommend .price_outer a{
    color: var(--primary-color);
}
.price_outer .icon {
    color: var(--primary-color);
    font-size: 40px;
}
.price_outer span.price-dolar {
    font-size: 20px;
    vertical-align: text-top;
}
.price_outer .heading h2 {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 600;
}
.price_outer span.price {
    font-size: 45px;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}
.price_inner ul{
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 36px;
}
.price_inner ul li i{
    margin-right: 5px;
    color: var(--primary-color);
}
.price_inner ul li{
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 10px;
}
.price_inner ul li:last-child{
    margin: 0;
}
.price_outer a {
    text-decoration: none;
    display: inline-block;
    color: var(--white);
    transition: 0.65s;
}

.price_outer a:hover,.price_outer a:focus-within {
    color: var(--primary-color);
}
span.price-duration {
    font-size: 16px;
}
.pricing-section .filter-button-group {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
    text-align: center;
}
.pricing-section .filter-button-group li {
    display: inline-block;
    background: var(--secondary-color);
    position: relative;
    border-radius: 5px;
    z-index: 1;
}
.pricing-section .filter-button-group li::before {
    content: '';
    transition: 0.65s;
    position: absolute;
    inset: -4px 8px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    z-index: -1;
}
.pricing-section .filter-button-group li a{
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
}
.pricing-section .filter-button-group li a.active{
    background-color: var(--primary-color);
    border-radius: 5px;
    color: var(--white);
}

.tooltip.bs-tooltip-auto .tooltip-arrow::before {
    border-right-color: var(--primary-color) !important;
    border-bottom-color: transparent !important;
}


/*-----------------------------------------------------
=================Funfact section======================
------------------------------------------------------*/
.funfact-section{
    padding: 100px 0 75px;
    position: relative;
    z-index: 1;
}

.funfact-section::before{
    position: absolute;
    z-index: -1;
    content: '';
    inset: 0;
    background-color: var(--secondary-color);
    opacity: 0.8;
}
.funfact{
	text-align: center;
	border: none;
	box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
	padding: 40px 30px;
	margin-bottom: 25px;
	border-radius: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
    background-color: var(--white);
}
.funfact::after{
	content: '';
    position: absolute;
    left: 50%;
    top: -155px;
    height: 230px;
    background: var(--primary-color);
    border-radius: 100%;
    width: 230px;
    transform: translateX(-50%) translateY(-100%);
    z-index: -1;
	visibility: hidden;
	transition: 0.3s;
    opacity: 0.8;
}
.funfact::before{
	content: '';
    position: absolute;
    left: 50%;
    top: -145px;
    height: 250px;
    background: var(--primary-color);
    border-radius: 100%;
    width: 250px;
    transform: translateX(-50%) translateY(-100%);
    z-index: -1;
	visibility: hidden;
	transition: 0.5s;
    opacity: 0.4;
}
.funfact:hover::after{
	visibility: visible;
	transform: translateX(-50%) translateY(0%);
}

.funfact:hover::before{
	visibility: visible;
	transform: translateX(-50%) translateY(0%);
}
.funfact .funfact-icon{
	width: 80px;
	height: 80px;
	font-size: 36px; 
	color: var(--white);
	display: inline-block;
	margin-bottom: 22px;
	display: inline-block;
	border-radius: 80%;
	background-color: var(--primary-color);
	line-height: 80px;
	text-align: center;
    transition: 1s;
}
.funfact:hover .funfact-icon{
    background-color: var(--secondary-color);
    color: var(--white);
    transform: rotateY(180deg);
}
.funfact-content p {
    margin: 0;
}
.funfact-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}


/*-----------------------------------------------------
=================Sponsor section======================
------------------------------------------------------*/
.sponsor-section{
    padding: 100px 0 75px;
    background: color-mix(in srgb, var(--primary-color) 3%, transparent);
}
.sponsor{
	border-radius: 0px;
    text-align: center;
    margin-bottom: 25px;
    background-color: var(--secondary-color);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sponsor-image img {
    max-width: 100%;
    width: 100%;
}
.sponsor:hover{
	background-color: var(--primary-color);
	color: var(--white);
	transition: 1.0s;
	box-shadow: 6px -2px 6px 0.5px #00000057;
	
}



/*-----------------------------------------------------
=================Footer section======================
------------------------------------------------------*/
.footer-section{
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
}
.footer-section::before{
    content: '';
    position: absolute;
    inset: 0;
    /* background-color: var(--secondary-color); */
    opacity: 0.7;
    z-index: -1;
}
.footer-section .footer_top{
    padding: 50px 0 25px;
    border-bottom: 1px solid rgba(120 120 120 / 20%);
}
.footer-section .footer_main{
    border-bottom: 1px solid rgba(120 120 120 / 20%);
}

.footer_copyright {
    padding: 20px 0;
}
.footer_top-heading {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    border-radius: 5px;
    margin-bottom: 25px;
}
.footer_top .widget-contact .contact-area{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.footer_top .widget-contact .contact-icon{
    min-width: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 0;
    background-color: var(--primary-color);
    color: var(--white);
    margin-right: 15px;
    font-size: 22px;
    border-radius: 5px;
}
.footer_top .widget-contact .contact-info p{
    display: flex;
    flex-direction: column;
    margin: 0;
}
.footer_top .widget-contact .contact-info p a {
    font-size: 18px;
    color: var(--primary-color);
}
/* .footer-section .footer_main {
    padding: 50px 0 35px;
} */
.footer-section .footer_main .footer_item{
    margin-bottom: 25px;
}
.footer_main .widget_social_widget ul{
    display: flex
}
.footer_main .widget_social_widget ul a:hover,.footer_main .widget_social_widget ul a:focus-within{
   background-color: var(--primary-color);
   color: var(--white)
}
.footer_main .widget_social_widget ul a:hover::before,.footer_main .widget_social_widget ul a:focus-within::before{
   border-color: var(--primary-color);
}

/* Scroll Top */
.scrollingUp.scroll-btn {
    display: inline-block;
    text-decoration: none;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 100%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    padding: 0;
    z-index: 999;
    border: none;
    position: fixed;
    bottom: 0%;
    right: 20px;
    visibility: hidden;
    transition: all 0.65s ease 0s;
}
.scrollingUp.scroll-btn.is-active {
    bottom: 8%;
    visibility: visible;
}

@keyframes Shake { 
    0% { 
        transform: rotate(5deg); 
    } 
  
    25% { 
        transform: rotate(-6deg); 
    } 
  
    50% { 
        transform: rotate(5deg); 
    } 
  
    75% { 
        transform: rotate(-6deg); 
    } 
  
    100% { 
        transform: rotate(5deg); 
    } 
}
.footer_top .widget-contact .contact-area:hover .contact-icon i,.footer_top .widget-contact .contact-area:focus-within .contact-icon i{
    animation: Shake 0.5s linear infinite
}
.footer_top .widget-contact .contact-area .contact-info a:hover,.footer_top .widget-contact .contact-area .contact-info a:focus-within{
    color: var(--primary-color);
    transition: 0.5s;
}
@keyframes Shake2 { 
    0% { 
        transform: translateX(0); 
    } 
  
    25% { 
        transform: translateX(20px); 
    } 
  
    50% { 
        transform: translateX(0px); 
    } 
  
    75% { 
        transform: translateX(20px); 
    } 
  
    100% { 
        transform: translateX(0px);  
    } 
}
.footer-section:hover .footer_top-heading i{
    animation: Shake2 1.5s linear infinite
} 



/*-----------------------------------------------------
=================Blog section======================
------------------------------------------------------*/
.blog-section{
    padding: 100px 0 75px;
    /* background-color: var(--white); */
    position: relative;
}
.post-item .post-image img{
    width: 100%;
    border-radius: 5px 5px 0 0;
	height: 100%
}
.post-item .post-image::before{
    position: absolute;
    content: '';
    inset: 0;
    background-color: var(--secondary-color);
    opacity: 0.4;
    border-radius: 5px 5px 0 0;
    transition: 0.65s;
}
.post-item:hover .post-image::before,.post-item:focus-within .post-image::before{
    opacity: 0.8;
}
.post-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    /* min-height: 360px; */
    border-radius: 5px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    z-index: 0;
}

.post-item:not(:has(figure)) .post-date {
	position: relative;
	top: 0;
	left: 0;
	margin: 15px 0 15px 0;
}

.post-image {
    margin: 0;
    position: relative;
    z-index: -1;
}
.post-item .post-date {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-color: var(--white);
    top: 17px;
    left: 15px;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    transition: 1s;
}
.post-item .post-date::before{
    content: '';
    transition: 0.65s;
    position: absolute;
    inset: -4px 8px;
    border: 1px solid var(--white);
    border-radius: 5px;
    z-index: 0;
}
.post-item .post-date a{
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.post-content {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 0 30px 5px 5px;
    margin-top: -30px;
}
.post-content .post-meta ul.post-categories {
    padding: 0;
    list-style: none;
    margin: 0;
    display: inline-flex;
    margin-left: 8px;
    font-size: 14px;
}
.post-content .post-meta ul.post-categories li i,.post-content a.author i{
    color: var(--primary-color);
    margin-right: 5px;
}
.post-content .post-meta ul.post-categories li a{
    text-decoration: none;
    color: var(--secondary-color);
}
.blog-section .post-item .post-content .post-meta .post-tag {
    padding-left: 0;
    margin: 0;
    list-style: none;
	margin-left: 4px;
}
.blog-section .post-item .post-content .post-meta .post-tag a {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 400;
    margin-right: 6px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
}
.blog-section .post-item .post-content .post-meta .post-tag i {
    color: var(--primary-color);
    font-size: 16px;
}
.post-content h2.post-title a,.post-content h2.post-title {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px 
}
.blog-section .post-item .post-content p {
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 30px;
	font-size: 14px;
}
.post-content a.author {
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    border-right: 1px solid rgba(120 120 120 / 20%);
    padding-right: 8px;
    font-size: 14px;
}
.post-content .post-meta {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(120 120 120 / 20%);
    padding-bottom: 15px;
}
.post-content a.more-link {
    text-decoration: none;
    border: 1px solid var(--secondary-color);
    color: var(--white);
    padding: 15px 15px;
    border-radius: 5px;
    position: relative;
    line-height: 1;
    transition: 0.65s;
    font-weight: 500;
    z-index: 1;
}
.post-content a.more-link::before{
    content: '';
    transition: 0.65s;
    background: var(--secondary-color);
    position: absolute;
    inset: 4px -5px;
    border-radius: 5px;
    z-index: -1;
}

.post-content a.more-link:hover,.post-content a.more-link:focus-within{
    color: var(--white);
    border-color: var(--primary-color);
}
.post-content a.more-link:hover::before,.post-content a.more-link:focus-within::before{
    background-color: var(--primary-color);
}
.post-item .post-date,.post-item:focus-within .post-date{
    background: var(--primary-color);
}
.post-item .post-date::before,.post-item:focus-within .post-date::before{
    border-color: var(--primary-color);
}



/*---------------------------------------------------------------
==========================18. Breadcrumbed Section=====================
---------------------------------------------------------------*/
.breadcrumb-area {
    height: 500px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.breadcrumb-area::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    /* background-color: var(--secondary-color); */
    /* opacity: 0.6; */
}
.breadcrumb-area::after{
    content: '';
    position: absolute;
    width: 50%;
    height: calc(100% - 155px);
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--primary-color);
    opacity: 0.4;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

.breadcrumb-item+.breadcrumb-item::before{
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white);
    line-height: 1.8;
    font-size: 14px;
}
h2.breadcrumb-heading {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 800;
	font-size: 2.5rem;
}
.breadcrumb-item a ,.breadcrumb-item{
    color: var(--white);
    text-decoration: none;
}
.breadcrumb-item.active{
    color: var(--primary-color);
    font-weight: 600;
}



/*---------------------------------------------------------------
==========================18. About Section=====================
---------------------------------------------------------------*/
.about-section{
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

p.paragrapa{
	font-size: 16px;
	text-align: left;
	color: #aeb3be;
	width: 90%;
	padding-top: 8px;
}

.bottom-area a {
    color: white;
    text-decoration: none;
    background: red;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    align-items: center;
}

.bottom-area a:hover{
	color: white;
	background: black;
}

.client-image img {
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    padding: 5px;
    border-radius: 10px;
    width: 100%;
}

.about_image{
	position: relative;
    z-index: 0;
}

.client-image.two{
	position: absolute;
    right: 40px;
    bottom: -34px;
    overflow: hidden;
    box-shadow: 5px 6px 9px -4px;
	border-radius: 10px;
}

.client-image:not(.two)::before{
	content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    top: 70px;
    z-index: -1;
    right: 20px;
    left: 21px;
    bottom: -17px;
}

.client-image.two img{
	border: 4px solid white;
	padding: 0;
	border-radius: 10px;
    width: 250px;
    height: 250px;
}

.award_info{
    position: absolute;
    width: 150px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    top: 40px;
    right: 40px;
    transition: 0.65s;
}

.award_info h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.award_info > span {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
}


.about-section .section-title{
    text-align: left;
    margin-bottom: 25px;
}
.about-section .section-title .maintitle::before{
    display: none;
}
.about-section .section-title .maintitle span::before{
    transform: translateX(0);
    left: 0;
}
ul.feature-about {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.feature-about li i{
    width: 40px;
    height: 40px;
    border-radius: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    margin-right: 10px;
}
ul.feature-about li{
    width: 48%;
    padding: 20px;
    border: 1px solid rgba(120 120 120 / 20%);
    border-radius: 5px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: 0.35s;
}
ul.feature-about li:hover,ul.feature-about li:focus-within{
    border-color: var(--primary-color);
}
.about-content .main-btn:hover,.about-content .main-btn:focus-within{
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.about-content .main-btn:hover::before,.about-content .main-btn:focus-within::before{
    border-color: var(--secondary-color);
}

/*---------------------------------------------------------------
==========================WorkPRocess section=====================
---------------------------------------------------------------*/
.workprocess-section{
    padding: 100px 0 75px;
    position: relative;
}
.workprocess-section::before {
    position: absolute;
    content: '';
    inset: 0;
    background-color: var(--secondary-color);
    opacity: 0.5;
}
.workprocess-section .section-title .maintitle,.workprocess-section .section-title p{
    color: var(--white);
}
.workprocess_item {
    padding: 20px 20px 25px;
    border-radius: 5px;
    border: 1px solid var(--white);
    position: relative;
    margin-bottom: 25px;
    transition: 0.65s;
}
.workprocess_item:hover,.workprocess_item:focus-within{
    border-color: var(--primary-color);
}
.workprocess_item span{
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}
.workprocess_item h2{
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
}
.workprocess_item p{
    color: var(--white);
    font-weight: 400;
    margin-bottom: 25px;
}


/*---------------------------------------------------------------
==========================Timeline section=====================
---------------------------------------------------------------*/
.timeline-section{
    padding: 100px 0 75px;
    background-color: var(--white);
    position: relative;
}
.timeline-item {
    padding: 0 25px;
    position: relative;
    margin-bottom: 25px;
}
.time_line{
    position: relative;
}
.time_line::before {
    content: "";
    background: var(--secondary-color);
    width: 5px;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
.timeline-content {
    box-shadow: 0 0 25px -15px rgba(0, 0, 0, 0.3); 
    padding: 30px 25px 25px;
    position: relative;
    background: color-mix(in srgb, var(--primary-color) 15%, transparent);
}
.timeline-content .timeline-date{
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    font-weight: 700;
}
.timeline-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
}
.timeline-content p{
    margin: 0;
}
.timeline-item > span {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: 30px;
    line-height: 30px;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.timeline-item.left > span {
    right: -27px;
}
.timeline-item.right > span {
    left: -27px;
}

/*---------------------------------------------------------------
==========================Pagination section=====================
---------------------------------------------------------------*/
nav.woocommerce-pagination,nav.navigation-pagination{
    text-align: center;
    margin: 25px 0;
}
nav.woocommerce-pagination ul.page-numbers,nav.navigation-pagination ul.page-numbers {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-flex;
    justify-content: center;
}
nav.woocommerce-pagination ul li .page-numbers,nav.navigation-pagination ul li .page-numbers{
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
    border-radius: 5px;
}
nav.woocommerce-pagination ul li .page-numbers.current,nav.navigation-pagination ul li .page-numbers.current{
    background: var(--primary-color);

}
nav.woocommerce-pagination ul li .page-numbers.current::before,nav.navigation-pagination ul li .page-numbers.current::before{
    border-color: var(--primary-color);
}
nav.woocommerce-pagination ul li .page-numbers::before,nav.navigation-pagination ul li .page-numbers::before{
    content: '';
    transition: 0.65s;
    position: absolute;
    inset: -4px 5px;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    z-index: 0;
}
nav.woocommerce-pagination ul.page-numbers li:not(:last-child), nav.navigation-pagination ul.page-numbers li:not(:last-child) {
    margin-right: 10px;
}




/*---------------------------------------------------------------
==========================Faq section=====================
---------------------------------------------------------------*/
.faq-section{
    padding: 100px 0 75px;
    position: relative;
    background-color: var(--white);
}

.faq-section .accordion .accordion-item {
    margin-bottom: 25px;
    border: none;
    background-color: rgba(var(--pr-color), 0.3);
    position: relative;
    z-index: 1;
}
.faq-section .accordion .accordion-item .accordion-body,
.faq-section .accordion .accordion-item strong {
    color: rgba(var(--white));
}
.faq-section .accordion .accordion-item .accordion-body{
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 0 0 5px 5px;
}

.faq-section .accordion-button {
    box-shadow: none;
    border: none;
    font-weight: 600;
    padding: 20px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}
.accordion-item .accordion-button.collapsed{
    background-color: color-mix(in srgb, var(--primary-color) 15%, transparent);
}
.accordion-item .accordion-button:not(.collapsed){
    background-color: var(--primary-color);
}

.faq-section .accordion-button:not(.collapsed)::before {
    background-color: rgba(var(--pr-color), 1);
}


.accordion-item .accordion-button.collapsed::after {
    content: "+";
    height: 20px;
    width: 20px;
    background-image: unset;
    color: var(--primary-color);
    text-align: center;
    border-radius: 20px;
    font-size: 20px;
    line-height: 20px;
    box-shadow: 0 0 0 5px rgba(var(--white), 0.4);
}
.accordion-item .accordion-button::after {
    content: "\f068";
    height: 20px;
    width: 20px;
    background-image: unset;
    background-color: rgba(var(--white));
    color: rgba(var(--sr-color));
    text-align: center;
    border-radius: 20px;
    font-size: 20px;
    line-height: 20px;
    box-shadow: 0 0 0 5px rgba(var(--white), 0.4);
    font-family: "Font Awesome 5 Free";
}



/*---------------------------------------------------------------
==========================Blog single Section=====================
---------------------------------------------------------------*/
.blog-post.author-details {
    padding: 25px;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    margin-bottom: 25px;
}
.blog-post.author-details::after {
    content: '';
    position: absolute;
    inset: 0;
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    background-color: var(--secondary-color);
    z-index: -1;
    width: 40%;
}
.blog-post.author-details::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--primary-color);
    z-index: -1;
    opacity: 0.2;
}
.section-header h2{
    color: var(--white)
}
.author-details .media {
    display: flex;
    align-items: center;
}

.media .auth-mata {
    margin-right: 15px;
}
.media .auth-mata img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
}
.media-body h4 a {
    text-decoration: none;
    text-transform: capitalize;
    color: var(--primary-color);
}
.comments-area {
    margin-bottom: 25px;
}
ol.comment-list {
    margin: 0 0 25px;
    padding: 0px;
    list-style: none;
    position: relative;
    z-index: 1;
    background-color: var(--white);
    border-radius: 5px;
}
ol.comment-list::before{
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--secondary-color);
    opacity: 0.2;
    z-index: -1;
    border-radius: 5px;
}
ol.children {
    margin: 0;
    list-style: none;
}
.comments-area .comment-meta .comment-author img {
    position: absolute;
    z-index: 0;
    left: 0;
    border-radius: 5px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-left: 25px;
}
.comments-area .comment-body {
    position: relative;
    padding: 25px 25px 25px 145px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    border-radius: 3px;
    z-index: 1;
    min-height: 150px;
}
.comment-list>li:not(:last-child).comment .comment-body::before{
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid var(--secondary-color);
    opacity: 0.2;
    z-index: -1;
}
.comment-list>li.comment .children .comment-body::before{
    left: -32px;
}
.comment-list>li.comment .children .children  .comment-body::before{
    left: -64px;
}
.comment-content p {
    margin: 0;
    color: var(--secondary-color);
}
.comment-author .fn a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}
.comment-metadata a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
}
.comment-metadata a time:before {
    content: "\f073";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    color: var(--primary-color);
    margin-right: 5px;
}
.comment-metadata a.reply {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 8px 15px;
    color: var(--white);
    border-radius: 5px;
}
.comment-metadata {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.comment-respond {
    padding: 25px;
    border-radius: 5px;
    border: 1px solid rgba(120 120 120 / 20%);
}
.comment-reply-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}
.comment-form p{
    color: var(--dark)
}
.comment-form p .comment-textarea,
.comment-form p input[type='text'],
.comment-form p input[type='email'],
.comment-form p input[type='url']{
    width: 100%;
    background-color: var(--white);
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--secondary-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.comment-form p.form-submit{
    margin: 0;
}
.comment-form p.form-submit input[type='submit']{
    background-color: var(--primary-color);
    border: none;
    outline: none;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 4px;
}



/* contact page */
.contact-section{
    padding: 100px 0;
    background-color: var(--white);
}
.send-your-enquiry {
    padding: 25px;
    background-color: #eee;
    border-radius: 5px;
} 
.contactus-widget {
    position: relative;
    background-size: cover;
    height: 100%;
    padding: 25px;
    border-radius: 5px;
    z-index: 1;
}
.contactus-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--secondary-color);
    opacity: 0.8;
    z-index: -1;
    border-radius: 5px;
}
.contactus-widget h2,.send-your-enquiry h2{
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}
.send-your-enquiry h2{
    color: var(--secondary-color)
}
.contactus-widget .contact-area {
    display: flex;
    align-items: center;
    border: 1px solid rgba(120 120 120 / 100%);
    margin-bottom: 25px;
    padding: 25px 20px;
    border-radius: 5px;
}
.contactus-widget .contact-area .contact-icon {
    width: 50px;
    min-width: 50px;
    text-align: center;
    background: var(--white);
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    color: var(--primary-color);
    margin-right: 15px;
    transition: 0.5s;
    font-size: 22px;
}
.contactus-widget .contact-area .contact-info p {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.contactus-widget .contact-area .contact-info p span{
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
}
.contactus-widget .contact-area .contact-info p a{
    font-size: 18px;
    word-break: break-all;
}
.send-your-enquiry .wpcf7-form p:nth-child(1){
    width: 49%;
    float: left;
}
.send-your-enquiry .wpcf7-form p:nth-child(2){
    width: 49%;
    float: right;
}
.send-your-enquiry .wpcf7-form p input[type='text'],
.send-your-enquiry .wpcf7-form p input[type='email'],
.send-your-enquiry .wpcf7-form p .wpcf7-textarea{
    width: 100%;
    outline: none;
    box-shadow: none;
    padding: 10px 15px;
    color: var(--dark);
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 3px;
}
.send-your-enquiry .wpcf7-form p input[type='text']:focus-within,
.send-your-enquiry .wpcf7-form p input[type='email']:focus-within,
.send-your-enquiry .wpcf7-form p .wpcf7-textarea:focus-within{
    border-color: var(--primary-color);
}
.send-your-enquiry .wpcf7-form p label{
    width: 100%;
    font-weight: 500;
    color: var(--dark);
}
.send-your-enquiry .wpcf7-form p input[type='submit']{
    background-color: var(--primary-color);
    border: none;
    outline: none;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 4px;
}
.contactus-widget .contact-area:last-child{
    margin-bottom: 0;
}
.contactus-widget .contact-area:hover .contact-icon,.contactus-widget .contact-area:focus-within .contact-icon{
    background-color: var(--primary-color);
    color: var(--white);
}
.contactus-widget .contact-area:hover,.contactus-widget .contact-area:focus-within{
    border-color: var(--primary-color);
}
.map-section iframe {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.map-section{
    margin-bottom: 100px;
}

/* office branch  */
.office-branch{
    display: flex;
}
.office-branch {
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 10px;
    z-index: 1;
    position: relative;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
}
.office-branch::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--white);
    opacity: 0.9;
    border-radius: 5px;
    z-index: -1;
}
.branch-img img {
    width: 80px;
    border-radius: 5px;
}
.branch-content{
    margin-left: 10px;
    text-align: left;
}
.branch-content h2 {
    font-size: 15px;
    font-weight: 800;
    color: var(--secondary-color);
}




/* Error Page 404 */
.section-404{
    padding: 100px 0;
    position: relative;
    background-color: var(--white);
    text-align: center;
}
.section-404 h2.error-title {
    font-size: 180px;
    font-weight: 900;
    color: var(--primary-color);
    animation: tShadow 3s linear infinite;
} 
@keyframes tShadow {
    0%{
        text-shadow: 0px 0px var(--secondary-color);
    }
    25%{
        text-shadow: 0px -10px var(--secondary-color);
    }
    50%{
        text-shadow: 10px -10px var(--secondary-color);
    }
    75%{
        text-shadow: 10px 10px var(--secondary-color);
    }
    100%{
        text-shadow: 0px 0px var(--secondary-color);
    }
}
.section-404 .main-btn:hover,.section-404 .main-btn:focus-within{
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.section-404 .main-btn:hover::before,.section-404 .main-btn:focus-within::before{
    border-color: var(--secondary-color);
}
.section-404 h2.not-found i {
    color: var(--primary-color);
    vertical-align: middle;
}
.section-404 h2.not-found {
    font-weight: 600;
}

/* info-1 */
.info-section {
    margin: -130px 0 20px;
    z-index: 0;
    position: relative;
}
.info-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-section .info-first, 
.info-section .info-second,
.info-section .info-third {
    position: relative;
    margin-bottom: 20px;
}
.info-wrapper li:not(:last-child) {
    margin-right: 20px;
}
.info-wrapper li {
    flex: 1;
    position: relative;
    list-style: none;
}
.info-section .info-first, .info-section .info-third {
    background-color: #fff;
}
.info-section .info-second {
    background-color: var(--primary-color);
}
.info-section .info-second .contact-info {
    color: var(--white);
}
.info-section .widget {
    padding: 20px 30px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    display: block;
    height: 100%;
    z-index: 0;
}

.info-section .contact-area {
    display: inline-flex;
}
.contact-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.info-section .contact-icon {
    font-size: 44px;
    transition: all .5s;
}
.contact-icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 12px;
    position: relative;
    z-index: 1;
}
.contact-area .contact-icon i, .contact-area .contact-icon img {
    display: inline-block;
    vertical-align: super;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}
.info-section .widget .contact-icon i {
    text-shadow: 205px  -30px 0 rgb(178 245 199 / 44%);
}
.info-section .widget .contact-icon i {
    height: 60px;
    width: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    transition: .5s;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-section .widget .contact-icon i {
    background-color: var(--white);
    color: var(--primary-color);
}

.info-section .widget .contact-info h4 {
    font-size: 18px;
    font-weight: 700;
    max-width: 200px;
}
.info-section .widget .contact-info span {
    font-size: 12px;
    font-weight: 500;
}
.info-section .info-first .widget::before,
.info-section .info-third .widget::before {
    content: "";
    position: absolute;
    clip-path: polygon(35% 3%, 23% 97%, 100% 97%, 100% 100%, 16% 100%, 0 100%, 0 3%);
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.info-section .info-second .widget::before {
    content: "";
    position: absolute;
    clip-path: polygon(35% 3%, 23% 97%, 100% 97%, 100% 100%, 16% 100%, 0 100%, 0 3%);
    background: var(--white);
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.info-section .widget .contact-info {
    margin-left: 45px;
    display: inline-block;
    word-break: break-word;
}
.info-section .info-first::before, .info-section .info-third::before {
    position: absolute;
    content: "";
    background-color: var(--primary-color);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    transition: .5s;
}
.info-section .info-second::before {
    position: absolute;
    content: "";
    background-color: var(--white);
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    transition: .5s;
}
.info-section .info-first:hover::before, .info-section .info-third:hover::before {
    width: 100%;
}
.info-section .info-second:hover::before {
    width: 100%;
}
.info-section .info-first:hover .widget::before, .info-section .info-third:hover .widget::before {
    background-color: var(--white);
} 
.info-section .info-second:hover .widget::before {
    background-color: var(--primary-color);
} 
.info-section .info-first:hover .contact-info h4, 
.info-section .info-first:hover .contact-info span,
.info-section .info-third:hover .contact-info h4, 
.info-section .info-third:hover .contact-info span {
    color: var(--white);
} 
.info-section .info-second:hover .contact-info h4, 
.info-section .info-second:hover .contact-info span {
    color: var(--secondary-color);
} 

/* header two */
.header-two::before {
    display: none;
}

.header-two .is-sticky-menu {
    position: fixed;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    -webkit-animation: 1s ease-in-out 0s normal none 1 running fadeInDeep;
    animation: 1s ease-in-out 0s normal none 1 running fadeInDeep;
    transition: 0.65s;
    padding: 10px;
}
.header-two .topbar {
    padding-bottom: 50px;
}
.header-two .topbar::before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 100%;
    z-index: -1;
    top: 0;
    bottom: 0;
    clip-path: polygon(7% 0, 93% 0, 95% 96%, 100% 96%, 100% 100%, 0 100%, 0 96%, 5% 96%);
    opacity: unset;
}
.header-two .header-widget .widget-contact .contact-icon {
    margin-right: 10px;
    color: var(--white);
    font-size: 16px;
    width: 15px;
    height: 30px;
    border-radius: 40px;
    text-align: center;
    line-height: 33px;
    padding: 0;
}
.header-two .header-widget .widget-contact:not(:last-child) {
    border-right: 1px solid rgb(255 255 255 / 38%);
}
.header-two .navbar-nav .nav-item .nav-link { 
    color: var(--secondary-color);
}

.header-two  a.navbar-brand h1 {
    color: var(--primary-color);
}
.header-two .navbar .menu-right > ul > li > .main-btn { 
    color: var(--white);
}
.header-two  a.main-btn:hover,
.header-two  .main-btn:hover,
.header-two  a.main-btn:focus-within,
.header-two  .main-btn:focus-within {
    color: var(--white);
    border-color: var(--secondary-color);
}
.header-two  .main-btn:hover::before, 
.header-two  .main-btn:focus-within::before {
    background-color: var(--secondary-color);
}
.info-section-2 .info-first .widget::before, .info-section-2 .info-third .widget::before {
    content: "";
    position: absolute;
    clip-path: polygon(16% 0, 16% 100%, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 0);
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.info-section-2 .info-first .widget::after, .info-section-2 .info-third .widget::after {
    content: "";
    position: absolute;
    clip-path: polygon(96% 90%, 100% 40%, 100% 100%, 88% 100%);
    background: var(--primary-color);
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.info-section-2 .info-second .widget::before {
    content: "";
    position: absolute;
    clip-path: polygon(16% 0, 16% 100%, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 0);
    background: var(--white);
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.info-section-2 .info-second .widget::after {
    content: "";
    position: absolute;
    clip-path: polygon(96% 90%, 100% 40%, 100% 100%, 88% 100%);
    background: var(--white);
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.info-section-2 .info-first:hover .widget::after, 
.info-section-2 .info-third:hover .widget::after {
    background: var(--white);
}
.info-section-2 .info-second:hover .widget::after {
    background: var(--primary-color);
}

.info-section-2 .widget .contact-icon i {
    border: 2px dashed;
    text-shadow: unset;
}
.info-section-2 .widget .contact-info {
    margin-left: 10px;
}
.info-section-2 .widget .contact-info h4 {
    font-size: 20px;
    font-weight: 600;
    max-width: 200px;
}



/* index-3 */

.header-three .header-top-right .widget_social_widget ul li a:hover, 
.header-top-right .widget_social_widget ul li a:focus-within {
    background: var(--primary-color);
    color: var(--white);
}
.header-three .main-header .is-sticky-menu {
    background: transparent;
}
.header-three::before {
    display: none;
}
.header-three .topbar::before {
    position: absolute;
    content: '';
    inset: 0;
    background-color: transparent;
    z-index: -2;
    opacity: 0.2;
}
.header-three .widget_social_widget ul li a {
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: var(--white);
    line-height: 33px;
    text-align: center;
    margin-right: 10px;
    position: relative;
    transition: 0.65s;
    text-decoration: none;
}
.header-three .widget_social_widget ul li a::before {
    display: none;
}
.header-three .contact-area .contact-icon i, 
.header-three .contact-area .contact-icon img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    line-height: 33px;
}
.header-three .nav-area {
    border: none;
}
.header-three .navbar-brand h1 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 800;
}
.header-three .navbar-nav .nav-item .nav-link {
    color: var(--secondary-color);
    padding: 0 0.5rem;
}
.header-three .navbar-nav .nav-item .nav-link.active,
.header-three .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}
.header-three .menu-right ul .cart_dropdown a {
    color: var(--white);
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: var(--primary-color);
    line-height: 33px;
    text-align: center;
}
.header-three .menu-right .cart_dropdown a .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--secondary-color);
}
.header-three .main-btn::before {
    content: '';
    transition: 0.65s;
    background: var(--primary-color);
    position: absolute;
    inset: 0 -8px;
    border-radius: 50px;
    z-index: -1;
}
.header-three a.main-btn, .header-three .main-btn { 
    border: none;
    padding: 22px 15px;
}
.slider-section.slider-three .main-btn::before {
    content: '';
    transition: 0.65s;
    background: var(--primary-color);
    position: absolute;
    inset: 0;
    border-radius: 50px;
    z-index: -1;
}
.slider-section.slider-three a.main-btn {
    border: none;
    padding: 10px 25px;
}
.info-section-3 .info-first .widget::after, .info-section-3 .info-third .widget::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 70%;
    background: var(--white);
    border-radius: 70px;
    right: 0;
    top: 0;
    z-index: -1;
    clip-path: none;
}
.info-section-3 .info-second .widget::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 30%;
    background: var(--white);
    border-radius: 70px;
    left: 0;
    top: 0; 
    clip-path: none;
}
.info-section-3 .info-second .widget::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 70%;
    background: var(--primary-color);
    border-radius: 70px;
    right: 0;
    top: 0; 
    clip-path: none;
    z-index: -1 ;
}
.info-section-3 .info-first, .info-section-3 .info-third {
    position: relative;
    margin-bottom: 20px;
    border-radius: 70px;
    background: linear-gradient(321deg, var(--white), var(--white) 60%, var(--white), var(--primary-color) 56%);
}
.info-section-3 .info-second{
    position: relative;
    margin-bottom: 20px;
    border-radius: 70px;
    background: linear-gradient(321deg, var(--primary-color), var(--primary-color)  60%, var(--primary-color), var(--white)  56%);
}
.info-section-3 .info-first:hover::before, 
.info-section-3 .info-second:hover::before, 
.info-section-3 .info-third:hover::before {
    border-radius: 70px;
}
.info-section-3 .widget .contact-icon i {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    font-size: 50px;
    transition: .5s;
    border: none;
	text-shadow: unset !important;
}
.info-section-3 .widget {
    padding: 13px 23px;
}
.info-section-3 .info-second .widget .contact-icon i {
    background: var(--primary-color);
    color: var(--white);
}
.info-section-3 .info-first:hover::before, 
.info-section-3 .info-third:hover::before,
.info-section-3 .info-second:hover::before {
   display: none;
}
.info-section-3 .info-first:hover,
.info-section-3 .info-third:hover {
    background: linear-gradient(321deg, var(--primary-color), var(--primary-color)  63%, var(--primary-color), var(--white)  56%);
}
.info-section-3 .info-second:hover {
    background: linear-gradient(321deg, var(--white), var(--white) 63%, var(--white), var(--primary-color) 56%);
}
.info-section-3 .contact-info span {
    display: block;
    line-height: normal;
    position: relative;
}
.info-section-3 .widget  .contact-info span.text {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    word-break: break-word;
    margin-bottom: 1px;
    line-height: 1.2;
}
.info-section-3 .widget .contact-info .title {
    font-size: 14px;
    font-weight: 500;
}
.info-section-3 .info-first .widget::before, .info-section-3 .info-third .widget::before,
.info-section-3 .info-first .widget::before, .info-section-3 .info-third .widget::before,
.info-section-3 .info-second .widget::before, .info-section-3 .info-second .widget::before   {
 display: none;
}
.info-section-3 .info-first .widget .contact-icon::before,
.info-section-3 .info-third .widget .contact-icon::before {
    content: '';
    position: absolute;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    font-size: 50px;
    transition: .5s;
    border: none;
    background-color: var(--primary-color);
}
.info-section-3 .info-second .widget .contact-icon::before {
    content: '';
    position: absolute;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    font-size: 50px;
    transition: .5s;
    border: none;
    background-color: var(--white);
}
.info-section-3 .info-first .contact-info::after, 
.info-section-3 .info-third .contact-info::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 66%;
    background: var(--white);
    border-radius: 70px;
    right: 0;
    top: 0;
    z-index: -1;
    clip-path: none;
}
.info-section-3 .info-second .contact-info::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 66%;
    background: var(--primary-color);
    border-radius: 70px;
    right: 0;
    top: 0;
    z-index: -1;
    clip-path: none;
}
.info-section-3 .info-first .widget::after, 
.info-section-3 .info-third .widget::after,
.info-section-3 .info-second .widget::after {
    display: none;
}

.info-section-3 .info-first:hover .widget .contact-icon i,
.info-section-3 .info-third:hover .widget .contact-icon i {
    background-color: var(--primary-color);
    color: var(--white);
}
.info-section-3 .info-second:hover .widget .contact-icon i{
    background-color: var(--white);
    color: var(--primary-color);
} 
.info-section-3 .info-first:hover .widget .contact-icon::before,
.info-section-3 .info-third:hover .widget .contact-icon::before {
    background-color: var(--white);
}
.info-section-3 .info-second:hover .widget .contact-icon::before {
    background-color: var(--primary-color);
}
.info-section-3 .info-first:hover .contact-info::after, 
.info-section-3 .info-third:hover .contact-info::after {
    background-color: var(--primary-color);
}
.info-section-3 .info-second:hover .contact-info::after {
    background-color: var(--white);
}



/* home page 4 */

.header-four .header-widget {
    justify-content: start;
}
.header-four .header-top-right .widget_social_widget ul {
    justify-content: end;
}
.header-four .header-top-right .widget.widget_social_widget:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    background: var(--primary-color);
    clip-path: polygon(86% 0, 100% 0, 100% 100%, 88% 100%);
}
.header-four .header-top-right .widget.widget_social_widget::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto 0;
    background: var(--primary-color);
    clip-path: polygon(65% 0, 65.3% 0, 70.3% 100%, 70% 100%);
}
.header-four .topbar {
    padding: 15px 0;
    position: relative;
    background: var(--bs-white);
}
header.header-four::before {
    display: none;
}
.header-four .widget.widget-contact .contact-icon  {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    line-height: 33px;
    text-align: center;
    margin-right: 10px;
    position: relative;
    transition: 0.65s;
    text-decoration: none;
}
.header-four .header-widget .widget-contact .contact-info .text a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 16px;
}
.header-four .widget_social_widget ul li a::before { 
    display: none;
}
.header-four .widget_social_widget ul li a {
    border-radius: 0;
}
.header-four .navbar-brand h1 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 800;
}
.header-four .main-btn {
    border: none;
}
.header-four .main-btn::before {
    content: '';
    transition: 0.65s;
    background: var(--primary-color);
    position: absolute;
    inset: 4px -5px;
    border-radius: 0;
    z-index: -1;
}
.slider-section.slider-four button.carousel-control-prev::before, 
.slider-section.slider-four button.carousel-control-next::before {
    border: none;
}
.slider-section.slider-four button.carousel-control-prev, 
.slider-section.slider-four button.carousel-control-next {
    border-radius: 0;
}
.slider-four a.main-btn {
    border: none
}
.slider-four a.main-btn, .slider-four .main-btn::before {
    border-radius: 0;
}

.info-section-4 {
    margin: 20px 0 20px;
    z-index: 0;
    position: relative;
}
.info-section-4 .info-first .widget::before, 
.info-section-4 .info-third .widget::before,
.info-section-4 .info-second .widget::before {
    display: none;
}
.info-section-4 .info-first, 
.info-section-4 .info-third {
    background: rgb(255,255,255);
    background: linear-gradient(39deg, var(--secondary-color) 73%,  var(--secondary-color) 87%, var(--white) 87%, var(--white) 90%, var(--secondary-color) 90%);
}
.info-section-4 .info-second {
    background: rgb(255,255,255);
    background: linear-gradient(39deg, var(--primary-color) 73%,  var(--primary-color) 87%, var(--white) 87%, var(--white) 90%, var(--primary-color) 90%);
}
.info-section-4 .info-first::before, 
.info-section-4 .info-third::before {
    position: absolute;
    content: "";
     background: linear-gradient(39deg, var(--primary-color) 73%,  var(--primary-color) 87%, var(--white) 87%, var(--white) 90%, var(--primary-color) 90%);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    transition: .5s;
}
.info-section-4 .info-second::before {
    position: absolute;
    content: "";
    background: linear-gradient(39deg, var(--secondary-color) 73%,  var(--secondary-color) 87%, var(--white) 87%, var(--white) 90%, var(--secondary-color) 90%);
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    transition: .5s;
}
.info-section-4 .info-first:hover::before, 
.info-section-4 .info-third:hover::before {
    width: 100%;
}
.info-section-4 .info-second:hover::before {
    width: 100%;
}
.info-section-4 .widget .contact-info {
    margin: 0;
	width: 210px;
}
.info-section-4 .info-first .widget .contact-info,
.info-section-4 .info-third .widget .contact-info  {
    color: var(--white);
}
.info-section-4 .info-first:hover .widget .contact-info,
.info-section-4 .info-third:hover .widget .contact-info  {
    color: var(--secondary-color);
}

.info-section-4 .info-second .contact-info h4, 
.info-section-4 .info-second .contact-info span {
    color: var(--secondary-color);
}
.info-section-4 .info-second:hover .contact-info h4, 
.info-section-4 .info-second:hover .contact-info span {
    color: var(--white);
}
.info-section-4 .widget .contact-info h4 {
    font-size: 20px;
    font-weight: 700;
    max-width: 200px;
}
.info-section-4 .contact-icon {
    margin: 40px 0 0 30px;
}
.info-section-4 .widget .contact-icon i {
    height: 60px;
    width: 60px;
    border-radius: 0;
    text-align: center;
    line-height: 60px;
    font-size: 40px;
    transition: .5s;
    border: none;
}
.info-section-4 .info-first .widget .contact-icon i,
.info-section-4 .info-third .widget .contact-icon i {
    background: var(--primary-color);
    color: var(--white);
}
.info-section-4 .info-second .widget .contact-icon i {
    background: var(--secondary-color);
    color: var(--primary-color);
}
.info-section-4 .info-first:hover .widget .contact-icon i,
.info-section-4 .info-third:hover .widget .contact-icon i {
    background: var(--secondary-color);
    color: var(--primary-color);
}
.info-section-4 .info-second:hover .widget .contact-icon i {
    background: var(--primary-color);
    color: var(--white);
}
    

/* home page 5 */
.header-five .header-widget {
    justify-content: start;
}
.header-five .header-top-right .widget_social_widget ul {
    justify-content: end;
}
header.header-five::before {
    display: none;
}
.main-header .topbar::before {
    background-color: var(--primary-color);
    opacity: 0.2;
}
.header-five .widget_social_widget ul li a::before {
    display: none;
}
.header-five .widget_social_widget ul li a {
    background: none;
    color: var(--white);
}
.header-five a.navbar-brand h1 {
    color: var(--primary-color);
}
.header-five .header-top-right .widget_social_widget ul li a:hover, 
.header-five .header-top-right .widget_social_widget ul li a:focus-within {
    background: none;
    color: var(--primary-color);
}
.header-five .navbar-nav .nav-item .nav-link {
    color: var(--secondary-color);
}
.header-five .navbar-nav .nav-item .nav-link.active,
.header-five .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}
.header-five ul .header_btn a.main-btn-2{
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    padding: 20px 20px;
    border-radius: 50%;
    position: relative;
    line-height: 1;
    transition: 0.65s;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    z-index: 1;
}
.header-five ul .header_btn .main-btn-2::before {
    content: '';
    transition: 0.65s;
    background: var(--primary-color);
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    z-index: -1;
}
.header-five ul .header_btn a.main-btn  {
    border: none;
    border-radius: 0;
    padding: 20px 10px;
    color: var(--white);
}
.header-five ul .header_btn .main-btn::before {
    border-radius: 0;
}
.header-five ul .header_btn a.main-btn:hover::before{
    background: var(--secondary-color);
}
.slider-five a.main-btn, .slider-five .main-btn::before {
    border-radius: 0;
}
.slider-five a.main-btn {
    border: none;
}
.slider-five a.main-btn, .slider-five .main-btn::before {
    border-radius: 0;
}
.slider-section.slider-five button.carousel-control-prev, .slider-section.slider-five button.carousel-control-next {
    border-radius: 0;
}
.slider-section.slider-five button.carousel-control-prev::before, .slider-section.slider-five button.carousel-control-next::before {
    border: none;
}
.info-section-5 .info-first::before,
.info-section-5 .info-third::before,
.info-section-5 .info-second::before{
    display: none;
}
.info-section-5 .info-second:hover .contact-info h4, 
.info-section-5 .info-second:hover .contact-info span {
    color: var(--white);
}
.info-section-5 .widget {
    padding: 20px 0;
}
.info-section-5 .info-first .widget::before, 
.info-section-5 .info-third .widget::before,
.info-section-5 .info-second .widget::before {
    display: none;
}
.info-section-5 .info-first, 
.info-section-5 .info-third,
.info-section-5 .info-second,
.info-section-5 .info-four {
    background-color: transparent;
}
.info-section-5 .info-second .contact-info {
    color: var(--secondary-color);
}
.info-section-5 .widget .contact-info {
    margin: 0 !important;
}
.info-section-5 .info-first:hover .contact-info h4, 
.info-section-5 .info-second:hover .contact-info h4,
.info-section-5 .info-third:hover .contact-info h4 {
    color: var(--secondary-color);
}
.info-section-5 .widget .contact-info h4 {
    font-size: 16px;
    max-width: 200px;
}
.info-section-5 .widget .contact-info p {
    font-size: 12px;
    margin: 0;
}
.info-section-5 .widget .contact-icon i {
    border: none;
    text-shadow: unset;
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 34px;   
    color: var(--secondary-color);
    background: none;
}
.info-section-5 .widget .contact-icon  {
    font-size: 46px;
    transition: all .5s;
    overflow: hidden;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    transition: .5s;
    border: 1px solid var(--primary-color);
}
.info-section-5 .widget .contact-icon::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    transition: .5s;
}
.info-section-5 .widget:hover .contact-icon::before {
    width: 100%;
    height: 100%;
    top: 0;
}
.info-section-5 .widget:hover .contact-icon i {
    color: var(--white);
}
/* .info-section-5 .widget:hover .contact-info h4 {
    color: var(--secondary-color);
} */

.main-header .navbar-nav .nav-item .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.info-section-2 .widget .contact-icon i {
    text-shadow: none !important;
}

/* cart */
.woocommerce table.shop_table {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-radius: 5px;
    /* display: inline-block; */
}
table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents {
    border: none;
    background: transparent;
    display: inline-table;
}
.info-section-3 {
    margin: -160px 0 20px;
}

.right .timeline-item.left > span {
    left: -27px;
}

nav.woocommerce-pagination, nav.pagination {
    text-align: center;
    margin: 25px 0;
	display: block;
}
nav.pagination .nav-links .page-numbers:not(:last-child) {
    margin-right: 10px;
}
nav.pagination .nav-links .page-numbers {
    width: 40px; 
    height: 40px;
    display: inline-block;
    line-height: 40px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
    border-radius: 5px;
}
nav.pagination .nav-links .page-numbers.current {
    background: var(--primary-color);
}
nav.pagination .nav-links .page-numbers::before {
    content: '';
    transition: 0.65s;
    position: absolute;
    inset: -4px 5px;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    z-index: 0;
}
nav.pagination .nav-links .page-numbers.current::before {
    border-color: var(--primary-color);
}
.sidebar .widget .calendar_wrap {
    padding: 20px;
    border: 1px solid rgba(120 120 120 / 20%);
}
.sidebar .widget.widget_categories ul {
    padding: 20px;
    border: 1px solid rgba(120 120 120 / 20%);
}
.sidebar .widget_search .search-form {
    display: flex;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 0px;
    border: 1px solid rgba(120 120 120 / 20%);
}
.sidebar .widget_tag_cloud .tagcloud {
    padding: 20px;
    border: 1px solid rgba(120 120 120 / 20%);
}

.wc-block-components-form fieldset.wc-block-components-checkout-step {
    border-radius: 0;
    border: 1px solid rgba(120 120 120 / 20%);
    margin-bottom: 25px;
	padding: 25px;
}

h2.wc-block-components-title.wc-block-components-title {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(120 120 120 / 20%);
    display: block;
    width: 100%;
}
.is-large.wc-block-cart .wc-block-cart-items .wc-block-cart-items__header th {
    color: var(--white);
    background-color: var(--secondary-color) !important;
    font-size: 18px;
	font-weight: 500;
    padding: 10px 15px;
}
.wc-block-components-main table.wc-block-cart-items td {
    padding: 24.5px 12px;
    border: 0;
}

.is-large.wc-block-cart span.wc-block-cart__totals-title {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 20px;
    text-align: center;
    padding: 24.5px 12px;
    margin-bottom: 0;
    font-weight: 500;
    border: 1px solid transparent;
}
.wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block {
    border-color: #d8d8d8;
    border-radius: 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    display: inline-block;
}    

.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
    border-radius: 4px;
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--white);
	display: inline-block;
    font-size: 18px;
    padding: 0.5395em 1.15em !important;
}
.wc-block-components-button:not(.is-link) {
	border: none;
    background: none;
}
.site-title,
.site-description {
    color: var(--white);
}

.nav-area img.custom-logo { 
	height: auto;
	max-width: 100%;
}
.navbar-nav .nav-item .nav-link {
	line-height: 3;
}
.nav-h {
    padding: 15px 0;
	position: relative;
}
.blog-section .widget:not(.sidebar .widget > .widget){
    margin-bottom: 25px;
    background-color: var(--bg-color);
}
.blog-section .widget .wp-block-heading, .blog-section .widget .widget-title {
    padding: 10px 15px;
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 0;
    display: block;
    font-size: 22px;
    text-align: left;
    margin: 0;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(120 120 120 / 20%);
    border-bottom-color: transparent;
}

.blog-section .widget .wp-block-heading::before, .blog-section .widget .widget-title::before {
    content: "";
    background: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 7px;
    line-height: 0.5;
    position: absolute;
    width: 120px;
    opacity: 0.54;
    left: 5px;
    top: 5px;
    bottom: 5px;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
}

.blog-section .widget .woocommerce-product-search  {
    display: flex;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 0px;
    border: 1px solid rgba(120 120 120 / 20%);
}

.blog-section .widget .woocommerce-product-search .search-field {
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    padding: 10px;
    border-radius: 0;
    height: 50px;
    border: none;
    outline: none;
	 width: 75%;
    background: var(--white);
}
.blog-section .widget .woocommerce-product-search button {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 0px;
    border: none;
    height: 50px;
    width: 25%;
}
.blog-section .widget .wp-block-categories-list {
    padding: 20px;
    border: 1px solid rgba(120 120 120 / 20%);
	list-style: none
}
.blog-section .widget .wp-block-categories-list li,
.blog-section .widget .wp-block-archives-list li{
    padding: 10px;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    margin-bottom: 20px;
    display: flex;
    background: var(--white);
    transition: 0.65s;
}
.blog-section .widget .wp-block-categories-list li a {
    flex: 1;
    color: var(--dark);
}
.blog-section .widget .wp-block-categories-list li:hover, .blog-section .widget .wp-block-categories-list li:focus-within {
    background: var(--primary-color);
    color: var(--white);
}
.blog-section .widget ul {
    padding: 20px;
    border: 1px solid rgba(120 120 120 / 20%);
}
.sidebar .widget .wp-block-latest-posts {
    padding: 20px;
    border: 1px solid rgba(120 120 120 / 20%);
}
.sidebar .widget .wp-block-latest-comments {
    padding: 20px;
	border: 1px solid rgba(120 120 120 / 20%);
}
.sidebar .widget_recent_entries ul {
	 padding: 20px;
	border: 1px solid rgba(120 120 120 / 20%);
}
.navbar-nav .dropdown-menu li .dropdown-item.active {
	color: unset;
	background-color: unset;
}
.navbar-nav .dropdown-menu li .dropdown-item:hover, .navbar-nav .dropdown-menu li .dropdown-item:focus-within, .navbar-nav .dropdown-menu li.current_page_item .dropdown-item {
    color: var(--white);
    background-color: var(--primary-color);
}
.main-header .navbar-nav .nav-item.current_page_item .nav-link{ 
	color: var(--primary-color);
}
span.slide_subtitle {
	color: var(--primary-color);
}
.footer-section .widget_nav_menu .menu .menu-item {
	color: var(--white);
}
.team .team-content .widget_social_widget ul a:hover::before, 
.team .team-content .widget_social_widget ul a:focus-within::before {
    border-color: var(--secondary-color);
}
.team .team-content .widget_social_widget ul a:hover, 
.team .team-content .widget_social_widget ul a:focus-within {
    color: var(--white);
    background-color: var(--secondary-color);
}
	
.desg1 {
	transform: scale(-1);
}
.section-404 .main-btn:hover::before, .section-404 .main-btn:focus-within::before {
    background-color: var(--secondary-color);
}
.section-404 .main-btn:hover, .section-404 .main-btn:focus-within {
	background: none;
    border-color: var(--secondary-color);
    color: var(--primary-color);
}
.about-section .main-btn:hover::before, .about-section .main-btn:focus-within::before {
    background-color: var(--secondary-color);
}
.about-section .main-btn:hover, .about-section .main-btn:focus-within {
	background: none;
    border-color: var(--secondary-color);
    color: var(--primary-color);
}
.footer-section .widget_block p,
.footer-section .widget_meta .footer-item li {
	color: var(--white);
}
.cta-section::before {
    opacity: 0;
}
.funfact-section::before {
    opacity: 0;
}
.post-item .post-date a {
    z-index: 0;
}
.blog-section .post-item .post-content p  {
    color: #a7a4a4;
    line-height: 25px;
    margin: 20px 0;
}
.blog-post, .author-profile, .comments-area, .comment-list .media  {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(170, 167, 167, 0.35);
    border-radius: 8px;
}

iframe {
    border: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.main-header {
	background: var(--secondary-color);
}
@media(min-width:768px) {
	.main-header.transparent {
		position: absolute;
		background: transparent;
	}
}
.owl-dots {
	display: none;
}
.slide_title {
	margin-bottom: 20px;
}
.info-section .info-first .widget{
	box-shadow: 0px 0px 5px 0px rgb(95 100 104 / 50%);
}