:root {
    --thm-color: #0C6460;
    --black-color: #1A3841;
    --body-color: #74787C;
    --white-color: #ffffff;
    --border-color: #DFDFDF;
    --bg-color: #F5F5F5;
    --box-shadow: 0px 4px 24px 0px #DDE2EB;
    --body-font: 'Onest', sans-serif;
    --heading-font: 'Crimson Pro', sans-serif;

}


/***************************************
   Slider Dote Style 
  ****************************************/

ul.slick-dots {
    margin-top: 30px;
}

.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 1;
    margin-top: 47px;
}

.slick-dots li {
    position: relative;
    cursor: pointer;
    margin: 0 4px;
    border: 2px solid #CEDCE9;
    border-radius: 50px;
    padding: 4px;
    height: 20px;
    width: 20px;
    display: inline-flex;
    justify-content: center;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
}

.slick-dots li button {
    height: 8px;
    font-size: 0;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    border: none;
    padding: 4px;
    visibility: hidden;
}

.slick-dots li.slick-active button {
    background: var(--thm-color);
    visibility: visible;
}

.slick-dots li.slick-active {
    border: 2px solid var(--thm-color);
}

/*************************************
    ******** SHAPE  CONTROLL CSS  **********
    *************************************/
.tp-section-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-repeat: no-repeat;
    pointer-events: none;
}

.shapeanimation {
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-duration: 9s;
    -webkit-animation-duration: 9s;
    z-index: -1;
}

/* custom animations */
@-webkit-keyframes shapeMover {

    0%,
    100% {
        -webkit-transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        -webkit-transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes shapeMover {

    0%,
    100% {
        -webkit-transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        -webkit-transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}


/***************************************
   Slider Arrow Style 
  ****************************************/

.slick-prev {
    z-index: 1;
    position: absolute;
    left: -100px;
    top: 50%;
    bottom: 50%;
    transform: translate(-50%, -50%);
}

.slick-next {
    position: absolute;
    right: -160px;
    top: 50%;
    bottom: 50%;
    transform: translate(-50%, -50%);
}

.slick-arrow {
    border: none;
    background: var(--thm-color);
    color: var(--white-color);
    font-size: 16px;
    height: 67px;
    width: 67px;
    border-radius: 100PX;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.slick-arrow:hover {
    background: var(--black-color);
}

/**************************
***** Header Style One ****
*************************/
.header-top-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-wrapper {
    background-color: var(--thm-color);
}

.header-top-right-info,
.header-social-info {
    display: flex;
    align-items: center;
}

.header-social-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-social-info span,
.header-social-info ul li a,
.header-working-time,
.header-message {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
}

.header-social-info ul li a:hover,
.header-message a:hover {
    color: var(--black-color);
}

.header-working-time {
    padding-right: 25px;
    border-right: 1px solid #207975;
    display: flex;
    align-items: center;
}

.header-social-info {
    margin-left: 25px;
}

.header-working-time span {
    margin-left: 10px;
}

.header-social-info span {
    margin-right: 15px;
}

.header-social-info ul li {
    display: inline-block;
}

.header-social-info ul li a {
    margin-right: 20px;
}

.header-social-info ul li:last-child a {
    margin-right: 0;
}

.header-contact-wrapper {
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 1px solid #EBEEEE;
    align-items: center;
}

.header-contact-items {
    display: flex;
}

.header-contact-item {
    display: flex;
    align-items: center;
    border-right: 1px solid #EBEEEE;
    padding-right: 30px;
    margin-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.header-contact-icon {
    width: 45px;
    height: 45px;
    text-align: center;
    padding: 12px;
    box-shadow: var(--box-shadow);
    border-radius: 100%;
    color: var(--thm-color);
    margin-right: 15px;
}

.header-contact-item:last-child {
    border: none;
    margin-right: 0;
    padding-right: 0;
}

.header-main-center {
    border-left: 1px solid #EBEEEE;
    border-right: 1px solid #EBEEEE;
}

.growhub-header-template-one .navbar {
    padding: 0;
}

.header-contact-content-box span {
    font-size: 14px;
    color: #6E777D;
    font-weight: 500;
}

.header-contact-content {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

.header-search input.search-field {
    min-width: 273px;
    border: transparent;
    border-radius: 0;
    border-left: 1px solid #EBEEEE;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-color);
}

.header-search button.search-submit {
    background: transparent;
    color: var(--thm-color);
    border: transparent;
    padding: 0 28px;
}

/**************************
***** Header Canva Style ****
*************************/

.button.growhub-canva-open {
    border-radius: 100px;
    margin-left: 20px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    color: var(--thm-color);
    cursor: pointer;
}

.button.growhub-canva-open:hover {
    background-color: var(--thm-color);
    color: var(--white-color);
}

.growhub-canva-open.canva-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: var(--thm-color);
    color: var(--white-color);
}

.growhub-canva-open.canva-close:hover {
    background: var(--bg-color);
    color: var(--thm-color);
}

.headere-sidebar-textwidget {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 40px;
    display: flex;
    transform: translateX(130%);
    transition: transform 600ms ease, opacity 600ms ease;
    -webkit-transition: transform 600ms ease, opacity 600ms ease;
    -o-transition: transform 600ms ease, opacity 600ms ease;
    background: var(--white-color);
    border-left: 2px solid var(--thm-color);
}

.canva-growhub-wrapper.active .growhub-canva-content {
    transform: translateX(0%);
}

.header-sidebar-content-inner {
    margin-top: 40px;
}

.header-sidebar-title {
    font-weight: 500;
    margin-bottom: 14px;
}

.header-sidebar-desc {
    margin-bottom: 24px;
}

.header-sidebar-contact-info {
    margin-bottom: 40px;
    font-weight: 500;
}

.header-sidebar-contact-info-title {
    font-weight: 500;
    margin-bottom: 22px;
}

.header-sidebar-contact-info ul {
    margin: 0;
    padding: 0;
}

.header-sidebar-contact-info ul li {
    list-style: none;
    margin-bottom: 15px;
}

.header-sidebar-contact-info ul li i {
    color: var(--white-color);
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: var(--thm-color);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}

.header-sidebar-social-icon {
    margin-top: 38px;
}

.header-sidebar-social-icon ul {
    margin: 0;
    padding: 0;
}

.header-sidebar-social-icon ul li {
    list-style: none;
    display: inline;
}

.header-sidebar-social-icon ul li a {
    color: var(--white-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--black-color);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    z-index: 1;
}

.header-sidebar-social-icon ul li a:hover {
    background: var(--thm-color);
    color: var(--white-color);
}

.header-sidebar-toggle a {
    position: absolute;
    display: inline-block;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    top: 20px;
    right: 25px;
    color: var(--white-color);
    opacity: 1;
    font-size: 20px;
    background: var(--thm-color);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

/* overlay */
.header-sidebar-toggle a:hover {
    background: var(--black-color);
    color: var(--white-color);
}

.canva-growhub-wrapper .overlay-canva.growhub-canva-open {
    transform: translateX(100%);
}

.canva-growhub-wrapper.active .overlay-canva.growhub-canva-open {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(6 18 39);
    opacity: 0.80;
    cursor: pointer;
    z-index: 1;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    transform: translateX(0%);
    height: 100vh;
    z-index: 99;
}

.growhub-canva-open {
    cursor: pointer;
}

/**********************
****** Header Two style *****/
.header-two .header-top-box {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-two .header-top-wrapper {
    background-color: var(--black-color);
    padding-bottom: 50px;
}

.header-two .header-social-info ul li a:hover {
    color: var(--thm-color);
}

.header-two .header-contact-icon,
.header-three .header-contact-icon {
    width: unset;
    height: unset;
    text-align: center;
    padding: 0;
    box-shadow: none;
    border-radius: unset;
    color: var(--white-color);
    margin-right: 10px;
    box-shadow: none;
    font-size: 14px;
}

.header-two .header-contact-content,
.header-three .header-contact-content {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
}

.header-two .header-contact-content a,
.header-three .header-contact-content a {
    color: var(--white-color);
}

.header-two .header-contact-content a:hover {
    color: var(--thm-color);
}

.header-two .header-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-two .header-canva-wrapper {
    margin-left: 15px;
}

.header-two .header-main-wrapper .main-navigation {
    background: var(--white-color);
    border-radius: 20px;
    padding: 0;
    padding-right: 30px;
}

.header-two .main-menu>ul>li>a {
    padding: 31px 0;
}

.header-two .site-branding {
    padding: 35px 40px;
    background: var(--thm-color);
    border-radius: 18px 0px 0 17px;
}

.header-two .site-branding .site-title a {
    color: var(--white-color);
}

.header-two .growhub-canva-open {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    text-align: center;
    padding: 11px;
    background: #e7efef;
    color: var(--thm-color);
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.header-two .growhub-canva-open:hover {
    background-color: var(--thm-color);
    color: var(--white-color);
}

.header-two .main-header {
    margin-top: -50px;
}

.header-two .header-contact-item {
    border-right: 1px solid var(--thm-color);
    padding-top: 0;
    padding-bottom: 0;
}

.header-two .header-contact-item:last-child {
    border: none;
    margin-right: 0;
    padding-right: 0;
}

.header-three .header-top-wrapper {
    background-color: transparent;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.header-three .header-contact-item {
    border-right-color: rgb(255 255 255 / 10%);
    padding-top: 14px;
    padding-bottom: 14px;
}

.header-top-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-top-menu ul li {
    display: inline-block;
}

.header-top-menu ul li a {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
}

.header-top-menu ul li a:hover {
    color: var(--thm-color);
}

.header-three .header-social-info {
    border-left: 1px solid rgb(255 255 255 / 10%);
    padding-left: 30px;
}

.header-top-menu ul li a:after {
    content: "/";
    left: auto;
    right: -4px;
    position: absolute;
    color: var(--white-color);
}

.header-top-menu ul li:last-child a:after {
    content: "";
}

.header-top-menu ul li:last-child a {
    margin-right: 0;
    padding-right: 0;
}

.header-three .main-menu>ul>li>a,
.header-three .site-branding .site-title a {
    color: var(--white-color);
}

.header-three .main-menu>ul>li>a:hover {
    color: var(--thm-color);
}

.header-three {
    background: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(8px);
}

.header-three .main-header {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.header-three .main-navigation {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.header-three .main-menu>ul>li>a {
    padding: 38px 0;
}

.header-three-contact-wrapper {
    display: flex;
    align-items: center;
}

.header-3-contact-icon {
    width: 45px;
    height: 45px;
    background: var(--white-color);
    border-radius: 100%;
    text-align: center;
    padding: 11px;
    margin-right: 15px;
    color: var(--thm-color);
}

.header-3-contact-info span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--white-color);
    margin-bottom: 5px;
    display: block;
}

.contact-content,
.contact-content a {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--white-color);
}

.header-three .header-contact-item:last-child {
    border-color: transparent !important;
}
@media (max-width: 1250px) {
	.header-three-contact-wrapper {
		display: none;
	}
}
/**** Footer company addons **/
.growhub-company-about-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.company-logo {
    display: contents;
}

.company-about-dec {
    margin-top: 36px;
    margin-bottom: 40px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    color: #94ADB5;
}

.about-social-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-social-wrapper ul li {
    display: inline-block;
}

.about-social-wrapper ul li a {
    width: 40px;
    height: 40px;
    background: #2B4B55;
    border-radius: 100%;
    text-align: center;
    padding: 9px;
    color: var(--white-color);
    margin-right: 10px;
}

.about-social-wrapper ul li a:hover {
    background-color: var(--thm-color);
}

.footer-addons .widget-title {
    font-size: 30px;
    color: var(--white-color);
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.3px;
    margin-bottom: 30px;
}

.footer-addons .widget-title span {
    position: relative;
}

.footer-addons .widget-title span:after {
    width: 50%;
    height: 4px;
    background: rgba(255, 255, 255, 0.10);
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}

/** Page links addons **/
.growhub-page-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.growhub-page-links ul li {
    display: block;
}

.growhub-page-links ul li a {
    color: #B6C4C9;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
}

.growhub-page-links ul li a:hover {
    color: var(--white-color);
}

.growhub-page-links ul li .icon {
    display: inline-block;
    margin-right: 5px;
}

/*** Contact info addons **/
.footer-addons .contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: row;
}

.footer-addons .contact-info-icon {
    width: 40px;
    height: 40px;
    background: #2B4B55;
    border-radius: 100%;
    text-align: center;
    padding: 9px;
    margin-right: 10px;
    color: var(--white-color);
}

.footer-addons .contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-content,
.contact-info-content a {
    color: #B6C4C9;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: var(--white-color);
}

/*** Subscribe addons **/
.growhub-subscribe-item input[type="email"] {
    margin: 0;
    border-radius: 100px;
    border: 1px solid;
}

.growhub-subscribe-item form {
    position: relative;
}

.growhub-subscribe-item input[type="submit"] {
    position: absolute;
    right: -1px;
    border-radius: 100px;
    padding: 17px 40px;
}

.growhub-subscribe-box .sort-dec {
    color: #B6C4C9;
    margin-bottom: 15px;
}

/** Section title addons **/
.growhub-section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.growhub-section-small-title {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: var(--black-color);
}

.growhub-section-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    margin: 0;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 70px;
}

.round-shape {
    display: inline-block;
    position: absolute;
    left: 26%;
    top: -93%;
    overflow: hidden;
    z-index: -1;
}

.growhub-section-title-content {
    text-align: center;
}

.round-shape:after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--thm-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 100%;
    -webkit-animation: zoomInOut 3s linear infinite;
    animation: zoomInOut 3s linear infinite;
}


/** Hero Banner Addons **/
.growhub-hero-banner-inner {
    display: flex;
    justify-content: flex-end;
}

.growhub-hero-banner-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-banner-box {
    padding-top: 160px;
    padding-bottom: 160px;
    padding-right: 100px;
    padding-left: 100px;
    position: relative;
    background: linear-gradient(270deg, #02191E 0%, rgba(0, 0, 0, 0.00) 101.9%);
    backdrop-filter: blur(50px);
}

.hero-banner-box-wrapper {
    width: 50%;
}

.hero-banner-box circle {
    stroke-opacity: 1;
}

.hero-banner-box .round-shape {
    display: inline-block;
    position: absolute;
    left: -13%;
    top: 8%;
    overflow: hidden;
    z-index: -1;
}

.growhub-small-title {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: var(--white-color);
}

.growhub-hero-title {
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
    color: var(--white-color);
    margin-bottom: 40px;
    margin-top: 16px;
}

.growhub-hero-description {
    color: var(--white-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.button-wrapper {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-numbers {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.hero-numbers .hero-icon {
    width: 50px;
    height: 50px;
    background: var(--white-color);
    border-radius: 100%;
    text-align: center;
    padding: 14px;
    font-size: 18px;
    margin-right: 10px;
    color: var(--thm-color);
}

.hero-number-content,
.hero-number-content a {
    color: var(--white-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.4px;
}

/** About us addons */
.growhub-about-content .growhub-small-title {
    color: var(--black-color);
}

.growhub-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    color: var(--black-color);
    margin-top: 16px;
    margin-bottom: 30px;
}

.growhub-button-wrapper {
    margin-top: 40px;
}

.growhub-about-dec-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.growhub-about-dec-list ul li {
    display: inline-flex;
    width: 49%;
    align-items: center;
    font-size: 16px;
    line-height: 35px;
}

.growhub-about-dec-list {
    margin-top: 30px;
}

.growhub-about-dec-list ul li .icon {
    margin-right: 10px;
    color: var(--thm-color);
}

.about-author-wrapper {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.about-author-img {
    width: 70px;
    height: 70px;
    margin-right: 16px;
}

.about-author-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.about-author-info {
    display: flex;
    align-items: center;
    margin-right: 40px;
    padding-right: 40px;
    border-right: 1px solid #EBEBEB;
}

.about-author-content .author-name {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
    font-family: var(--body-font);
}

.about-author-content .author-sname {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--thm-color);
}

.about-author-number {
    display: flex;
    align-items: center;
}

.about-author-number .about-number-icon {
    width: 55px;
    height: 55px;
    background-color: var(--thm-color);
    border-radius: 100%;
    text-align: center;
    padding: 16px;
    font-size: 20px;
    color: var(--white-color);
    margin-right: 20px;
}

.about-number-label span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.about-number,
.about-number a {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--black-color);
}
@media (max-width: 550px) {
    .about-author-wrapper {
        display: block;
    }
    .about-author-info {
        margin-right: 0;
        padding-right: 0;
        border-right: 0;
        margin-bottom: 30px;
    }
}
/*** Service Box addons **/
.service-accordions-hover {
    opacity: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    transform: scale(0);
    visibility: hidden;
}

.service-accordions-title-normal {
    font-size: 44px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    color: var(--white-color);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    white-space: nowrap;
    position: absolute;
    margin: 0;
    padding: 0;
    margin-left: -10px;
}

.service-accordions-item {
    max-height: 550px;
    width: 84px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 30px;
    margin: 0 10px;
    
}

.service-accordions-item:after {
    background: var(--thm-color);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 30px;
    opacity: .96;
}


.service-accordions-item.active .service-accordions-hover {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.service-accordions-item.active {
    width: 50%;
}

.service-accordions-item.active .service-accordions-title-normal {
    display: none;
}

.service-accordions-hbox {
    text-align: center;
}

.service-accordions-icon {
    width: 120px;
    height: 120px;
    display: inline-flex;
    background: #2F7A77;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: var(--white-color);
    font-size: 60px;
    border: 1px solid rgb(255 255 255 / 16%);
}

.service-accordions-title {
    font-size: 30px;
    font-style: italic;
    font-weight: 500;
    line-height: 100%;
    color: var(--white-color);
    margin-top: 30px;
    margin-bottom: 25px;
}

.service-accordions-title a {
    color: var(--white-color);
}

.service-accordions-dec {
    color: var(--white-color);
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    padding-left: 20px;
    padding-right: 20px;
}

.service-accordions-button {
    margin-top: 30px;
}

.service-accordions-button .theme-btns {
    background: #2F7A77;
    border: 1px solid rgb(255 255 255 / 16%);
}

.service-accordions-button .theme-btns:hover {
    border: 1px solid transparent;
}

.service-accordions-items {
    display: flex;
    align-items: center;
    align-items: stretch;
}
@media (max-width: 767px) {
    .service-accordions-item {
            margin-bottom: 30px;
    		padding: 50px 30px;
    }
	.service-accordions-items {
		display: block;
	}
	.service-accordions-hover {
		opacity: 1;
		transform: unset;
		visibility: visible;
	}
	.service-accordions-title-normal {
    display: none;
}
	.service-accordions-item:last-child {
    margin-bottom: 0;
}
}

/*** Counter version 1 addons **/
.growhub-counter-v1-wrapper {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.growhub-counter-v1-box {
    background: #223F48;
    padding-top: 130px;
    padding-bottom: 44px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.growhub-counter-v1-wrapper .counter-timer {
    display: inline-block;
    font-size: 70px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--white-color);
    font-family: var(--heading-font);
}

.growhub-counter-v1-wrapper span.counter-symble {
    font-size: 70px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--white-color);
    font-family: var(--heading-font);
}

.growhub-counter-v1-wrapper .counter-content {
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 5px;
}

.growhub-counter-v1-box:after {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--thm-color);
    border-radius: 100px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.growhub-counter-v1-box:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.growhub-counter-v1-box>span {
    width: 25px;
    height: 25px;
    background: var(--thm-color);
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
    border-radius: 100%;
    border: 7px solid var(--white-color);
    -webkit-animation: zoomInOut 3s linear infinite;
    animation: zoomInOut 3s linear infinite;
}

/** Counter addons two **/
.growhub-counter-v2-box {
    padding: 50px;
    border: 1px solid var(--thm-color);
    border-radius: 30px;
    background: var(--white-color);
    margin-bottom: 20px;
}

.growhub-counter-v2-box .counter-item {
    display: inline-flex;
}

.growhub-counter-v2-box .counter-timer,
.growhub-counter-v2-box .counter-symble {
    font-family: var(--heading-font);
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--black-color);
}

.growhub-counter-v2-box .counter-title {
    color: var(--black-color);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.3px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--thm-color);
    margin-bottom: 14px;
}

/** Counter v3 addons **/


.growhub-counter-v3-wrapper .growhub-counter-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.growhub-counter-v3-wrapper .growhub-counter-icon {
    font-size: 45px;
    height: 90px;
    width: 90px;
    min-width: 90px;
    margin-right: 25px;
    background: #3C8280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white-color);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border: 1px solid #70A3A1;
}

.growhub-counter-v3-items-box {
    display: flex;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    align-items: center;
}

.growhub-counter-v3-items-box:last-child {
    border-right: none !important;
}

.growhub-counter-v3-wrapper .growhub-counter-icon svg {
    height: 45px;
    width: 45px;
}

.growhub-counter-v3-wrapper .growhub-count-timer {
    display: inline-block;
    color: var(--white-color);
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.08px;
}

.growhub-counter-v3-wrapper .growhub-counter-numner span {
    color: var(--white-color);
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.08px;
}

.growhub-counter-v3-wrapper .growhub-counter-title {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.growhub-counter-v3-wrapper [class*='col-']:last-child .growhub-counter-item {
    justify-content: flex-end;
}

.growhub-counter-v3-wrapper [class*='col-']:first-child .growhub-counter-item {
    justify-content: flex-start;
}

@media screen and (max-width: 991px) {
    .growhub-counter-v3-wrapper [class*='col-']:last-child .growhub-counter-item {
        justify-content: center;
    }

    .growhub-counter-v3-wrapper [class*='col-']:first-child .growhub-counter-item {
        justify-content: center;
    }
}

/** Video Button Addons **/
.growhub-video-button-box {
    text-align: center;
}

.growhub-video-button-box a {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10.5px);
}

.growhub-video-button-box a .icon {
    margin-right: 10px;
}

.growhub-video-button-box a:hover {
    background-color: var(--black-color);
    border-color: transparent;
    color: var(--white-color);
}

/** Team Addons Two **/
.growhub-team-v2-social-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.growhub-team-v2-social-wrap ul li {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
}

.growhub-team-v2-social-wrap ul li a {
    width: 45px;
    height: 45px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(33px);
    padding: 10px;
    color: var(--white-color);
}

.growhub-team-v2-social-wrap ul li a:hover {
    background-color: var(--thm-color);
    color: var(--white-color);
    border-color: transparent;
}

.growhub-team-v2-social-wrap {
    margin-top: 20px;
}

.growhub-team-v2-wrapper .team-contents {
    min-height: 530px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: flex-end;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.growhub-team-v2-wrapper .team-content-box {
    width: 100%;
}

.growhub-team-v2-wrapper .team-contents:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.growhub-team-v2-wrapper .team-contents:hover:after {

    background: hsl(177deg 79% 22%);
    mix-blend-mode: multiply;
    z-index: -1;
    opacity: .95;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


.growhub-team-v2-wrapper .team-content-box {
    transform: translate(0, 400px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: .95;
}

.growhub-team-v2-wrapper .team-contents:hover .team-content-box {
    transform: translate(0px, 0px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/** Team Member Addons **/
.growhub-team-items .team-contents {
    text-align: center;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(83, 109, 117, 0.43);
    background-color: #223F48;
    margin-bottom: 30px;
}
.growhub-team-v2-wrapper .team-contents {
    border: none;
}
.growhub-team-items .team-image {
    width: 160px;
    height: 160px;
    display: inline-block;
    margin-bottom: 20px;
}

.growhub-team-items .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.team-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.6px;
    margin: 0;
    padding-bottom: 8px;
    color: var(--white-color);
}

.team-title a {
    color: var(--white-color);
}

.team-stitle {
    color: var(--white-color);
}

/** Team Details **/
.team_details_wraper {
    padding: 41px;
    border-radius: 30px;
    background: #F7F7F7;
}

.team-info-wrapper-area {
    margin-left: 40px;
}

.team-details-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 6px;
}

.team-details-designation {
    line-height: 20px;
    margin-bottom: 20px;
    color: var(--thm-color);
}

.team-sort-dec {
    margin-bottom: 24px;
}

.team-social-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-area ul li {
    display: inline-block;
}

.team-social-area ul li a {
    height: 35px;
    width: 35px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-color);
    font-size: 14px;
    margin-right: 5px;
    border-radius: 50%;
}

.team-social-area ul li a:hover {
    color: var(--white-color);
    background: var(--thm-color);
}

.team-details-contact-area {
    display: flex;
    margin-bottom: 30px;
}

.team-details-icon {
    height: 50px;
    width: 50px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 20px;
    color: var(--thm-color);
    background-color: var(--white-color);
}

.team-details-contact-area {
    display: inline-flex;
    margin-bottom: 30px;
    width: 49%;
}

.team_details_wraper .team-datails-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.team-details-contact-text {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: var(--black-color);
}

@media (max-width: 1200px) {
    .team_details_wraper {
        padding: 100px 50px;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .team_details_wraper {
        padding: 100px 50px 60px;
    }
}

@media (max-width: 991px) {
    .team-info-wrapper-area {
        margin-left: 0px;
    }

    .team-datails-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .team_details_wraper {
        padding: 100px 25px;
    }

    .team-details-contact-area {
        width: 100%;
    }

    .team-details-contact-area:last-child {
        margin-bottom: 0;
    }
}

/** Portfolio Addons **/
.portfolio-image {
    position: relative;
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    background: var(--white-color);
    left: 0;
    right: 0;
    width: 85%;
    margin: 0 auto;
    bottom: 25px;
    padding: 25px 16px;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

.portfolio-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 0;
    margin-bottom: 0px;
}

.portfolio-cates ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-cates ul li {
    display: inline-block;
}

.portfolio-cates ul li a {
    color: #74787C;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    margin-right: 5px;
}

.portfolio-cates ul li a:hover {
    color: var(--thm-color);
}

.portfolio-cates ul li a:after {
    content: ",";
    position: absolute;
}

.portfolio-cates ul li:last-child a:after {
    content: "";
}

.portfolio-cates ul li:last-child a {
    margin-right: 0;
}

.portfolio-image img {
    border-radius: 30px;
}

.portfolio-image img {
    width: 100%;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-content:after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background: var(--thm-color);
    left: -12px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 5px -2px 0px 12px #d6e4e3;
    bottom: -15px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    transform: translate(-39px, 24px);
}

.portfolio-content:hover:after {
    transform: translate(0px, 0px);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.custom-pagination ul li a.page-numbers.current {
    background-color: var(--thm-color);
    color: var(--white-color);
}

/** Process step tab **/
.tabs-section-wrapper button {
    background: var(--white-color);
    border: 1px solid #E2E5E7;
    padding: 17px 40px;
    border-radius: 100px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--body-font);
    color: var(--thm-color);
}

.tabs-section-wrapper button.active {
    background-color: var(--thm-color);
    color: var(--white-color);
}

.tabs-section-wrapper ul li {
    margin: 0 15px;
    margin-bottom: 10px;
}

.tabs-section-wrapper ul {
    display: flex;
    justify-content: space-evenly;
    border: none;
    position: relative;
    align-items: center;
    z-index: 1;
    margin-bottom: 30px;
}

.tabs-section-wrapper ul:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #E2E5E7;
    position: absolute;
    top: auto;
    bottom: auto;
    left: 0;
    right: 0;
    z-index: -1;
}

/** Process Box **/
.progress-box-icon {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #E2E5E7;
    font-size: 59px;
    padding: 31px 0;
    background: var(--white-color);
    display: inline-block;
    margin-bottom: 30px;
    color: var(--thm-color);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.progress-box-item:hover .progress-box-icon {
    border-color: var(--thm-color);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.progress-box-item {
    text-align: center;
    border: 1px solid #E2E5E7;
    padding: 50px 30px;
    border-radius: 30px;
    background: var(--white-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-box-item:before {
    mask-image: url(../img/process-line.svg);
    -webkit-mask-image: url(../img/process-line.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 30%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: var(--thm-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.progress-box-item:hover:before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.progress-box-item:after {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 270px;
    background: rgb(0 99 95 / 50%);
    filter: blur(75px);
}

.progress-box-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
    color: var(--black-color);
}

.progress-box-item .count-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: rgba(27, 57, 66, 0.15);
    text-align: center;
    font-family: Crimson Pro;
    font-size: 34px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.34px;
}

.progress-button a {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: var(--black-color);
    display: block;
    margin-top: 12px;
}

.progress-button a i {
    margin-left: 10px;
}

.progress-button a:hover {
    color: var(--thm-color);
}

.g-0 [class^="col-"] {
    margin: 0;
    padding: 0;
}

/*** Message Box ***/
.growhub-message-box {
    display: flex;
    justify-content: flex-end;
}

.growhub-message-boxs {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 100px;
    padding-right: 100px;
    border-radius: 30px;
}

.growhub-message-box-inner {
    padding: 80px;
    max-width: 44%;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
}

.growhub-message {
    color: var(--white-color);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.4px;
}

.growhub-message-box .growhub-button {
    margin-top: 30px;
}

.download-option {
    margin-top: 40px;
}

.download-option a {
    color: var(--white-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.download-option a:hover {
    color: var(--black-color);
}

.download-option a .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--thm-color);
    border-radius: 100%;
    text-align: center;
    line-height: 44px;
    margin-left: 12px;
    font-size: 14px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;

}

.download-option a:hover .icon {
    color: var(--white-color);
    background: var(--black-color);
}

.message-author-wrap {
    display: inline-flex;
    align-items: center;
    margin-top: 35px;
}

.message-author-img {
    width: 90px;
    height: 90px;
    margin-right: 25px;
}

.message-author-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 100%;
}

.message-author-title {
    color: var(--white-color);
    font-family: Onest;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

.message-author-stitle {
    color: #000;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width: 1599px) {
    .growhub-message-box-inner {
        max-width: 50%;
    }
}
@media (max-width: 1023px) {
    .growhub-message-box-inner {
        max-width: 100%;
    }
    .growhub-message-boxs {
        padding-left: 100px;
    }
}
@media (max-width: 1023px) {
    .growhub-message-boxs{
        padding-top: 100px;
    }
}
@media (max-width: 767px) {

    .growhub-message-boxs {
        padding: 40px;
    }
    .growhub-message-box-inner {
        padding: 40px;
    }

}
@media (max-width: 500px) {

    .growhub-message-boxs {
        padding: 0px;
    }
    .growhub-message-box-inner {
        padding: 40px 30px;
    }
}
/** Blog Addons **/
.growhub-news-image {
    position: relative;
}

.growhub-blog-box {
    border-radius: 30px;
    background: #F2F3F5;
    margin-bottom: 30px;
}

.growhub-news-content {
    padding: 35px;
}

.growhub-news-image img {
    height: 340px;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.growhub-news-image span.cat-links {
    position: absolute;
    display: inline-block;
    padding: 4px 25px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--white-color);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    left: 30px;
    top: 30px;
    margin: 0;
    color: var(--thm-color);
    z-index: 1;
}

.growhub-news-image span.cat-links i {
    display: none;
}

.growhub-news-image:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(11 13 18 / 8%);
    left: 0;
    z-index: 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.growhub-news-content ul {
    margin: 0;
    padding: 0 0 6px;
    list-style: none;
}

.growhub-news-content ul li {
    display: inline-block;
    color: #74787C;
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}

.growhub-news-content ul li a {
    color: #74787C;
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.growhub-news-content ul li i {
    display: none;
}

.growhub-news-content ul li:after {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--thm-color);
    border-radius: 100%;
    right: 0;
    position: absolute;
    transform: translate(2px, 7px);
}

.growhub-news-content ul li:last-child:after {
    content: unset;
    margin: 0;
    padding: 0;
}

.growhub-news-content ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.growhub-news-content ul li a:hover {
    color: var(--thm-color);
}

.blog-one-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 20px;
}

.growhub-blog-dec {
    margin-bottom: 0px;
}

.news-button {
    margin-top: 35px;
    display: block;
}

/** Blog Two addons **/
.growhub-blog-v2 .growhub-blog-box {
    position: relative;
    min-height: 345px;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: .4s;
}

.growhub-blog-v2 .growhub-blog-box:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 27px;
    transition: .4s;
    background: #F2F5F5;
    mix-blend-mode: normal;
}

.growhub-blog-v2 .growhub-blog-box:hover:after {
    background: var(--thm-color);
    mix-blend-mode: multiply;
    transition: .4s;
}

.growhub-blog-v2 .growhub-news-content {
    position: absolute;
    display: flex;
    align-content: center;
    top: 0;
    bottom: 0;
    flex-wrap: wrap;
    padding: 80px;
}

.growhub-blog-v2 .news-button a {
    background: transparent;
    display: inline-flex;
    align-items: center;
    padding: 0;
    flex-direction: row;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--thm-color);
    font-size: 16px;
}

.growhub-blog-v2 .news-button a .icon {
    width: 35px;
    height: 35px;
    background: var(--thm-color);
    border-radius: 100%;
    padding: 11px 3px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    margin-right: 15px;
    color: var(--white-color);
}

.growhub-blog-v2 .news-button a .icon i {
    margin: 0;
    top: 2px;
}

.growhub-blog-v2 .growhub-blog-box:hover .growhub-news-content ul li,
.growhub-blog-v2 .growhub-blog-box:hover .growhub-news-content ul li a,
.growhub-blog-v2 .growhub-blog-box:hover .blog-one-title a,
.growhub-blog-v2 .growhub-blog-box:hover .news-button a {
    color: var(--white-color);
}

.growhub-blog-v2 .growhub-news-content ul li a {
    font-size: inherit;
}

.growhub-blog-v2 .growhub-news-content ul li:after {
    content: '';
    width: 1px;
    height: 75%;
    background: var(--thm-color);
    border-radius: 100%;
    right: 0;
    position: absolute;
    top: 2px;
    transform: rotate(14deg);
}

.growhub-blog-v2 .growhub-blog-box:hover .growhub-news-content ul li:after {
    background-color: var(--white-color);
}

.growhub-blog-v2 .growhub-news-content ul li:last-child:after {
    content: unset;
}

.growhub-blog-v2 .growhub-news-content ul li {
    margin-right: 10px;
    padding-right: 10px;
}
@media (max-width: 767px) {
    .growhub-blog-v2 .growhub-news-content {
        padding: 40px;
    }
}
/** Slider addons **/
.growhub-slider-content-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.growhub-slider-content {
    max-width: 50%;
    padding: 130px;
    background: rgb(12 100 96 / 94%);
    border-radius: 150px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

.growhub-slider-item {
    padding-top: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.growhub-slider-small-title {
    color: var(--white-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.growhub-slider-title {
    color: var(--white-color);
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
    margin-bottom: 40px;
}

.growhub-slider-description {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    padding-right: 111px;
    margin-bottom: 50px;
}

.slider-button .them-btns {
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6.5px);
}

.slider-button .theme-btns {
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6.5px);
}

.slider-button .theme-btns:hover {
    background: var(--black-color);
    border-color: transparent;
}

.growhub-slider-content-inner {
    z-index: 1111;
    position: relative;
}

.shape-item {
    position: absolute;
    z-index: 0;
}

.slider-arrow-wrapper {
    position: absolute;
    bottom: 50px;
    left: 80px;
}

.slider-arrow-wrapper .slick-arrow {
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(3.5px);
    margin-right: 14px;
}

.slider-arrow-wrapper .slick-arrow:hover {
    background: var(--thm-color);
}

/** Slider Tabs ***/
.vertical.carousel .carousel-item {
    overflow: hidden;
}

.vertical.carousel .carousel-item-next:not(.carousel-item-start),
.vertical.carousel .active.carousel-item-end {
    transform: translateY(100%);
}

.vertical.carousel .carousel-item-prev:not(.carousel-item-end),
.vertical.carousel .active.carousel-item-start {
    transform: translateY(-100%);
}

.vertical.carousel .carousel-indicators {
    top: 0;
    left: unset;
    margin-left: unset !important;
    flex-direction: column;
}

.vertical.carousel .carousel-control-next {
    top: unset;
    bottom: 0;
}

.growhub-slider-tab-box .carousel-indicators [data-bs-target] {
    width: auto;
    height: auto;
    text-indent: unset;
    cursor: pointer;
    transition: opacity .6s ease;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(22px);
    margin: 11px 0;
    color: var(--white-color);
    font-family: Onest;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 13px 25px;
    opacity: 1;
}

.growhub-slider-tab-contents-wrap {
    height: 960px;
    display: flex;
    align-items: center;
}

.growhub-slider-tab-box-inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

.growhub-slider-tab-content-wrap {
    width: 50%;
}

.growhub-slider-tab-stitle {
    color: var(--white-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.growhub-slider-tab-title {
    color: var(--white-color);
    font-size: 70px;
    font-style: normal;
    font-weight: 500;
    line-height: 74px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.growhub-slider-tab-button {
    display: inline-flex;
    align-items: center;
}

.growhub-slider-button-two a {
    margin-left: 30px;
    color: var(--white-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.growhub-slider-button-two a:hover {
    color: var(--thm-color);
}

.growhub-slider-tab-box .carousel-indicators [data-bs-target].active {
    background: var(--white-color);
    color: var(--thm-color);
}
@media (max-width: 1399px) {
    .growhub-slider-tab-content-wrap {
        width: 65%;
    }
    .growhub-slider-content{
        padding: 100px;
    }
    .growhub-slider-description{
        padding-right: 50px;
    }
}

@media (max-width: 767px) {
    .growhub-slider-tab-content-wrap {
        width: 100%;
    }
    .growhub-slider-content {
        padding: 100px 30px 200px;
    }

.slider-arrow-wrapper {
    left: 30px;
}
.growhub-slider-description{
    padding-right: 0px;
}
.growhub-slider-item{
    padding-top:100px;
}
    
}
/** Icon Box Addons */
.growhub-icon-box-inner {
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin-bottom: 20px;
}

.growhub-icon-box-inner:hover {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.growhub-box-icon {
    width: 105px;
    background: var(--white-color);
    height: 105px;
    border-radius: 100%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 43px;
    margin-right: 20px;
    border: 1px solid var(--thm-color);
    color: var(--thm-color);
}

.growhub-icon-box-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.growhub-icon-box-dec {
    color: #74787C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
}

/*************************************
******** SKILLBAR BOX CSS  **********
*************************************/

.growhub-skills-wrapper .skillbar-item {
    margin-bottom: 23px;
    display: inline-block;
    width: 100%;
}

.growhub-skills-wrapper .skillbar-item .skill-title {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 17px;
    font-weight: 500;
    color: var(--black-color);
    text-transform: uppercase;
}

.growhub-skills-wrapper .skillbar-item .skillbar {
    height: 12px;
    position: relative;
    text-align: right;
    border-radius: 100px;
    padding: 3px 6px;
    background: var(--white-color);
}

.growhub-skills-wrapper .skillbar-item .skillbar .skill-percent-count-wrap {
    position: absolute;
    right: 0;
    top: -37px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}

.growhub-skills-wrapper .skillbar-item .skillbar .count-bar {
    background: var(--thm-color);
    height: 100%;
    position: relative;
    text-align: right;
    position: relative;
    text-align: right;
    padding-right: 0;
    border-radius: 10px;
    overflow: visible !important;
    width: 0;
}

/** Service V2 **/
.growhub-service-v2-item {
    background: var(--white-color);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #E2E5E7;
    z-index: 1;
    overflow: hidden;
    position: relative;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.growhub-service-v2-item:hover {
    background: var(--black-color);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.growhub-service-v2-icon {
    width: 120px;
    height: 120px;
    background: var(--white-color);
    border-radius: 100%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    border: 1px solid #E2E5E7;
    color: var(--thm-color);
    margin-bottom: 80px;
}

.growhub-serive-v2-stitle {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.growhub-serive-v2-title {
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.34px;
    margin-bottom: 20px;
}

.growhub-serive-v2-dec {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.growhub-serive-v2-button .theme-button {
    margin-top: 35px;
    display: inline-flex;
    flex-direction: row;
}

.growhub-serive-v2-button .theme-button:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

.growhub-service-v2-item:after {
    content: "";
    border-radius: 69px;
    background: linear-gradient(180deg, var(--black-color) 8.61%, rgba(12, 100, 96, 0.29) 100%);
    width: 32%;
    height: 54%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transform: rotate(-47deg) translate(55px, -501px);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.growhub-service-v2-item:hover:after {
    transform: rotate(-47deg) translate(55px, -65px);
}

.growhub-service-v2-item:hover .growhub-serive-v2-stitle,
.growhub-service-v2-item:hover .growhub-serive-v2-dec {
    color: #94ADB5;
}

.growhub-service-v2-item:hover .growhub-serive-v2-title,
.growhub-service-v2-item:hover .growhub-serive-v2-title a {
    color: var(--white-color);
}
@media (max-width: 767px) {
    .growhub-service-v2-item {
        padding: 40px 30px;
    }
}
/** Pricing Table addons **/
.growhub-procing-box {
    border-radius: 30px;
    background: #F8F8F8;
    padding: 60px;
    margin-bottom: 20px;
}

.growhub-pricing-amount {
    width: 137px;
    height: 137px;
    background: var(--white-color);
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    border: 1px solid #E2E2E2;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: 45px;
}

.growhub-pricing-price-box span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    text-align: center;
}

.growhub-table-price {
    font-family: var(--heading-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.8px;
    color: var(--black-color);
}

.growhub-price-label {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.growhub-price-title {
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E2E2E2;
}

.growhub-pricing-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.growhub-pricing-content ul li {
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    color: var(--black-color);
    display: inline-flex;
    align-content: center;
    flex-wrap: wrap;
}

.growhub-pricing-content ul li a {
    color: var(--black-color);
}

.growhub-pricing-content ul li a:hover {
    color: var(--thm-color);
}

.growhub-pricing-content ul li .licon {
    margin-right: 11px;
}

.growhub-pricing-button {
    margin-top: 30px;
}
@media (max-width: 767px) {
    .growhub-procing-box {
        padding: 40px 30px;
    }
}
/*** tab addons **/
.growhub-tab-box {
    display: flex;
    justify-content: flex-end;
}

.growhub-tab-box ul {
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background: #3B555C;
}

.growhub-tabs-wrapper ul button {
    background: transparent;
    border: none;
    padding: 11px 30px;
    border-radius: 100px;
    color: var(--white-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: .4s;
}

.growhub-tabs-wrapper ul button.active {
    background: var(--thm-color);
}


/** Brand Logo **/

.brand-logo-img img {
    border-radius: 15px;
    border: 1px solid #E2E5E7;
    background: var(--white-color);
    box-shadow: 1px 0px 16px 0px rgb(31 63 73 / 6%);
}

.brand-logo-img {
    padding: 49px 0;
}

/** FAQ addons **/
.growhub-accordion-wraper .accordion-item button.accordion-button:focus {
    border: none;
    outline: transparent;
    box-shadow: none;
}

.growhub-accordion-wraper .accordion-item {
    margin-bottom: 30px;
    border: 1px solid #E2E5E7;
    border-radius: 30px;
}

.growhub-accordion-wraper .accordion-item button.accordion-button {
    border: none !important;
    background: transparent;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--black-color);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.growhub-accordion-wraper .accordion-body {
    padding-top: 0;
}

.growhub-accordion-wraper .accordion-item button.accordion-button span {
    color: var(--thm-color);
    margin-right: 5px;
}

.growhub-accordion-wraper .accordion-item .accordion-collapse {
    border: none !important;
}

.growhub-accordion-wraper .accordion-button::after {
    content: unset;
}

.growhub-accordion-wraper .accordion-item button.accordion-button .faq-arrow {
    transform: rotate(-180deg);
}

.growhub-accordion-wraper .accordion-item button.accordion-button.collapsed .faq-arrow {
    transform: rotate(0deg);
}

/** Testimonial addons **/
/*====================================================
  ============= TESTIMONIAL  STYLE START  ==============
  ====================================================*/

.testimonial-item-box {
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-radius: 30px;
    background: var(--white-color);
    box-shadow: 0px 4px 90px 0px rgba(228, 220, 208, 0.33);
}

.testimonial-item-content {
    color: #74787C;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F2EFEA;
}


.testimonial-info .image-wrap {
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
}

.testimonial-info .image-wrap img {
    border-radius: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 5px;
}

.testimonial-designation {
    color: var(--thm-color);
}

.testimonial-item-box-inner {
    padding: 50px;
    margin-bottom: 30px;
}

.testimonial-author-ratings {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-info {
    display: flex;
    align-items: center;
}

.testimonial-rating-box {
    background: #F7F5F2;
    padding: 10px 20px;
    border-radius: 100px;
    color: #FFB422;
}

.testimonial-rating-box i {
    margin: 0px 2px;
}

/*** contact info addons **/
.growhub-contact-info-box-wrapper .growhub-contact-info-inner {
    background: var(--black-color);
    padding: 40px;
    border-radius: 30px;
}

.info-title {
    color: var(--white-color);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

.info-title-content {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.growhub-contact-info-box-wrapper .growhub-contact-titles {
    margin-bottom: 30px;
}

.growhub-contact-info-box-wrapper .contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.growhub-contact-info-box-wrapper .contact-info-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-right: 15px;
    border: 1px solid var(--white-color);
    font-size: 16px;
    color: var(--white-color);
}

.contact-info-label {
    color: var(--white-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

.contact-info-dec,
.contact-info-dec a {
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.contact-info-dec a:hover {
    color: var(--thm-color);
}

.growhub-contact-info-box-wrapper .contact-info-item:last-child {
    margin-bottom: 0;
}
.growhub-contact-info-box-wrapper .contact-info-item:last-child {
    border-bottom: none !important;
}
.info-sub-title {
    color: var(--thm-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
@media (max-width: 600px) {
    .testimonial-rating-box{
        display: none;
    }
}
/*** service contact form **/
.growhub-contact-form input[type="text"],
.growhub-contact-form input[type="email"],
.growhub-contact-form input[type="date"],
.growhub-contact-form select {
    border-radius: 100px;
    border: 1px solid #E6E6E6;
    background: var(--white-color);
    padding: 12px 25px;
    min-height: 50px;
    margin-bottom: 20px;
    color: #74787C;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

.growhub-contact-form textarea {
    border-radius: 20px;
    border: 1px solid #E6E6E6;
    background: var(--white-color);
    padding: 12px 25px;
    min-height: 50px;
    margin-bottom: 20px;
    color: #74787C;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

.contact-input-button input[type="submit"] {
    width: 100%;
    text-align: center;
    display: block;
}

.growhub-contact-form .contact-input.name>span:after {
    content: "\f007";
}

.growhub-contact-form .contact-input.email>span:after {
    content: "\f0e0";
}

.growhub-contact-form .contact-input.time>span:after {
    content: "\f017";
}

.growhub-contact-form .contact-input.message>span:after {
    content: "\f075";
}

.growhub-contact-form .contact-input.select>span:after {
    content: "\f078";
    font-weight: 600;
}

.contact-input.select select,
.contact-input.time select,
.contact-input.date input {
    appearance: none;
}

.growhub-contact-form .contact-input>span {
    position: relative;
}

.growhub-contact-form .contact-input span:after {
    font-size: 16px;
    position: absolute;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    padding: 11px 20px;
    font-weight: 400;
}

.contact-form-for-services.growhub-contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(46%) sepia(11%) saturate(135%) hue-rotate(169deg) brightness(100%) contrast(94%);
}

.contact-form-for-services-two.growhub-contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(27%) sepia(91%) saturate(410%) hue-rotate(128deg) brightness(96%) contrast(94%);
    margin-right: 7px;
}

.contact-form-for-services-two.growhub-contact-form .contact-input span:after {
    right: auto;
    left: 0;
    color: var(--thm-color);
    margin-top: 1px;
}

.contact-form-for-services-two.growhub-contact-form .contact-input span input,
.contact-form-for-services-two.growhub-contact-form .contact-input span select,
.contact-form-for-services-two.growhub-contact-form .contact-input span textarea {
    padding-left: 42px;
}

.contact-form-for-services-two.growhub-contact-form .contact-input span input[type="date"] {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
}

/** Portfolio details info **/
/** Portfolio details info **/
.growhub-portfolio-info-img img {
    border-radius: 30px;
    margin-bottom: 80px;
}

.growhub-portfolio-info-category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.growhub-portfolio-info-category ul li {
    display: inline-block;
}

.growhub-portfolio-info-category ul li a {
    text-transform: uppercase;
    position: relative;
    margin-right: 5px;
    color: #74787C;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.7px;
}

.growhub-portfolio-info-category ul li a:after {
    content: ",";
    position: absolute;
}

.growhub-portfolio-info-category ul li:last-child a:after {
    content: "";
}

.growhub-portfolio-info-category ul li a:hover {
    color: var(--thm-color);
}

.growhub-portfolio-info-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 40px;
}


.growhub-portfolio-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-info-icon {
    width: 70px;
    height: 70px;
    display: flex;
    border-radius: 100px;
    background: rgba(12, 100, 96, 0.10);
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-right: 15px;
}

.portfolio-info-stitle {
    color: #74787C;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.grohub-portfolio-info-item:last-child {
    border-right: none;
}

.portfolio-info-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    color: var(--black-color);
}

.grohub-portfolio-info-items {
    border-top: 1px solid #E5EAF3;
    border-bottom: 1px solid #E5EAF3;
}

.portfolio-info-content {
    width: 54%;
}

.grohub-portfolio-info-items.row {
    margin: 0;
}

.grohub-portfolio-info-items .item-list {
    display: flex;
    padding: 40px 0;
    border-right: 1px solid #E5EAF3;
    justify-content: center;
}

.grohub-portfolio-info-items .item-list:last-child {
    border-right: none !important;
}


/** Elemetor menu **/
.elementor-widget-wp-widget-nav_menu .menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.elementor-widget-wp-widget-nav_menu .elementor-widget-container {
    padding: 40px;
    border-radius: 30px;
    background: #F5F5F5;
}
 
@media (max-width: 500px) {
    .elementor-widget-wp-widget-nav_menu .elementor-widget-container {
        padding: 30px;
    }
}
.elementor-widget-wp-widget-nav_menu .elementor-widget-container h5 {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 22px;
}


.elementor-widget-wp-widget-nav_menu .menu li a {
    display: block;
    border-radius: 100px;
    background: var(--white-color);
    padding: 11px 25px;
    color: #74787C;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.elementor-widget-wp-widget-nav_menu .menu li:last-child a {
    margin-bottom: 0;
}

.elementor-widget-wp-widget-nav_menu .menu li a:after {
    content: "\f061";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    font-size: 90%;
    float: right;
    line-height: 22px;
}

.elementor-widget-wp-widget-nav_menu .menu li a:hover,.elementor-widget-wp-widget-nav_menu .menu li.current-menu-item a,.elementor-widget-wp-widget-nav_menu .menu li.current_page_item a {
    background: var(--thm-color);
    color: var(--white-color);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.contact-input-button button i {
    margin-left: 10px;
}
.wpcf7-spinner {
    position: absolute;
}
@-webkit-keyframes zoomInOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes zoomInOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-webkit-keyframes zoomInOutTwo {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomInOutTwo {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.25);
        transform: scale(0.25);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@media (max-width: 1599px) {
    .header-contact-item {
        padding-right: 15px;
        margin-right: 13px;
    }
}

@media (max-width: 1410px) {
    .button.header-cta-button {
        display: none;
    }
}

@media (max-width: 1280px) {
    .header-search {
        display: none;
    }
}
@media (max-width: 1050px) {
    .header-two .main-menu>ul>li {
		margin: 0 12px;
	}
}

@media (max-width: 1024px) {
    .hero-banner-box-wrapper {
        width: 100%;
    }

    .hero-banner-box {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media (max-width: 991px) {

    .header-contact-wrapper,
    .header-search,
    .header-canva-wrapper {
        display: none;
    }

    .header-main-center,
    .header-working-time {
        border-color: transparent;
    }

    .header-main-center .navbar {
        justify-content: flex-end;
    }

    .main-header {
        padding-top: 10px;
    	padding-bottom: 10px;
    }

    .header-three .main-header {
        padding-top: 10px;
    	padding-bottom: 10px;
    }

    .header-three .header-contact-item:last-child,
    .header-two .header-contact-item:last-child {
        display: none;
    }

    .hero-banner-box-wrapper {
        width: 100%;
    }

    .hero-banner-box {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media (min-width: 768px ) and (max-width: 991px) {
    .header-working-time{
        display: none;
    }
}
@media (max-width: 767px) {
    .hero-banner-box-wrapper {
        width: 100%;
    }

    .hero-banner-box {
        padding-right: 10px;
        padding-left: 10px;
    }

    .header-top-box {
        display: block;
    }

    .header-message {
        text-align: center;
    }

    .header-top-right-info {
        flex-direction: column;
        align-items: center;
    }

    .header-social-info {
        margin-left: 0px;
    }

    .header-contact-wrapper,
    .header-search,
    .header-canva-wrapper {
        display: none;
    }

    .header-main-center,
    .header-working-time {
        border-color: transparent;
    }

    .header-three .header-top-left,
    .header-two .header-top-left {
        display: none;
    }

    .header-three .header-social-info {
        border-left: none;
        padding-left: 0;
    }

    .header-three-contact-wrapper {
        display: none;
    }

    .header-two .header-main-wrapper .main-navigation {
        padding-right: 0;
    }
    .vertical.carousel .carousel-indicators {
        top: unset;
        left: 0;
        position: absolute;
        bottom: 0;
        margin: 0;
        padding: 15px;
        right: 0;
    }
}

@media (max-width: 500px) {
    .button-wrapper {
        display: block;
    }

    .hero-numbers {
        margin-left: 0;
        margin-top: 30px;
    }
    .growhub-slider-tab-button {
        display: block;
        width: 100%;
    }
}