/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: 'Overpass', sans-serif;
    --thm-font-nunito: 'Nunito', sans-serif;
    --thm-gray: #242425;
    --thm-gray-rgb: 36, 36, 37;
    --thm-primary: #7A4282;
    --thm-primary-rgb: 122, 66, 130;
    --thm-secondary: #FBAE17;
    --thm-secondary-rgb: 251, 174, 23;   
    --thm-black: #282828;
    --thm-black-rgb: 40, 40, 28;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-border-radius: 10px;
}


@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?oy2viv');
  src:  url('../fonts/icomoon.eot?oy2viv#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?oy2viv') format('truetype'),
    url('../fonts/icomoon.woff?oy2viv') format('woff'),
    url('../fonts/icomoon.svg?oy2viv#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-fz_voice:before {
  content: "\e900";
  color: #7b4381;
}
.icon-fz_table_ordering:before {
  content: "\e902";
  color: #7b4381;
}
.icon-fz_audio_dish:before {
  content: "\e903";
  color: #7b4381;
}
.icon-fz_whatsapp:before {
  content: "\e904";
  color: #7b4381;
}
.icon-fz_prices:before {
  content: "\e905";
  color: #7b4381;
}
.icon-fz_pay:before {
  content: "\e901";
  color: #7b4381;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    margin: 0;
    font-family: var(--thm-font-nunito);
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::placeholder {
    color: inherit;
    opacity: 1;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.bg-foodzapp-primary{
	 background-color: var(--thm-primary) !important;
}
.tc-white{
	color: var(--thm-base) !important;
}

.tc-primary{
	color: var(--thm-primary) !important;
}

.tc-secondary{
	color: var(--thm-secondary) !important;
}

.tc-black{
	color: var(--thm-black) !important;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}


.thm-btn-yellow {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    background-color: transparent;
    font-size: 16px;
    padding: 16px 40px 10px;
    border-radius: 30px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;
}

.thm-btn-yellow::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-image: -moz-linear-gradient(86deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(86deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(86deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    transform: scale(2, 2);
    -webkit-transform-origin: left center;
    transform-origin: right center;
    transition: transform 500ms linear;
    transition-timing-function: ease-out;
    z-index: -1;
}

.thm-btn-yellow:hover {
    color: var(--thm-base);
    background-color: var(--thm-secondary);
}

.thm-btn-yellow:hover:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}




.thm-btn {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    background-color: transparent;
    font-size: 16px;
    padding: 16px 40px 10px;
    border-radius: 30px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;
}

.thm-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-image: -moz-linear-gradient(86deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(86deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(86deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    transform: scale(2, 2);
    -webkit-transform-origin: left center;
    transform-origin: right center;
    transition: transform 500ms linear;
    transition-timing-function: ease-out;
    z-index: -1;
}

.thm-btn:hover {
    color: var(--thm-base);
    background-color: var(--thm-primary);
}

.thm-btn:hover:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.thm-btn-two {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    background-image: -moz-linear-gradient(146deg, rgb(122, 66, 130) 0%, rgb(122, 66, 130) 100%);
    background-image: -webkit-linear-gradient(146deg, rgb(122, 66, 130) 0%, rgb(122, 66, 130) 100%);
    background-image: -ms-linear-gradient(146deg, rgb(122, 66, 130) 0%, rgb(122, 66, 130) 100%);
    font-size: 20px;
    padding: 18px 45px 14px;
    transition: all 500ms ease;
    z-index: 1;
       border-radius: 50px;
}

.thm-btn-two:hover {
    color: var(--thm-base);
        border-radius: 50px;
}

.thm-btn-two:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-secondary);
    transition: all 500ms ease;
    transform: scaleX(0);
    z-index: -1;
     border-radius: 50px;
}

.thm-btn-two:hover:before {
    transform: scaleX(1);
}

.section-title {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.section-title__tagline {
    display: block;
    color: var(--thm-primary);
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 11px;
}

.section-title__title {
    margin: 0;
    font-weight: 700;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 55px;
    font-family: var(--thm-font-nunito);
}

.section-title__bg {
    font-size: 272px;
    color: #feefeb;
    font-weight: 700;
    line-height: 272px;
    transform: rotate(-90deg);
    z-index: -1;
    position: absolute;
    top: -110px;
    left: 0;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}


.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--thm-secondary);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    background: transparent;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
}

.main-menu {
    position: relative;
    padding: 0 100px;
    z-index: 91;
}

.main-menu-wrapper {
    position: relative;
    display: block;
}

.main-menu-wrapper__left {
    position: relative;
    display: flex;
    float: left;
    align-items: center;
}

.main-menu-wrapper__logo {
    position: relative;
    display: block;
    padding: 10px 0 10px;
}
.main-menu-wrapper__logo img.logo{
height: 90px;	
	
}
.main-menu-wrapper__side-content-icon {
    margin-right: 25px;
    position: relative;
    top: 0px;
}



.main-menu-wrapper__right {
    position: relative;
    display: block;
    float: right;
}

.main-menu-wrapper__main-menu {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__cart-and-search {
    position: relative;
    display: block;
    float: left;
    padding: 98px 0 24px;
    margin-left: 45px;
}

.main-menu-wrapper__cart {
    position: relative;
    display: inline-block;
    font-size: 18px;
    margin-right: 30px;
    transition: all 500ms ease;
}

.main-menu-wrapper__cart:hover {
    color: var(--thm-primary);
}

.main-menu-wrapper__cart-count {
    position: absolute;
    top: -17px;
    right: -16px;
    height: 22px;
    width: 22px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-base);
    display: inline-block;
    line-height: 25px;
    text-align: center;
    font-size: 16px;
}

.main-menu-wrapper__search {
    position: relative;
    display: inline-block;
    font-size: 18px;
    transition: all 500ms ease;
}

.main-menu-wrapper__search:hover {
    color: var(--thm-primary);
}



.stricky-header.main-menu {
    padding: 0 100px;
    background-color: var(--thm-base);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    padding-top: 96px;
    padding-bottom: 26px;
    position: relative;
}

.stricky-header .main-menu__list>li {
    padding-top: 31px;
    padding-bottom: 26px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 30px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    position: relative;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li>a::before,



.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-primary);
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scaleY(1) translateX(-50%);
}

.main-menu .main-menu__list>li.current>a::before {
    background-color: var(--thm-primary);
}

.main-menu .main-menu__list>li:hover>a::before {
    background-color: var(--thm-primary);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
    border-top: 1px solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: var(--thm-primary);
    color: #fff;
}

.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
    display: none;
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--thm-primary);
    cursor: pointer;
    transition: 500ms;
    margin-right: 20px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

.stricky-header .main-menu-wrapper__logo {
    padding: 10px 0 10px;
}

.stricky-header .main-menu-wrapper__side-content-icon {
    top: 0px;
}

.stricky-header .main-menu-wrapper__cart-and-search {
    padding: 31px 0 26px;
}



/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    position: relative;
    display: block;
    background-color: var(--thm-base);
}





.main-menu-two-wrapper__left {
    position: relative;
    display: block;
    float: left;
}

.main-menu-two-wrapper__logo {
    position: relative;
    display: block;
    padding: 78px 0 17px;
}



.main-menu-two-wrapper__right {
    position: relative;
    display: block;
    float: right;
}

.main-menu-two-wrapper__main-menu {
    position: relative;
    display: block;
    float: left;
}

.main-menu-two-wrapper__btn-box {
    position: relative;
    display: block;
    float: left;
    margin-left: 50px;
    padding: 75px 0 15px;
}

.main-menu-two-wrapper__btn {
    position: relative;
    font-size: 20px;
    color: #9778fa;
    display: inline-block;
    border: 2px solid #9778fa;
    padding: 16px 42px 12px;
    border-radius: 30px;
    transition: all 500ms ease;
    z-index: 1;
}

.main-menu-two-wrapper__btn:hover {
    color: var(--thm-base);
    border: 2px solid var(--thm-primary);
}

.main-menu-two-wrapper__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-image: -moz-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    background-image: -webkit-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    background-image: -ms-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    transition: all 500ms ease;
    transform: scaleX(0);
    z-index: -1;
}

.main-menu-two-wrapper__btn:hover:before {
    transform: scaleX(1);
}


.stricky-header .main-menu-two-wrapper__logo {
    padding: 15px 0 15px;
}

.stricky-header .main-menu-two-wrapper__btn-box {
    padding: 12px 0 13px;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/






.main-menu-three-wrapper__left {
    position: relative;
    display: block;
    float: left;
}

.main-menu-three-wrapper__logo {
    position: relative;
    display: inline-block;
    float: left;
    padding: 85px 0 24px;
}





.main-menu-three-wrapper__main-menu {
    position: relative;
    display: block;
    float: left;
    margin-left: 165px;
}

.main-menu-three-wrapper__right {
    position: relative;
    display: flex;
    align-items: center;
    float: right;
    padding: 30px 0 10px;
}



.main-menu-three-wrapper__btn {
    background-image: inherit;
    border: 1px solid #f2f2f2;
    color: var(--thm-primary);
    background-color: var(--thm-base);
    padding: 17px 45px 13px;
}

.main-menu-three-wrapper__btn:hover {
    border: 1px solid transparent;
}

.main-menu-three-wrapper__cart-box {
    position: relative;
    margin-left: 35px;
    margin-right: 40px;
}

.main-menu-three-wrapper__cart-box a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    transition: all 500ms ease;
}

.main-menu-three-wrapper__cart-box a:hover {
    color: var(--thm-primary);
}








.stricky-header .main-menu-three-wrapper__logo {
    padding: 22px 0 22px;
}

.stricky-header .main-menu-three-wrapper__right {
    padding: 25px 0 10px
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/


.main-menu-four .main-menu-three-wrapper__logo {
    padding: 78px 0 17px;
}

.main-menu-four .main-menu-three-wrapper__main-menu {
    margin-left: 220px;
}

.main-menu-four-wrapper__btn {
    background-image: inherit;
    border: 2px solid var(--thm-black);
    color: var(--thm-black);
    padding: 16px 45px 12px;
}

.main-menu-four .main-menu-three-wrapper__right {
    padding: 76px 0 14px;
}

.main-menu-four-wrapper__btn:hover {
    border: 2px solid transparent;
    color: var(--thm-base);

}

.stricky-header.main-menu-four .main-menu-three-wrapper__logo {
    padding: 15px 0 15px;
}

.stricky-header.main-menu-four .main-menu-three-wrapper__right {
    padding: 12px 0 13px;
}

/*--------------------------------------------------------------
# Main Menu Five
--------------------------------------------------------------*/
.main-header-five {
    position: relative;
    display: block;
    border-bottom: 1px solid #eaeaea;
}

.main-menu-five__side-content-icon {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 15px 25.981px 34px 0px rgb(186, 185, 185, .35);
    width: 54px;
    height: 54px;
    margin-left: 35px;
    text-align: center;
    line-height: 54px;
}



.main-menu-five .main-menu__list>li {
    padding-top: 96px;
    padding-bottom: 66px;
}

.main-menu-five .main-menu-wrapper__logo {
    padding: 78px 0 57px;
}

.main-menu-five .main-menu-wrapper__cart-and-search {
    padding: 82px 0 54px;
}


.stricky-header.main-menu-five .main-menu-wrapper__logo {
    padding: 15px 0 15px;
}

.stricky-header.main-menu-five .main-menu__list>li {
    padding-top: 31px;
    padding-bottom: 26px;
}

.stricky-header.main-menu-five .main-menu-wrapper__cart-and-search {
    padding: 16px 0 15px;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

/*--------------------------------------------------------------
#     Zoom In Out
--------------------------------------------------------------*/
.zoominout {
    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: zoomInOut;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: zoomInOut;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    -ms-animation-name: zoomInOut;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;
    -o-animation-name: zoomInOut;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7);
        transform: rotate(0deg) scale(0.7);
        opacity: 0;
    }

    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(360deg) scale(0.7);
        transform: rotate(360deg) scale(0.7);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
    Float Bob Y Animation Css
--------------------------------------------------------------*/
@-webkit-keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*--------------------------------------------------------------
    Rotateme Css
--------------------------------------------------------------*/
@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
    }
}



@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.rotate-me {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: rotateme;
    -moz-animation-duration: 24s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: rotateme;
    -ms-animation-duration: 24s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: rotateme;
    -o-animation-duration: 24s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}



@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}


/*--------------------------------------------------------------
    Animation 1
--------------------------------------------------------------*/
***/ .animation1 {
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

@-webkit-keyframes animation1 {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes animation1 {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}















/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--thm-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--thm-base);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-secondary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-primary);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-primary);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
}

.search-popup__content .thm-btn:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.search-popup__content .thm-btn i {
    margin: 0;
}


/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
    position: relative;
    display: block;
   
}

.banner-one__left {
    position: relative;
    display: block;
    margin-right: -8px;
}

.banner-one__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    font-family: var(--thm-font-nunito);
    margin-bottom: 31px;
}
h2.banner-one__title{
	 color: var(--thm-base);
}

.banner-one__text {
    font-size: 22px;
    color: var(--thm-gray);
    margin: 0;
    opacity: .8;
    padding-bottom: 52px;
    line-height: 38px;
}



.banner-one__right {
    position: relative;
    display: block;
}

.banner-one__img {
    position: relative;
    display: block;
    margin-right: -350px;
    margin-left: 15px;
}

.banner-one__img img {
    width: 100%;
}

.banner-one-shape-1 {
    position: absolute;
    left: 35px;
    bottom: 430px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(186, 246, 250);
    border-radius: 50%;
    background-color: rgba(186, 246, 250, 0);
    width: 13px;
    height: 13px;
}
.banner-one-shape-2 img{
	    max-width: 100%;
    transform: rotate(358deg);

}
.banner-one-shape-2 {
    position: absolute;
    right: 0;
       top: 30px;
}

.appBtns img {
    width: 100%;
}

.banner-one-shape-3 {
    position: absolute;
    top: 0;
    left: 730px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(186, 246, 250);
    border-radius: 50%;
    background-color: rgba(186, 246, 250, 0);
    width: 13px;
    height: 13px;
}

.banner-one-shape-4 {
    position: absolute;
    right: 720px;
    top: 125px;
}

.banner-one-shape-5 {
    position: absolute;
    left: 890px;
    bottom: 142px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(255, 96, 119);
    border-radius: 50%;
    background-color: rgba(186, 246, 250, 0);
    width: 13px;
    height: 13px;
}

.banner-one-shape-6 {
    position: absolute;
    right: 345px;
    bottom: 179px;
    border-radius: 50%;
    background-color: rgb(186, 246, 250);
    width: 15px;
    height: 15px;
}
.banner-one-shape-7{
	    position: absolute;
	    right:-20%;
	    bottom:50px;
	        z-index: 2;
}
.banner-one-shape-7 img{
    width: 80%;
    height:80%;		
}
.banner-one-shape-happy {
    position: absolute;
    left: -5%;
    bottom: -1%;
    z-index: 2;
}
.banner-one-shape-happy img{
    width: 70%;
    height:70%;	
}

.banner-one-shape-happy-quote{
position: absolute;
    right: 180px;
    bottom: 200px;	
        z-index: 2;
}
.banner-one-shape-happy-share-it{
position: absolute;
    left: 250px;
    bottom: 200px;
        z-index: 2;

}
.banner-one-shape-happy-share-it img.shareit{
	
    animation: beat .50s infinite alternate;	
}
@keyframes beat{
	to { transform: scale(1.2); }
}

.banner-one-big-text {
    position: absolute;
    left: -275px;
    top: 306px;
    transform: rotate(-90deg);
}

.banner-one-big-text span {
    font-size: 272px;
    color: #f7f7f7;
    line-height: 282px;
    font-weight: 700;
}

/*--------------------------------------------------------------
# About Agency
--------------------------------------------------------------*/
.about-agency {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center top;
}

.about-foodzapp__content {
    display: block;

}

.about-foodzapp__warpper__1{
	
	    padding: 210px 50px;
}
.about-foodzapp__warpper{
	
	    padding: 210px 150px;
}

.about-foodzapp__left {

    display: block;

}

.about-foodzapp__content .section-title__title {
    margin: 0;
    font-weight: 700;
    color: var(--thm-base);
    font-size: 50px;
    line-height: 55px;
    font-family: var(--thm-font-nunito);
}

.AppContent .app-services__single {
    border-radius: var(--thm-border-radius);
    background-color: transparent;
    box-shadow: 0px 0px 30px 0px rgb(186, 184, 191, .35);
    text-align: center;
    padding: 20px 20px 20px;
    margin-bottom: 30px;
    border: 1px solid #efefef;
    text-align: left;
    color: #fff;
}

.about-agency__img img {

}
.speak__img{
    position: absolute;
    top: 15%;
    right: -35%;
}

.speak__img__1{
    position: absolute;
    top: 15%;
    right: -25%;
}
.about-foodzapp__right {
    display: block;
}

.about-foodzapp__right .section-title {
    margin-bottom: 33px;
}

.about-agency__right .creative-services {
    font-size: 45px;
    font-weight: 400;
}

.about-foodzapp__text-1 {
    font-size: 26px;
    margin: 0;
    line-height: 34px;
    opacity: .9;
    color: var(--thm-base);
    font-weight:500;
}

.about-foodzapp__text-2 {
    font-size: 21px;
    margin: 0;
    opacity: .9;
    color: var(--thm-base);
    line-height: 34px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight:400;
}

.about-agency__btn {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--thm-black);
    padding: 16px 45px;
    border-radius: 30px;
    background-color: transparent;
    transition: all 500ms ease;
    z-index: 1;
}

.about-agency__btn::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-color: var(--thm-base);
    box-shadow: 7px 12.124px 10px 0px rgb(141, 155, 247, .45);
    z-index: -1;
}

.about-agency__btn::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-color: var(--thm-primary);
    transform: scale(0);
    transition: all 500ms ease;
    z-index: -1;
}

.about-agency__btn:hover:after {
    transform: scale(1);
}

.about-agency__btn:hover {
    color: var(--thm-base);
}

.about-agency-shape-1 {
    position: absolute;
    left: 110px;
    bottom: 60px;
    border-radius: 50%;
    background-color: rgb(236, 186, 250);
    width: 15px;
    height: 15px;
}

.about-agency-shape-2 {
    position: absolute;
    bottom: 155px;
    right: 300px;
    border-radius: 50%;
    background-color: rgb(240, 221, 255);
    width: 15px;
    height: 15px;
}

.about-agency-shape-3 {
    position: absolute;
    top: 135px;
    right: 180px;
    border-style: solid;
    border-width: 6px;
    border-color: rgb(238, 165, 251);
    border-radius: 10px;
    width: 30px;
    height: 30px;
}

.shape-purple-circle {
    position: absolute;
left: 0px;
top: 0px;
    border: 100rem;
    border-radius: 100rem;
    background-color: var(--thm-primary);
width: 100%;
height: 100%;
}


.shape-orange-circle {
    position: absolute;
left: 0px;
top: 0px;
    border: 100rem;
    border-radius: 100rem;
    background-color: var(--thm-secondary);
width: 100%;
height: 100%;
}


.shape-green-semicircle {
    position: absolute;
  left: -40px;
     top:-50%;
    border-bottom-right-radius: 100rem;
    border-top-right-radius: 100rem;
    background-color: rgb(9, 108, 55);
    width: 512px;
    height: 1024px;
}

.shape-semi-green-semicircle {
    position: absolute;
    left: 0px;
     top:0%;
    border-bottom-right-radius: 100rem;
    border-top-right-radius: 100rem;
    background-color: rgb(249, 198, 220);
    width: 512px;
    height: 1024px;
}


.shape-green-semicircle-right{
    position: absolute;
    right: 0px;
     top:-40%;
    border-bottom-left-radius: 100rem;
    border-top-left-radius: 100rem;
    background-color: rgb(9, 108, 55);
    width: 512px;
    height: 1024px;	
}
.shape-yellow-semicircle{
	    position: absolute;
    right: 20%;
    top:0px;
    border-bottom-right-radius: 100rem;
    border-top-right-radius: 100rem;
    background-color: rgb(251, 174, 23);
    width: 868px;
    height: 1536px;
        transform: rotate(45deg);
}

.shape-Whatsapp-ordering{
    position: absolute;
    bottom: -90px;
    left: -382px;
}
.fried-checken-shape{
    position: relative;
    top: 150px;
	
}
.fried-checken-shape img{
    width: 70%;
    position: absolute;
   top:-25%;
	
}

.burger-shape{
    position: relative;
    top: 150px;
	
}
.burger-shape img{
    width: 70%;
    position: absolute;
   top:-25%;
	
	    
}

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.accordion-header img{
	    width: 38px;
    height: 38px;
}
a.accordion-buttons, button.accordion-buttons {
color: inherit;
outline: none;
border: none;
background: transparent;
}
.tp-service-2-accordion-box .accordion-items {
  border-bottom: 1px solid rgba(25, 25, 26, 0.1);
  position: relative;
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons {
  padding: 20px 0;
  padding-left: 30px;
  padding-right: 50px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--thm-primary);
  width: 100%;
  text-align: left;
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons .accordion-icon {
  position: absolute;
  top: 40px;
  right: 0;
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons .accordion-icon::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #525258;
  border-radius: 2px;
  transition: 0.4s;
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons .accordion-icon::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #525258;
  border-radius: 2px;
}
.tp-service-2-accordion-box .accordion-header span {
  margin-right: 20px;
}
.tp-service-2-accordion-box .accordion-body {
  padding: 0px 10px 40px 40px;
}
@media (max-width: 767px) {
  .tp-service-2-accordion-box .accordion-body {
    padding: 0px 10px 40px 50px;
  }
}
.tp-service-2-accordion-box .accordion-body p {
  margin-bottom: 20px;
}

.fq-faq-wrapper .tp-service-2-accordion-box .accordion-header .accordion-buttons {
  padding: 35px 0;
  padding-left: 0px;
  padding-right: 50px;
  font-size: 30px;
  font-weight: 600;
  color: var(--thm-primary);
}
@media (max-width: 767px) {
  .fq-faq-wrapper .tp-service-2-accordion-box .accordion-header .accordion-buttons {
    font-size: 20px;
  }
}
.fq-faq-wrapper .tp-service-2-accordion-box .accordion-body {
  padding: 0;
  padding-right: 100px;
}
@media (max-width: 767px) {
  .fq-faq-wrapper .tp-service-2-accordion-box .accordion-body {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-2-accordion-box {
    margin-bottom: 60px;
  }
}

.fq-faq-bdr {
  border-top: 1px solid rgba(25, 25, 26, 0.1);
}
.fq-faq-sidebar {
  padding-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fq-faq-sidebar {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .fq-faq-sidebar {
    padding-left: 0px;
  }
}
.fq-faq-sidebar-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--thm-primary);
}
.fq-faq-sidebar-content p {
  color: #5D5D63;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .fq-faq-sidebar-content p br {
    display: none;
  }
}
.fq-faq-sidebar-input input {
  border: none;
  padding-left: 9px;
  background-color: transparent;
  border-bottom: 2px solid #D9D9D9;
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input::-moz-placeholder { /* Firefox 19+ */
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input::placeholder { /* MODERN BROWSER */
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-thumb {
  margin-bottom: 40px;
}
.fq-faq-sidebar-search {
  position: absolute;
  top: 15px;
  right: 0;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.whyUs-foodzapp__content {
    display: block;
    position: relative;
}

.whyUs-foodzapp__warpper{
	
	    padding: 20px 50px;
}
.whyus-foodzapp__left {

    display: block;

}

.flex-row-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.flex-row-container > .flex-row-item {
    flex: 1 1 30%; /*grow | shrink | basis */
}

.flex-row-item {
    background-color: #fff4e6;
    border: 1px solid #95689c;
    margin: 10px;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
     display: flex;
    align-items: center;
    font-weight:600;
    color:#95689c;
}

.flex-row-item span.icon{
	    margin-right: 10px;
	        font-size: 32px;

}

.whyUs-foodzapp__warpper .section-title__title {
    margin: 0;
    font-weight: 700;
    color: var(--thm-primary);
    font-size: 50px;
    line-height: 55px;
    font-family: var(--thm-font-nunito);
}

.whyUs-foodzapp__text-1 {
    font-size: 24px;
    margin: 0;
    line-height: 28px;
    opacity: .8;
    color: var(--thm-primary);
    font-weight:500;
        margin-bottom: 30px;
}

.whyUs-foodzapp__text-2 {
    font-size: 16px;
    margin: 0;
    opacity: .8;
    color: var(--thm-primary);
    line-height: 21px;
    padding-top: 0px;
    padding-bottom: 30px;
    font-weight:400;
}

.speak__img__01{
    position: absolute;
    top: 15%;
    right:0;
}
.speak__img__02{
    position: absolute;
    top: 15%;
    left: 0;
    z-index: 1;
}

.Shape-Happy-pay{
    position: absolute;
    bottom: -10%;
    right: -15%;
}


.Shape-Happy-pay img{
	width:75%;
	height:75%;	
}
.Shape-Happy-eats{
    position: absolute;
    bottom: -10%;
    right: -20%;
}


.Shape-Happy-eats img{
	width:75%;
	height:75%;	
}

.Shape-Happy-eats-01{
    position: absolute;
    bottom:0;
    right: -20%;
        z-index: 1;
}

.Shape-Happy-eats-01 img{
	width:75%;
	height:75%;	
}

.Shape-Happy-eats-02{
    position: absolute;
    bottom: -20%;
    left: 25%;
    z-index: 1;
}

.Shape-Happy-eats-02 img{
	width:75%;
	height:75%;	
}



.Shape-Happy-eats-03{
    position: absolute;
    top: 70px;
    right:0;
    z-index: 5;
}

.Shape-Happy-eats-03 img{
	width:75%;
	height:75%;	
}

/*--------------------------------------------------------------
# Creative Agency
--------------------------------------------------------------*/

.foodzapp-restaurant{
    display: block;
       padding: 20px 0 50px;
}


.creative-agency {
    display: block;
       padding: 150px 0 50px;
}

.creative-agency__container {
    position: relative;
    display: block;
    width: 100%;
}

.creative-agency__section-title {
    position: relative;
    display: block;
    margin-bottom: 135px;
}

.creative-agency__section-title-bg {
    font-size: 272px;
    color: #feefeb;
    font-weight: 700;
    line-height: 272px;
    transform: rotate(-90deg) translateX(-50%);
    z-index: -1;
    position: absolute;
    top: -199px;
    left: 45.5%;
}

.creative-agency__section-title-bg:before {
    position: absolute;
    top: 50%;
    left: 89%;
    content: "";
    background-color: rgb(120, 246, 179);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.creative-agency__section-title h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 55px;
    font-family: var(--thm-font-nunito);
}

.creative-agency__section-title h3 {
    font-size: 45px;
    font-weight: 400;
    line-height: 55px;
    font-family: var(--thm-font-nunito);
    margin-bottom: 28px;
}

.creative-agency__section-title p {
    font-size: 22px;
    line-height: 30px;
    color: var(--thm-black);
    opacity: .8;
    margin: 0;
}

.creative-agency__content {
    position: relative;
    display: block;
    overflow: hidden;
}

.creative-agency__content-left {
    position: relative;
    display: block;
    width: 50%;
    float: left;
    min-height: 740px;
    height: 100%;
}

.creative-agency__content-left-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}



.creative-agency__video-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    text-align: center;
    background-color: var(--thm-base);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.creative-agency__video-icon:before {
    content: "";
    position: absolute;
    left: -18px;
    top: -18px;
    right: -18px;
    bottom: -18px;
    background-color: rgba(230, 231, 230, 0.15);
    border-radius: 50%;
    z-index: -1;
}

.creative-agency__video-icon .ripple,
.creative-agency__video-icon .ripple:before,
.creative-agency__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    -ms-border-radius: 50%;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.creative-agency__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.creative-agency__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}





.creative-agency__video-text {
    position: absolute;
    top: 50%;
    left: 39%;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}

.creative-agency__video-text p {
    font-size: 22px;
    color: var(--thm-base);
    margin: 0;
}

.creative-agency__content-right {
    position: relative;
    display: block;
    width: 50%;
    float: right;
}

.creative-agency__content-right-shape {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 762px;
    height: 712px;
    z-index: -1;
}

.creative-agency__content-right-shape-2 {
    position: absolute;
    top: 229px;
    right: 145px;
    border-radius: 50%;
    background-color: rgb(253, 214, 241);
    width: 15px;
    height: 15px;
}

.creative-agency__content-right-shape-3 {
    position: absolute;
    top: 66px;
    left: 295px;
}



.creative-agency__content-right-shape-4 {
    position: absolute;
    bottom: 56px;
    left: 270px;
}



.creative-agency__content-inner {
    position: relative;
    display: block;
    max-width: 540px;
    width: 100%;
    padding-left: 140px;
    padding-top: 130px;
}

.creative-agency__counter {
    position: relative;
    display: block;
    margin-left: -15px;
    margin-right: -15px;
}

.creative-agency__counter-single {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    padding: 0 15px 50px;
}

.creative-agency__counter-inner-box {
    position: relative;
    display: block;
    width: 100%;
    padding: 48px 0 38px;
    border-radius: 10px;
}

.creative-agency__counter-inner-box-1 {
    background-image: -moz-linear-gradient(-21deg, rgb(151, 121, 251) 0%, rgb(88, 104, 239) 100%);
    background-image: -webkit-linear-gradient(-21deg, rgb(151, 121, 251) 0%, rgb(88, 104, 239) 100%);
    background-image: -ms-linear-gradient(-21deg, rgb(151, 121, 251) 0%, rgb(88, 104, 239) 100%);
}

.creative-agency__counter-inner-box-2 {
    background-image: -moz-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
    background-image: -webkit-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
    background-image: -ms-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
}

.creative-agency__counter-inner-box-3 {
    background-image: -moz-linear-gradient(54deg, rgb(201, 194, 253) 0%, rgb(88, 236, 254) 100%);
    background-image: -webkit-linear-gradient(54deg, rgb(201, 194, 253) 0%, rgb(88, 236, 254) 100%);
    background-image: -ms-linear-gradient(54deg, rgb(201, 194, 253) 0%, rgb(88, 236, 254) 100%);
}

.creative-agency__counter-inner-box-4 {
    background-image: -moz-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
    background-image: -webkit-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
    background-image: -ms-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
}



.creative-agency__counter-single.mt100 {
    margin-top: 100px;
}

.creative-agency__counter-single.mt100_minus {
    margin-top: -100px;
}

.creative-agency__counter-title {
    font-size: 22px;
    color: var(--thm-base);
    margin: 0;
    padding-bottom: 8px;
}

.creative-agency__counter-single h3 {
    font-size: 50px;
    color: var(--thm-base);
    font-weight: 700;
    font-family: var(--thm-font) !important;
}

.creative-agency__counter-letter {
    position: relative;
    font-size: 50px;
    color: var(--thm-base);
    font-weight: 700;
    top: 6px;
}

/*--------------------------------------------------------------
# Creative Agency
--------------------------------------------------------------*/
.work {
    position: relative;
    display: block;
    padding: 0 0 265px;
}

.work-shape-1 {
    position: absolute;
    left: 370px;
    top: -140px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(147, 254, 197);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.work-shape-2 {
    position: absolute;
    top: -140px;
    right: 190px;
}

.work-shape-3 {
    position: absolute;
    left: 140px;
    top: 320px;
}

.work-shape-4 {
    position: absolute;
    left: 205px;
    bottom: 175px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(236, 186, 250);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.work-shape-5 {
    position: absolute;
    bottom: 201px;
    right: 225px;
}

.work .section-title {
    margin-bottom: 171px;
}

.work .section-title__bg {
    left: 503px;
    top: -132px;
}

.work .section-title__bg:before {
    position: absolute;
    top: 50%;
    left: 91%;
    content: "";
    background-color: rgb(120, 246, 179);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.work__left {
    position: relative;
    display: block;
    margin-right: 23px;
}

.work__title {
    font-size: 45px;
    color: var(--thm-gray);
    font-weight: 700;
    line-height: 52px;
}

.work__text-1 {
    font-size: 22px;
    margin: 0;
    line-height: 30px;
    opacity: .7;
    padding-top: 40px;
    padding-bottom: 30px;
}

.work__text-2 {
    margin: 0;
    opacity: .7;
}

.work__btn {
    margin-top: 30px;
    font-size: 18px;
    text-transform: uppercase;
}

.work__right {
    position: relative;
    display: block;
    margin-left: 90px;
    margin-right: -160px;
}

.work__img {
    position: relative;
    display: block;
}

.work__img>img {
    width: 100%;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    padding: 0 0 448px
}

.testimonial-one-shape-1 {
    position: absolute;
    bottom: 125px;
    left: 80px;
}



.testimonial-one-shape-2 {
    position: absolute;
    bottom: 90px;
    right: 415px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(251, 131, 219);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.testimonial-one__section-title {
    position: relative;
    display: block;
    margin-bottom: 70px;
}

.testimonial-one__section-title-tagline {
    font-size: 22px;
    color: var(--thm-primary);
    line-height: 32px;
    margin-bottom: 10px;
}

.testimonial-one__section-title-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--thm-gray);
    line-height: 55px;
    margin-top: 10px;
}

.testimonial-one__inner {
    position: relative;
    display: block;
    max-width: 830px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.testimonial-one__img-1 {
    height: 108px;
    width: 108px;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
    position: absolute;
    top: 0;
    left: -310px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-one__img-1>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonial-one__img-2 {
    height: 108px;
    width: 108px;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
    position: absolute;
    top: 0;
    right: -310px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-one__img-2>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonial-one__img-3 {
    height: 108px;
    width: 108px;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
    position: absolute;
    bottom: -186px;
    left: 40px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-one__img-3>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonial-one__img-4 {
    height: 108px;
    width: 108px;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
    position: absolute;
    bottom: -186px;
    right: -40px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-one__img-4>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}





.testimonial-one__desc {
    font-size: 22px;
    margin: 0;
    opacity: .8;
    line-height: 36px;
}

.testimonial-one__client-info {
    position: relative;
    display: block;
    padding-top: 55px;
}

.testimonial-one__name {
    font-size: 22px;
    color: var(--thm-gray);
    opacity: .9;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.testimonial-one__title {
    font-size: 18px;
    color: var(--thm-primary);
    margin: 0;
    opacity: .8;
}

.testimonial-one__carousel.owl-carousel .owl-dots {
    counter-reset: count;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px !important;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: block;
    width: 35px;
    height: 51px;
    text-align: left;
    border-radius: 0%;
    opacity: 1;
    background-color: transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot+.owl-dot {
    margin-left: 25px;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot:before {
    position: absolute;
    height: 51px;
    width: 35px;
    text-align: center;
    color: #c4c4c4;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    border-bottom: 1px solid #e5e5e5;
    counter-increment: count;
    content: ""counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-one__carousel.owl-carousel .owl-dot span {
    display: none;
}

.testimonial-one__carousel.owl-carousel .owl-dot.active:before {
    color: var(--thm-primary);
    border-bottom: 1px solid var(--thm-primary);
}

.testimonial-one__carousel.owl-carousel .owl-dot:focus,
.testimonial-one__carousel.owl-carousel .owl-dot.active {
    outline: none;
    border: none;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    padding: 0 0 200px
}

.services-one-shape-1 {
    position: absolute;
    left: 150px;
    bottom: 0;
    border-radius: 50%;
    background-color: rgb(250, 192, 211);
    width: 15px;
    height: 15px;
}

.services-one-shape-2 {
    position: absolute;
    bottom: 0;
    right: 240px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(251, 131, 219);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.services-one__section-title {
    position: relative;
    display: block;
    margin-bottom: 207px;
}

.services-one__section-title-tagline {
    font-size: 22px;
    color: var(--thm-primary);
    font-weight: 700;
}

.services-one__section-title-title {
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
    margin-top: 19px;
}

.services-one__single {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(186, 184, 191, .35);
    text-align: center;
    margin-bottom: 120px;
    padding: 60px 45px 50px;
    transform: translateY(0);
    transition: all 500ms ease;
}

.services-one__single:hover {
    transform: translateY(-90px);
}

.services-one__icon {
    position: relative;
    height: 115px;
    width: 115px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    transform: scale(1);
    transition: all 500ms ease;
    z-index: -1;
}

.services-one__single:hover .services-one__icon:before {
    transform: scale(0);
}

.services-one__icon>img {
    transition: all 800ms ease;
}

.services-one__single:hover .services-one__icon>img {
    transform: rotateY(180deg);
}

.services-one__single:hover .services-one__icon {
    background-color: var(--thm-black);
}

.service-one__title {
    font-size: 25px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 33px;
    margin-bottom: 19px;
}

.service-one__title a {
    color: var(--thm-black);
    transition: all 800ms ease;
}

.service-one__title a:hover {
    color: var(--thm-primary);
}

.services-one__text {
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}

.services-one__icon-1:before {
    background-image: -moz-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
    background-image: -webkit-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
    background-image: -ms-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
}

.services-one__icon-2:before {
    background-image: -moz-linear-gradient(134deg, rgb(56, 90, 253) 0%, rgb(255, 59, 243) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(56, 90, 253) 0%, rgb(255, 59, 243) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(56, 90, 253) 0%, rgb(255, 59, 243) 100%);
}

.services-one__icon-3:before {
    background-image: -moz-linear-gradient(134deg, rgb(68, 255, 169) 0%, rgb(109, 219, 255) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(68, 255, 169) 0%, rgb(109, 219, 255) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(68, 255, 169) 0%, rgb(109, 219, 255) 100%);
}

/*--------------------------------------------------------------
# Pricing Plan
--------------------------------------------------------------*/
.pricing-plan {
    position: relative;
    display: block;
    padding: 0 0 360px;
}

.pricing-plan-shape-2 {
    position: absolute;
    top: 460px;
    left: 0px;
}



.pricing-plan-shape-3 {
    position: absolute;
    bottom: 266px;
    left: 575px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(236, 186, 250);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.pricing-plan-shape-4 {
    position: absolute;
    bottom: 126px;
    right: 90px;
}





.pricing-plan .section-title__bg {
    left: 503px;
    top: -132px;
}

.pricing-plan .section-title__bg:before {
    position: absolute;
    top: 50%;
    left: 91%;
    content: "";
    background-color: rgb(120, 246, 179);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.pricing-plan__section-title-text {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    padding-top: 23px;
}

.pricing-plan ul.switch-toggler-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 63px;
}

.pricing-plan ul.switch-toggler-list li a {
    font-size: 18px;
    font-weight: 600;
    color: #737789;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
}

.pricing-plan ul.switch-toggler-list li.active a {
    color: var(--thm-black);
}

.pricing-plan .switch {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    border-radius: 30px;
    width: 250px;
    height: 70px;
}

.pricing-plan .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
    background-color: rgb(255, 255, 255);
    box-shadow: 10px 17.321px 39px 0px rgb(148, 148, 148, .45);
}

.pricing-plan .slider:before {
    position: absolute;
    content: "";
    height: 50px;
    width: 120px;
    left: 10px;
    right: 10px;
    top: 50%;
    -webkit-transform: translateX(0px) translateY(-50%);
    transform: translateX(0px) translateY(-50%);
    background-color: var(--thm-primary);
    -webkit-transition: .4s;
    transition: .4s;
}

.pricing-plan .switch.off .slider:before {
    -webkit-transform: translateX(111px) translateY(-50%);
    transform: translateX(111px) translateY(-50%);
}

.pricing-plan .slider.round {
    border-radius: 22px;
}

.pricing-plan .slider.round:before {
    border-radius: 22px;
}

.pricing-plan__single {
    position: relative;
    display: block;
    background-color: rgb(253, 253, 253);
    box-shadow: 8px 13.856px 30px 0px rgb(181, 179, 185, .35);
    text-align: center;
    padding: 78px 48px 70px;
    margin-bottom: 30px;
    z-index: 1;
}

.pricing-plan__single:before {
    position: absolute;
    top: 60px;
    left: 80px;
    content: "";
    background-image: url(../images/shapes/pricing-plan-shape-1.png);
    background-repeat: no-repeat;
    width: 207px;
    height: 192px;
    z-index: -1;
}

.pricing-plan__tagline {
    font-size: 18px;
    color: var(--thm-gray);
    text-transform: uppercase;
    line-height: 28px;
    opacity: .8;
}

.pricing-plan__title {
    font-size: 26px;
    color: var(--thm-gray);
    line-height: 36px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 19px;
}

.pricing-plan__price {
    font-size: 50px;
    color: var(--thm-primary);
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 56px;
}

.pricing-plan__text {
    margin: 0;
    opacity: .7;
    line-height: 30px;
}

.pricing-plan__btn {
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    border: 2px solid #f7f6f6;
    display: inline-block;
    border-radius: 30px;
    padding: 16px 35px 12px;
    margin-top: 59px;
    transition: all 500ms ease;
    z-index: 1;
}

.pricing-plan__btn:hover {
    color: var(--thm-base);
}

.pricing-plan__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-image: -moz-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    background-image: -webkit-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    background-image: -ms-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    transition: all 500ms ease;
    transform: scaleX(0);
    z-index: -1;
}

.pricing-plan__btn:hover:before {
    transform: scaleX(1);
}

.pricing-plan__price.color-2 {
    color: #62f0a4;
}

.pricing-plan__price.color-3 {
    color: #e469fe;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
    position: relative;
    display: block;
    padding: 0 0 265px;
}

.blog-one-shape-2 {
    position: absolute;
    top: 115px;
    left: 115px;
}

.blog-one .section-title {
    margin-bottom: 100px;
}

.blog-one .section-title__bg {
    left: 503px;
    top: -132px;
}

.blog-one .section-title__bg:before {
    position: absolute;
    top: 50%;
    left: 91%;
    content: "";
    background-color: rgb(120, 246, 179);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.blog-one__section-title-text {
    font-size: 22px;
    color: var(--thm-gray);
    margin: 0;
    opacity: .8;
    padding-top: 19px;
    line-height: 30px;
    padding-bottom: 37px;
}

.discover-more-blgo {
    font-size: 22px;
    color: #5a55fb;
    position: relative;
    display: inline-block;
    transition: all 500ms ease;
}

.discover-more-blgo:hover {
    color: var(--thm-primary);
}

.discover-more-blgo:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #cbc9f9;
    content: "";
}

.blog-one__single {
    position: relative;
    display: block;
    background-color: rgb(253, 253, 253);
    box-shadow: 12.5px 21.651px 18px 0px rgb(214, 214, 214, .45);
    padding: 70px 35px 45px;
    margin-bottom: 30px;
    z-index: 1;
}

.blog-one-shape-1 {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 297px;
    height: 332px;
    opacity: 0;
    transition: all 500ms ease 800ms;
    z-index: -1;
}

.blog-one__single:hover .blog-one-shape-1 {
    opacity: 1;
}

.blog-one__single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-image: -moz-linear-gradient(-12deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    background-image: -webkit-linear-gradient(-12deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    background-image: -ms-linear-gradient(-12deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    box-shadow: 12.5px 21.651px 18px 0px rgb(214, 214, 214, .45);
    transform: scale(0.0);
    transform-origin: top;
    transform-style: preserve-3d;
    transition: all 700ms ease;
    z-index: -1;
}

.blog-one__single:hover:before {
    transform: scaleX(1.0);
}

.blog-one__title {
    font-size: 26px;
    color: var(--thm-gray);
    line-height: 32px;
    font-weight: 600;
}

.blog-one__title>a {
    color: var(--thm-gray);
    transition: all 700ms ease;
}

.blog-one__single:hover .blog-one__title>a {
    color: var(--thm-base);
}

.blog-one__meta {
    margin: 0;
    opacity: .7;
    padding-top: 9px;
    padding-bottom: 29px;
    transition: all 700ms ease;
}

.blog-one__single:hover .blog-one__meta {
    color: var(--thm-base);
}

.blog-one__text {
    margin: 0;
    opacity: .8;
    padding-bottom: 44px;
    transition: all 700ms ease;
}

.blog-one__single:hover .blog-one__text {
    color: var(--thm-base);
}

.blog-one__btn {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    transition: all 700ms ease;
    padding-left: 40px;
}

.blog-one__single:hover .blog-one__btn {
    color: var(--thm-base);
}

.blog-one__btn:before {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 30px;
    content: "";
    background-color: var(--thm-primary);
    transform: translateY(-50%);
    transition: all 700ms ease;
}

.blog-one__single:hover .blog-one__btn:before {
    background-color: var(--thm-base);
}

/*--------------------------------------------------------------
# Subscribe
--------------------------------------------------------------*/
.subscribe {
    position: relative;
    display: block;
    padding: 0 0 245px;
}

.subscribe__inner {
    position: relative;
    display: block;
    max-width: 665px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.subscribe-inner-shape {
    position: absolute;
    top: -80px;
    left: -190px;
    right: -190px;
    bottom: -83px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.subscribe__form-box {
    position: relative;
    display: block;
}

.subscribe__title {
    font-size: 30px;
    font-weight: 600;
    color: var(--thm-gray);
    margin-bottom: 50px;
}

.subscribe__title span {
    color: #5a55fb;
}

.subscribe__form {
    position: relative;
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.subscribe__form input[type="email"] {
    height: 80px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: 12.5px 21.651px 18px 0px rgb(214, 214, 214, .45);
    border: none;
    outline: none;
    border-radius: 40px;
    padding-left: 40px;
    padding-right: 200px;
    color: var(--thm-gray);
    font-size: 16px;
}

.subscribe__form .subscribe__btn {
    font-size: 22px;
    color: var(--thm-base);
    border: none;
    background-color: transparent;
    padding: 19px 40px 13px;
    border-radius: 30px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;
}

.subscribe__form .subscribe__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 30px;
    background-image: -moz-linear-gradient(90deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    transform: scale(2, 2);
    -webkit-transform-origin: left center;
    transform-origin: right center;
    transition: transform 500ms linear;
    transition-timing-function: ease-out;
    z-index: -1;
}

.subscribe__form .subscribe__btn:hover {
    color: var(--thm-base);
    background-color: var(--thm-black);
}

.subscribe__form .subscribe__btn:hover:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    padding: 100px 0 0;
    z-index: 1;
}

.site-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center top;
    z-index: -1;
}

.site-footer-shape-1 {
    border-style: solid;
    border-width: 3px;
    border-color: rgb(236, 186, 250);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    position: absolute;
    left: 150px;
    top: 240px;
    width: 13px;
    height: 13px;
}

.site-footer-shape-2 {
    position: absolute;
    bottom: 100px;
    left: 50px;
}



.site-footer-shape-3 {
    position: absolute;
    bottom: 80px;
    right: 60px;
}











.footer-widget__about-text {
    font-size: 18px;
    margin: 0;
    opacity: .8;
    padding-top: 47px;
    padding-bottom: 22px;
}

.footer-widget__about-contact {
    font-size: 18px;
    color: var(--thm-gray);
    font-family: var(--thm-font);
    line-height: 33px;
    font-weight: 400;
    margin-bottom: 44px;
}

.footer-widget__about-contact>a {
    color: var(--thm-gray);
    opacity: .9;
}

.footer-widget__about-contact-phone {
    display: block;
    transition: all 500ms ease;
}

.footer-widget__about-contact-phone:hover {
    color: var(--thm-primary);
}

.footer-widget__about-contact-mail {
    transition: all 500ms ease;
}

.footer-widget__about-contact-mail:hover {
    color: var(--thm-primary);
}

.footer-widget__about-social-list {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.footer-widget__about-social-list a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    height: 45px;
    width: 45px;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-widget__about-social-list a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--thm-secondary);
    transform: scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.footer-widget__about-social-list a:hover:before {
    transform: scale(1);
}

.footer-widget__about-social-list a:hover {
    color: var(--thm-base);
}

.footer-widget__about-social-list a+a {
    margin-left: 8px;
}

.footer-widget__company {
    position: relative;
    display: block;
    margin-left: -7px;
}

.footer-widget__title {
    font-size: 16px;
    color: var(--thm-base);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 30px;
    margin-bottom: 36px;
}

.footer-widget__column a{
	  color: var(--thm-base);
	  font-size: 16px;
	  font-weight: 500;
}


.footer-widget__column{
	color:var(--thm-base);
}
.footer-widget__company-list li+li {
    margin-top: 10px;
}

.footer-widget__company-list li a {
    font-size: 18px;
    opacity: .8;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color:var(--thm-base);
}

.footer-widget__company-list li a:hover {
    color: var(--thm-primary);
}





.footer-widget__solution-list li+li {
    margin-top: 10px;
}

.footer-widget__solution-list li a {
    font-size: 18px;
    opacity: .8;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__solution-list li a:hover {
    color: var(--thm-primary);
}

.site-footer__bottom {
    position: relative;
    display: block;
    padding: 95px 0 70px;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.site-footer__bottom-copy-right-text {
    margin: 0;
    opacity: .8;
}

.site-footer__bottom-app {
    display: flex;
    align-items: center;
}

.site-footer__bottom-app span {
    font-size: 18px;
    opacity: .9;
    margin-right: 25px;
}

.site-footer__bottom-app a {
    font-size: 20px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-app a:hover {
    color:var(--thm-secondary);
}

.site-footer__bottom-app a+a {
    margin-left: 25px;
}

.site-footer__bottom-menu {
    position: relative;
    display: block;
    padding: 30px 0px;
    border-bottom: 1px solid #ffff;
    margin-bottom: 20px;

}

.site-footer__bottom-menu ul {
    position: relative;
    display: block;
}

.site-footer__bottom-menu ul li:first-child {
	padding-left:0px;
	color:var(--thm-base);
}
.site-footer__bottom-menu ul li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 20px;
    font-size: 18px;
    font-weight: 300;
      color:var(--thm-base);

}

.site-footer__bottom-menu ul li a{
	    color: #fff;
}

.site-footer__bottom-menu ul li a:hover{
	   font-weight: 500;
	   color:#fff;
}

.site-footer__bottom-menu ul li+li {
    margin-left: 10px;
}

.site-footer__bottom-menu ul li a {
    opacity: .8;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-menu ul li a:hover {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Banner Two
--------------------------------------------------------------*/
.banner-two {
    position: relative;
    display: block;
    padding: 167px 0 165px;
}

.banner-two-shape-1 {
    position: absolute;
    top: 70px;
    right: 0;
}



.banner-two-shape-2 {
    position: absolute;
    bottom: 112px;
    right: 0;
}



.banner-two-shape-3 {
    position: absolute;
    bottom: 0;
    right: 495px;
    border-radius: 50%;
    background-color: rgb(186, 246, 250);
    width: 15px;
    height: 15px;
}

.banner-two-shape-4 {
    position: absolute;
    left: 890px;
    bottom: 90px;
    width: 13px;
    height: 13px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(255, 96, 119);
    border-radius: 50%;
    background-color: rgba(186, 246, 250, 0);
}

.banner-two__big-text-box {
    position: relative;
    display: block;
}

.banner-two__big-text {
    font-size: 272px;
    color: var(--thm-base);
    -webkit-text-stroke: 2px #f8f8f8;
    position: absolute;
    top: 7px;
    left: -19px;
    font-weight: 700;
}

.banner-two__left {
    position: relative;
    display: block;
    margin-right: 38px;
}

.banner-two__tagline {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 32px;
}

.banner-two__title {
    font-size: 70px;
    font-weight: 700;
    line-height: 74px;
    margin-top: 20px;
    margin-bottom: 35px;
}

.banner-two__text-1 {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    line-height: 38px;
}

.banner-two__text-2 {
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    padding-top: 12px;
    padding-bottom: 50px;
}



.banner-two__btn:before {
    background-image: -moz-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
}

.banner-two__right {
    position: relative;
    display: block;
}

.banner-two__img {
    position: relative;
    display: block;
    margin-right: -310px;
}

.banner-two__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    padding: 0 0 300px;
}

.services-two-shape-1 {
    position: absolute;
    right: 0;
    top: 124px;
}



.services-two-shape-2 {
    position: absolute;
    right: 430px;
    bottom: 254px;
}



.services-two__left {
    position: relative;
    display: block;
    margin-left: -295px;
    margin-right: -5px;
}



.services-two__list {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    float: left;
}

.services-two__list li {
    position: relative;
    display: block;
    text-align: center;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(186, 184, 191, .35);
    margin-bottom: 30px;
    padding: 55px 47px 45px;
}



.services-two__list li:nth-child(2) {
    margin-bottom: 0;
}

.services-two__icon {
    position: relative;
    height: 115px;
    width: 115px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.services-two__list li:hover .services-two__icon {
    background-color: var(--thm-primary);
}

.services-two__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scale(1);
    z-index: -1;
}

.services-two__list li:hover .services-two__icon:before {
    transform: scale(0);
}

.services-two__icon-1:before {
    background-image: -moz-linear-gradient(134deg, rgb(105, 255, 211) 0%, rgb(115, 205, 254) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(105, 255, 211) 0%, rgb(115, 205, 254) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(105, 255, 211) 0%, rgb(115, 205, 254) 100%);
}

.services-two__icon-2:before {
    background-image: -moz-linear-gradient(134deg, rgb(56, 90, 253) 0%, rgb(255, 59, 243) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(56, 90, 253) 0%, rgb(255, 59, 243) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(56, 90, 253) 0%, rgb(255, 59, 243) 100%);
}

.services-two__icon-3:before {
    background-image: -moz-linear-gradient(134deg, rgb(151, 120, 250) 1%, rgb(109, 219, 255) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(151, 120, 250) 1%, rgb(109, 219, 255) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(151, 120, 250) 1%, rgb(109, 219, 255) 100%);
}

.services-two__icon-4:before {
    background-image: -moz-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
    background-image: -webkit-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
    background-image: -ms-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
}

.services-two__icon img {
    transition: all 800ms ease;
}

.services-two__list li:hover .services-two__icon img {
    transform: rotateY(180deg);
}

.services-two__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    margin-top: 32px;
    margin-bottom: 21px;
}

.services-two__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.services-two__title a:hover {
    color: var(--thm-primary);
}

.services-two__text {
    opacity: .8;
    margin: 0;
}

.services-two__list-two {
    margin-left: 30px;
    margin-top: 160px;
}


.services-two__right {
    position: relative;
    display: block;
    margin-left: 111px;
    margin-top: 310px;
}



.services-two__section-title-tagline {
    font-size: 22px;
    color: #9778fa;
    font-weight: 700;
    line-height: 32px;
}

.services-two__section-title-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    margin-top: 18px;
    margin-bottom: 32px;
}

.services-two__text-2 {
    font-size: 22px;
    margin: 0;
    line-height: 32px;
    opacity: .7;
}

.services-two__btn {
    margin-top: 34px;
}

.services-two__btn:before {
    background-image: -moz-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
}

/*--------------------------------------------------------------
# About Agency Two
--------------------------------------------------------------*/
.about-agency-two {
    position: relative;
    display: block;
    padding: 150px 0 0px;
}

.about-agency-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: scroll;
}

.about-agency-two-shape-1 {
    position: absolute;
    top: 85px;
    right: 130px;
}



.about-agency-two-shape-2 {
    position: absolute;
    bottom: 55px;
    left: 110px;
    border-radius: 50%;
    background-color: rgb(236, 186, 250);
    width: 15px;
    height: 15px;
}

.about-agency-two__left {
    position: relative;
    display: block;
}

.about-agency-two__section-title {
    position: relative;
    display: block;
}

.about-agency-two__tagline {
    font-size: 22px;
    color: #9778fa;
    font-weight: 700;
    line-height: 32px;
}

.about-agency-two__section-title-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 57px;
    margin-top: 14px;
}

.about-agency-two__creative-services {
    font-size: 45px;
    font-weight: 400;
}

.about-agency-two__text-1 {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    line-height: 30px;
    padding-top: 22px;
    padding-bottom: 29px;
}

.about-agency-two__text-2 {
    color: var(--thm-black);
    opacity: .8;
    margin: 0;
}

.about-agency-two__btn {
    margin-top: 35px;
}

.about-agency-two__right {
    position: relative;
    display: block;
    margin-left: 45px;
    margin-right: -340px;
}

.about-agency-two__img {
    position: relative;
    display: block;
}

.about-agency-two__img>img {
    width: 100%;
}

/*--------------------------------------------------------------
# Creative Agency Two
--------------------------------------------------------------*/
.creative-agency-two {
    position: relative;
    display: block;
    padding: 200px 0 330px;
}

.creative-agency-two__section-title {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 165px;
}

.creative-agency-two__section-title-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

.creative-agency-two__section-title-sub-title {
    font-size: 45px;
    font-weight: 400;
    line-height: 55px;
    margin-bottom: 28px;
}

.creative-agency-two__text {
    font-size: 22px;
    margin: 0;
    opacity: .8;
    line-height: 30px;
}

.creative-agency-two__bg-box {
    position: relative;
    display: block;
    width: 100%;
    min-height: 740px;
}

.creative-agency-two-shape-1 {
    position: absolute;
    top: -132px;
    right: 145px;
    border-radius: 50%;
    background-color: rgb(253, 214, 241);
    width: 15px;
    height: 15px;
}

.creative-agency-two-shape-2 img {
    position: absolute;
    top: 0;
    left: 290px;
}



.creative-agency-two-shape-3 {
    position: absolute;
    bottom: 30px;
    left: 440px;
}



.creative-agency-two-shape-4 {
    position: absolute;
    bottom: -150px;
    left: 635px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(147, 254, 197);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.creative-agency-two-shape-5 {
    position: absolute;
    bottom: -200px;
    right: 135px;
}



.creative-agency-two__bg-left {
    position: absolute;
    float: left;
    width: 50%;
    top: 0;
    left: 0;
    bottom: 0;
}

.creative-agency-two__bg-left-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.creative-agency-two__counter {
    position: relative;
    display: block;
    float: right;
    padding-right: 167px;
    max-width: 570px;
    width: 100%;
    text-align: center;
    padding-top: 130px;
}

.creative-agency-two__counter-box {
    position: relative;
    display: block;
    margin-left: -15px;
    margin-right: -15px;
}



.creative-agency-two__counter-single {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    padding: 0 15px 50px;
}

.creative-agency-two__counter-single.mt100 {
    margin-top: 100px;
}

.creative-agency-two__counter-single.mt100_minus {
    margin-top: -100px;
}

.creative-agency-two__counter-inner-box {
    position: relative;
    display: block;
    width: 100%;
    padding: 48px 0 38px;
    border-radius: 10px;
}

.creative-agency__counter-two-inner-box-1 {
    background-image: -moz-linear-gradient(-21deg, rgb(151, 121, 251) 0%, rgb(88, 104, 239) 100%);
    background-image: -webkit-linear-gradient(-21deg, rgb(151, 121, 251) 0%, rgb(88, 104, 239) 100%);
    background-image: -ms-linear-gradient(-21deg, rgb(151, 121, 251) 0%, rgb(88, 104, 239) 100%);
}

.creative-agency__counter-two-inner-box-2 {
    background-image: -moz-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
    background-image: -webkit-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
    background-image: -ms-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
}

.creative-agency__counter-two-inner-box-3 {
    background-image: -moz-linear-gradient(54deg, rgb(201, 194, 253) 0%, rgb(88, 236, 254) 100%);
    background-image: -webkit-linear-gradient(54deg, rgb(201, 194, 253) 0%, rgb(88, 236, 254) 100%);
    background-image: -ms-linear-gradient(54deg, rgb(201, 194, 253) 0%, rgb(88, 236, 254) 100%);
}

.creative-agency__counter-two-inner-box-4 {
    background-image: -moz-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
    background-image: -webkit-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
    background-image: -ms-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
}

.creative-agency-two__counter-title {
    font-size: 22px;
    color: var(--thm-base);
    margin: 0;
    padding-bottom: 8px;
}

.creative-agency-two__counter-inner-box h3 {
    font-size: 50px;
    color: var(--thm-base);
    font-weight: 700;
    font-family: var(--thm-font) !important;
}

.creative-agency-two__counter-letter {
    position: relative;
    font-size: 50px;
    color: var(--thm-base);
    font-weight: 700;
    top: 6px;
}



.creative-agency-two__video-link .creative-agency__video-icon {
    transform: translateY(-50%);
    right: -39px;
    left: inherit;
}


.creative-agency-two__bg-right {
    position: absolute;
    float: right;
    width: 50%;
    top: 0;
    right: 0;
    bottom: 0;
}

.creative-agency-two__bg-right-shape {
    position: absolute;
    top: -45px;
    right: 0;
    z-index: -1;
}



.creative-agency-two__bg-right-img {
    position: absolute;
    top: 40px;
    right: 75px;
}



/*--------------------------------------------------------------
# Work Two
--------------------------------------------------------------*/
.work-two {
    position: relative;
    display: block;
    padding: 0 0 245px
}

.work-two-shape-1 {
    position: absolute;
    top: 195px;
    left: 115px;
}



.work-two-shape-2 {
    position: absolute;
    top: 190px;
    right: 0;
    z-index: -1;
}



.work-two .section-title {
    margin-bottom: 160px;
}

.work-two .section-title__tagline {
    color: #9878fb;
}

.work-two__left {
    position: relative;
    display: block;
    margin-left:0px;
    margin-right:0px;
}

.work-two__img {
    position: relative;
    display: block;
}

.work-two__img img {

}

.work-two__right {
position: relative;
    display: block;
    margin-top: 250px;
    margin-right: 100px;
    margin-left:0px;
}

.work-two__title {
    font-size: 44px;
    color: var(--thm-gray);
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 33px;
}

.work-two__text {
    font-size: 22px;
    line-height: 30px;
    opacity: .7;
    margin: 0;
}

.work-two__list {
    position: relative;
    display: block;
    margin-top: 29px;
    margin-bottom: 43px;
}

.work-two__list li {
    position: relative;
    display: flex;
}

.work-two__list li+li {
    margin-top: 19px
}



.work-two__list li .icon i {
    font-size: 15px;
    color: #9979fb;
}

.work-two__list li .text {
    margin-left: 15px;
}

.work-two__list li .text p {
    margin: 0;
    opacity: .7;
}

.work-two__btn {
    text-transform: uppercase;
    font-size: 18px;
}

.work-two__btn:before {
    background-image: -moz-linear-gradient(-93deg, rgb(153, 121, 251) 0%, rgb(86, 105, 239) 100%);
    background-image: -webkit-linear-gradient(-93deg, rgb(153, 121, 251) 0%, rgb(86, 105, 239) 100%);
    background-image: -ms-linear-gradient(-93deg, rgb(153, 121, 251) 0%, rgb(86, 105, 239) 100%);
}

/*--------------------------------------------------------------
# Work Three
--------------------------------------------------------------*/
.work-three {
    position: relative;
    display: block;
    padding: 0 0 310px;
}

.work-three__left {
    position: relative;
    display: block;
    margin-right: 35px;
}

.work-three-shape-1 {
    position: absolute;
    top: 0;
    left: -160px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(236, 186, 250);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;

}

.work-three__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    color: var(--thm-gray);
}

.work-three__text {
    font-size: 22px;
    opacity: .7;
    margin: 0;
    line-height: 30px;
    padding-top: 36px;
    padding-bottom: 35px;
}

.work-three__list {
    position: relative;
    display: block;
    margin-bottom: 34px;
}

.work-three__list li {
    position: relative;
    display: flex;
}

.work-three__list li+li {
    margin-top: 16px;
}



.work-three__list li .icon i {
    font-size: 15px;
    color: #9979fb;
}

.work-three__list li .text {
    margin-left: 15px;
}

.work-three__list li .text p {
    margin: 0;
    opacity: .8;
}

.work-three__btn {
    position: relative;
    font-size: 18px;
    color: #9778fa;
    display: inline-block;
    border: 2px solid #9778fa;
    padding: 16px 42px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 500ms ease;
    z-index: 1;
}

.work-three__btn:hover {
    color: var(--thm-base);
    border: 2px solid var(--thm-primary);
}

.work-three__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-image: -moz-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    background-image: -webkit-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    background-image: -ms-linear-gradient(94deg, rgb(251, 16, 48) 0%, rgb(255, 56, 102) 100%);
    transition: all 500ms ease;
    transform: scaleX(0);
    z-index: -1;
}

.work-three__btn:hover:before {
    transform: scaleX(1);
}

.work-three__right {
    position: relative;
    display: block;
    margin-left: 35px;
}

.work-three__right-img {
    position: relative;
    display: block;
    margin-right: -64px;
}

.work-three__right-img img {
    width: 100%;
}

.work-three-shape-2 {
    position: absolute;
    bottom: 40px;
    right: -217px;
}



/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    padding: 0 0 367px;
    z-index: 1;
}

.testimonial-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 471px;
    z-index: -1;
}

.testimonial-two-shape-1 {
    position: absolute;
    top: -115px;
    left: 790px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(251, 131, 219);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 12px;
    height: 12px;
}

.testimonial-two-shape-2 {
    position: absolute;
    top: -80px;
    right: 180px;
}



.testimonial-two-shape-3 {
    position: absolute;
    bottom: 260px;
    left: 55px;
}



.testimonial-two-shape-4 {
    position: absolute;
    bottom: 190px;
    left: 940px;
}



.testimonial-two-shape-5 {
    position: absolute;
    bottom: 200px;
    right: 170px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(236, 186, 250);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 12px;
    height: 12px;


}

.testimonial-two .section-title {
    margin-bottom: 130px;
}

.testimonial-two .section-title__tagline {
    color: #9979fb;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transition: all 300ms ease 100ms;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
}



.testimonial-two__carousel.owl-carousel .owl-dots {
    counter-reset: count;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px !important;
}

.testimonial-two__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: block;
    width: 35px;
    height: 51px;
    text-align: left;
    border-radius: 0%;
    opacity: 1;
    background-color: transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-two__carousel.owl-carousel .owl-dots .owl-dot+.owl-dot {
    margin-left: 25px;
}

.testimonial-two__carousel.owl-carousel .owl-dots .owl-dot:before {
    position: absolute;
    height: 51px;
    width: 35px;
    text-align: center;
    color: #c4c4c4;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    border-bottom: 1px solid #e5e5e5;
    counter-increment: count;
    content: ""counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-two__carousel.owl-carousel .owl-dot span {
    display: none;
}

.testimonial-two__carousel.owl-carousel .owl-dot.active:before {
    color: var(--thm-primary);
    border-bottom: 1px solid var(--thm-primary);
}

.testimonial-two__carousel.owl-carousel .owl-dot:focus,
.testimonial-two__carousel.owl-carousel .owl-dot.active {
    outline: none;
    border: none;
}

.testimonial-two__single {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 22px 0px rgb(188, 187, 190, .35);
    padding: 65px 45px 55px;
    margin-bottom: 50px;
    z-index: 1;
}

.testimonial-two__single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-image: -moz-linear-gradient(35deg, rgb(91, 106, 240) 0%, rgb(153, 121, 251) 100%);
    background-image: -webkit-linear-gradient(35deg, rgb(91, 106, 240) 0%, rgb(153, 121, 251) 100%);
    background-image: -ms-linear-gradient(35deg, rgb(91, 106, 240) 0%, rgb(153, 121, 251) 100%);
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: -1;
}

.testimonial-two__single:hover:before {
    transform: scaleX(1);
}

.testimonial-two__icon-box {
    position: relative;
    display: block;
}

.testimonial-two__icon {
    opacity: 1;
    transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__icon {
    opacity: 0;
}

.testimonial-two__icon>img {
    width: 82px !important;
}

.testimonial-two__icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__icon-hover {
    opacity: 1;
}

.testimonial-two__icon-hover>img {
    width: 82px !important;
}

.testimonial-two__text {
    font-size: 22px;
    opacity: .8;
    margin: 0;
    line-height: 30px;
    padding-top: 28px;
    padding-bottom: 43px;
    transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__text {
    color: var(--thm-base);
}

.testimonial-two__client-info {
    position: relative;
    display: block;
    padding-left: 270px;
    text-align: center;
}

.testimonial-two__client-info-name {
    font-size: 22px;
    color: var(--thm-gray);
    opacity: .9;
    line-height: 32px;
    transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__client-info-name {
    color: var(--thm-base);
}

.testimonial-two__client-title {
    font-size: 18px;
    opacity: .8;
    margin: 0;
    transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__client-title {
    color: var(--thm-base);
}

.testimonial-two__clinet-img {
    position: relative;
    display: block;
    margin-top: 15px;
}

.testimonial-two__clinet-img>img {
    width: 85px !important;
    border-radius: 50%;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
    position: relative;
    display: block;
    padding: 0 0 246px;
}

.blog-two__left {
    position: relative;
    display: block;
    margin-right: 38px;
}

.blog-two__left .section-title {
    margin-bottom: 28px;
}

.blog-two__left .section-title__tagline {
    color: #9979fb;
}

.blog-two__left .section-title__title {
    font-size: 45px;
}

.blog-two__text {
    font-size: 22px;
    margin: 0;
    opacity: .8;
    line-height: 30px;
    padding-bottom: 32px;
}

.discover-more-blgo-2 {
    font-size: 22px;
    color: #5a55fb;
    position: relative;
    display: inline-block;
    transition: all 500ms ease;
}

.discover-more-blgo-2:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #cbc9f9;
    content: "";
}

.discover-more-blgo-2:hover {
    color: var(--thm-primary);
}

.blog-two .blog-one__single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-image: -moz-linear-gradient(-12deg, rgb(153, 121, 251) 0%, rgb(92, 106, 240) 100%);
    background-image: -webkit-linear-gradient(-12deg, rgb(153, 121, 251) 0%, rgb(92, 106, 240) 100%);
    background-image: -ms-linear-gradient(-12deg, rgb(153, 121, 251) 0%, rgb(92, 106, 240) 100%);
    box-shadow: 12.5px 21.651px 18px 0px rgb(214, 214, 214, .45);
    transform: scale(0.0);
    transform-origin: top;
    transform-style: preserve-3d;
    transition: all 700ms ease;
    z-index: -1;
}

.blog-two .blog-one__single:hover:before {
    transform: scaleX(1.0);
}

/*--------------------------------------------------------------
# Work togethers
--------------------------------------------------------------*/
.work-together {
    position: relative;
    display: block;
    padding-bottom: 384px;
}

.work-together-shape-1 {
    position: absolute;
    top: 50px;
    right: 0;
}



.work-together-shape-2 {
    position: absolute;
    top: 0;
    right: 415px;
}



.work-together-shape-3 {
    position: absolute;
    bottom: 320px;
    left: 115px;
}



.work-together-shape-4 {
    position: absolute;
    bottom: 140px;
    left: 890px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(232, 179, 255);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.work-together__left {
    position: relative;
    display: block;
    margin-left: -147px;
}

.work-together__img {
    position: relative;
    display: block;
}

.work-together__img img {
    width: 100%;
}

.work-together__right {
    position: relative;
    display: block;
    margin-right: 86px;
    margin-top: 300px;
    margin-left: 50px;
}

.work-together__title {
    color: var(--thm-gray);
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
}

.work-together__right h4 {
    font-size: 22px;
    color: var(--thm-gray);
    font-weight: 400;
    font-family: var(--thm-font);
    margin-top: 37px;
    margin-bottom: 42px;
}

.work-together__right h4 a {
    color: #9979fb;
}

.work-together__btn {
    font-size: 18px;
    text-transform: uppercase;
}

.work-together__btn:before {
    background-image: -moz-linear-gradient(-93deg, rgb(153, 121, 251) 0%, rgb(86, 105, 239) 100%);
    background-image: -webkit-linear-gradient(-93deg, rgb(153, 121, 251) 0%, rgb(86, 105, 239) 100%);
    background-image: -ms-linear-gradient(-93deg, rgb(153, 121, 251) 0%, rgb(86, 105, 239) 100%);
}

/*--------------------------------------------------------------
# Subsribe Two
--------------------------------------------------------------*/
.subscribe-two {
    padding-bottom: 12px;
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/


.site-footer-two .footer-widget__about-social-list a:before {
    background-color: #9979fb;
}

.site-footer-two .footer-widget__about-social-list a:hover:before {
    transform: scale(1);
}

.site-footer-two .footer-widget__company-list li a:hover {
    color: #9979fb;
}

.site-footer-two .footer-widget__solution-list li a:hover {
    color: #9979fb;
}

.site-footer-two .site-footer__bottom-app a {
    color: #9979fb;
}

.site-footer-two .site-footer__bottom-app a:hover {
    color: var(--thm-primary);
}

.site-footer-two .site-footer-shape-2 {
    bottom: 120px;
}

.site-footer-two .site-footer-shape-3 {
    bottom: 315px;
}

/*--------------------------------------------------------------
# Banner Three
--------------------------------------------------------------*/
.banner-three {
    position: relative;
    display: block;
    padding: 150px 0 322px;
}

.banner-three-shape-1 {
    position: absolute;
    top: 120px;
    right: 0;
}



.banner-three-shape-2 {
    position: absolute;
    top: 225px;
    right: 265px;
}



.banner-three-shape-3 {
    position: absolute;
    top: 126px;
    left: 721px;
}



.banner-three-shape-4 {
    position: absolute;
    top: 217px;
    right: 25px;
    border-radius: 50%;
    background-color: rgb(186, 246, 250);
    width: 67px;
    height: 67px;
}

.banner-three-shape-5 {
    position: absolute;
    bottom: 255px;
    right: 380px;
    border-radius: 50%;
    background-color: rgb(186, 246, 250);
    width: 42px;
    height: 42px;
}

.banner-three-shape-6 {
    position: absolute;
    bottom: 238px;
    right: 230px;
    border-radius: 50%;
    background-color: rgb(204, 209, 250);
    opacity: 0.51;
    width: 101px;
    height: 101px;
}

.banner-three-shape-7 {
    position: absolute;
    bottom: 190px;
    right: 270px;
    border-radius: 50%;
    background-color: rgb(160, 168, 255);
    width: 28px;
    height: 28px;
}

.banner-three-shape-8 {
    position: absolute;
    bottom: 625px;
    left: 75px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(186, 246, 250);
    border-radius: 50%;
    background-color: rgba(186, 246, 250, 0);
    width: 13px;
    height: 13px;
}

.banner-three-big-title-box {
    position: relative;
    display: block;
}

.banner-three-big-title {
    font-size: 272px;
    color: #f7f7f7;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 272px;
    position: absolute;
    top: 149px;
    left: -232px;
    transform: rotate(-90deg);
}

.banner-three__left {
    position: relative;
    display: block;
    margin-right: 54px;
    margin-top: 144px;
}

.banner-three__title {
    font-size: 70px;
    font-weight: 700;
    line-height: 74px;
}

.banner-three__text {
    font-size: 22px;
    margin: 0;
    opacity: .8;
    padding-top: 34px;
    padding-bottom: 66px;
}

.banner-three__btn-and-consultation {
    position: relative;
    display: flex;
    align-items: center;
}





.banner-three__consultation {
    margin-left: 40px;
}

.banner-three__consultation-text {
    font-size: 20px;
    color: var(--thm-black);
    margin: 0;
}

.banner-three__consultation-text span {
    color: var(--thm-primary);
}

.banner-three__right {
    position: relative;
    display: block;
    margin-left: 50px;
    margin-right: -295px;
}

.banner-three__img {
    position: relative;
    display: block;
}

.banner-three__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# Digital Agency
--------------------------------------------------------------*/
.digital-agency {
    position: relative;
    display: block;
    padding: 0 0 165px;
}

.digital-agency-shape-1 {
    position: absolute;
    top: 150px;
    left: 0;
}



.digital-agency-shape-2 {
    position: absolute;
    top: 315px;
    left: 0;
}

.digital-agency-shape-2 img {
    opacity: .6;
}

.digital-agency-shape-3 {
    position: absolute;
    bottom: 290px;
    right: 0;
}



.digital-agency-shape-4 {
    position: absolute;
    bottom: 260px;
    right: 230px;
}



.digital-agency-shape-5 {
    position: absolute;
    top: 330px;
    right: 105px;
    border-radius: 50%;
    background-color: rgb(253, 214, 241);
    width: 14px;
    height: 15px;
}

.digital-agency-shape-6 {
    position: absolute;
    left: 760px;
    bottom: 140px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(147, 254, 197);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.digital-agency__section-title {
    position: relative;
    display: block;
    margin-bottom: 95px;
}

.digital-agency__section-title-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 27px;
}

.digital-agency__section-title-title span {
    font-size: 45px;
    font-weight: 400;
}

.digital-agency__section-title-bg {
    font-size: 272px;
    color: #feefeb;
    font-weight: 700;
    line-height: 272px;
    z-index: -1;
    position: absolute;
    top: -77px;
    left: 50%;
    transform: translateX(-50%);
}

.digital-agency__section-title-bg:before {
    position: absolute;
    top: 0;
    left: 50%;
    content: "";
    background-color: rgb(120, 246, 179);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transform: translateX(-50%);
}

.digital-agency__section-title-text {
    font-size: 22px;
    color: var(--thm-black);
    opacity: .8;
    margin: 0;
    line-height: 30px;
}

.digital-agency__seo-services {
    position: relative;
    display: block;
}

.digital-agency__seo-sercives-list {
    position: relative;
    display: block;
    overflow: hidden;
}

.digital-agency__seo-services-single {
    position: relative;
    border-radius: var(--thm-border-radius);
    background-image: -moz-linear-gradient(-21deg, rgb(255, 90, 113) 0%, rgb(255, 188, 104) 100%);
    background-image: -webkit-linear-gradient(-21deg, rgb(255, 90, 113) 0%, rgb(255, 188, 104) 100%);
    background-image: -ms-linear-gradient(-21deg, rgb(255, 90, 113) 0%, rgb(255, 188, 104) 100%);
    display: inline-block;
    float: left;
    max-width: 185px;
    width: 100%;
    text-align: center;
    padding: 25px 0 44px;
    z-index: 1;
}

.digital-agency__seo-services-single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-primary);
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: -1;
}

.digital-agency__seo-services-single:hover:before {
    transform: scaleX(1);
}

.digital-agency__seo-services-single-2 {
    background-image: -webkit-linear-gradient(324deg, rgb(0, 237, 174) 0%, rgb(70, 253, 79) 100%);
    background-image: -o-linear-gradient(324deg, rgb(0, 237, 174) 0%, rgb(70, 253, 79) 100%);
    background-image: linear-gradient(54deg, rgb(0, 237, 174) 0%, rgb(70, 253, 79) 100%);
}

.digital-agency__seo-services-single-3 {
    background-image: -moz-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
    background-image: -webkit-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
    background-image: -ms-linear-gradient(155deg, rgb(149, 123, 246) 0%, rgb(230, 128, 255) 100%);
}

.digital-agency__seo-services-single-4 {
    background-image: -moz-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
    background-image: -webkit-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
    background-image: -ms-linear-gradient(-21deg, rgb(251, 16, 48) 0%, rgb(254, 92, 252) 100%);
}

.digital-agency__seo-services-single+.digital-agency__seo-services-single {
    margin-left: 143px;
}



.digital-agency__seo-services-icon img {
    transition: all 500ms ease;
}

.digital-agency__seo-services-single:hover .digital-agency__seo-services-icon img {
    transform: rotateY(180deg);
}

.digital-agency__seo-services-title {
    font-size: 22px;
    color: var(--thm-base);
    font-family: var(--thm-font);
    font-weight: 400;
    margin-top: 21px;
}

.increasing-traffic {
    position: relative;
    display: block;
    margin-top: 152px;
}

.increasing-traffic__left {
    position: relative;
    display: block;
}

.increasing-traffic__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 30px;
}

.increasing-traffic__text {
    font-size: 22px;
    color: #656565;
    margin: 0;
    line-height: 30px;
    padding-bottom: 20px;
}

.increasing-traffic__text-2 {
    color: #656565;
    margin: 0;
}

.increasing-traffic__btn {
    margin-top: 35px;
}

.increasing-traffic__right {
    position: relative;
    display: block;
    margin-left: 120px;
}

.increasing-traffic__img {
    position: relative;
    display: block;
}

.increasing-traffic__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# About Agency Three
--------------------------------------------------------------*/
.about-agency-three {
    position: relative;
    display: block;
    padding: 70px 0 200px;
}

.about-agency-three-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.about-agency-three-shape-1 {
    position: absolute;
    right: 175px;
    bottom: 350px;
    border-radius: 50%;
    background-color: rgb(240, 221, 255);
    width: 15px;
    height: 15px;
}

.about-agency-three__img {
    position: relative;
    display: block;
    margin-left: -265px;
    margin-right: 70px;
}

.about-agency-three__img img {
    width: 100%;
}

.about-agency-three__right {
    position: relative;
    display: block;
    margin-right: -13px;
    margin-top: 100px;
}



.about-agency-three__right .section-title__bg {
    transform: rotate(0);
    top: -70px;
    left: -8px;
}

.about-agency-three__text-1 {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    line-height: 30px;
}

.about-agency-three__text-2 {
    margin: 0;
    color: var(--thm-black);
    opacity: .8;
    padding-top: 29px;
    padding-bottom: 40px;
}

.about-agency-three__btn {
    padding: 18px 60px 14px;
}

/*--------------------------------------------------------------
# Seo Services
--------------------------------------------------------------*/
.seo-services {
    position: relative;
    display: block;
    padding: 171px 0 381px;
}

.seo-services-shape-1 {
    position: absolute;
    top: 305px;
    right: 0;
    z-index: -1;
}

.seo-services-shape-2 {
    position: absolute;
    top: 60px;
    right: 125px;
    border-radius: 10px;
    background-image: -moz-linear-gradient(106deg, rgb(118, 252, 241) 0%, rgb(183, 234, 240) 100%);
    background-image: -webkit-linear-gradient(106deg, rgb(118, 252, 241) 0%, rgb(183, 234, 240) 100%);
    background-image: -ms-linear-gradient(106deg, rgb(118, 252, 241) 0%, rgb(183, 234, 240) 100%);
    opacity: 0.4;
    box-shadow: 8px 13.856px 30px 0px rgb(181, 179, 185);
    width: 28px;
    height: 28px;
}

.seo-services-shape-3 {
    position: absolute;
    bottom: 298px;
    right: 550px;
}





.seo-services__top {
    position: relative;
    display: block;
    margin-bottom: 112px;
}

.seo-services__top-left {
    position: relative;
    display: block;
}

.seo-services__section-title {
    position: relative;
    display: block;
}

.seo-services__section-title-tagline {
    font-size: 22px;
    color: var(--thm-primary);
    font-weight: 700;
}

.seo-services__section-title-title {
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
    margin-top: 19px;
}

.seo-services__btn-box {
    position: relative;
    display: block;
    float: right;
    margin-top: 65px;
}

.seo-services__btn {
    position: relative;
    font-size: 20px;
    color: var(--thm-primary);
    display: inline-block;
    border: 1px solid #f2f2f2;
    padding: 18px 25px 12px;
    transition: all 500ms ease;
}

.seo-services__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    transition: all 500ms ease;
    transform: scaleX(0);
    z-index: -1;
}

.seo-services__btn:hover {
    color: var(--thm-base);
    border: 1px solid transparent;
}

.seo-services__btn:hover:before {
    transform: scaleX(1);
}

.seo-services__bottom {
    position: relative;
    display: block;
}

.seo-services__single {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(186, 184, 191, .35);
    text-align: center;
    padding: 55px 50px 75px;
    margin-bottom: 30px;
}

.seo-services__single-1 {
    margin-top: 145px;
}





.seo-services__single-4 {
    margin-top: 145px;
}

.seo-services__icon {
    position: relative;
    height: 115px;
    width: 115px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 500ms ease;
    z-index: 1;
}

.seo-services__single:hover .seo-services__icon {
    background-color: var(--thm-primary);
}

.seo-services__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    content: "";
    background-image: -moz-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
    background-image: -webkit-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
    background-image: -ms-linear-gradient(137deg, rgb(251, 16, 48) 0%, rgb(253, 58, 191) 100%);
    box-shadow: 8px 13.856px 18px 0px rgb(186, 186, 186, .35);
    transform: scale(1);
    transition: all 500ms ease;
    z-index: -1;
}

.seo-services__single:hover .seo-services__icon:before {
    transform: scale(0);
}

.seo-services__icon img {
    transition: all 500ms ease;
}

.seo-services__single:hover .seo-services__icon img {
    transform: rotateY(180deg);
}

.seo-services__icon-2:before {
    background-image: -moz-linear-gradient(134deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
}

.seo-services__icon-3:before {
    background-image: -moz-linear-gradient(134deg, rgb(61, 214, 224) 0%, rgb(76, 240, 157) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(61, 214, 224) 0%, rgb(76, 240, 157) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(61, 214, 224) 0%, rgb(76, 240, 157) 100%);
}

.seo-services__icon-4:before {
    background-image: -moz-linear-gradient(134deg, rgb(67, 67, 238) 0%, rgb(196, 83, 254) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(67, 67, 238) 0%, rgb(196, 83, 254) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(67, 67, 238) 0%, rgb(196, 83, 254) 100%);
}

.seo-services__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    margin-top: 32px;
    margin-bottom: 24px;
}

.seo-services__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.seo-services__title a:hover {
    color: var(--thm-primary);
}

.seo-services__text {
    margin: 0;
    opacity: .8;
    color: var(--thm-black);
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
    position: relative;
    display: block;
    padding: 0 0 516px;
}

.testimonial-three-shape-1 {
    position: absolute;
    top: -492px;
    right: 0;
    z-index: -1;
}



.testimonial-three-shape-2 {
    position: absolute;
    top: -131px;
    left: 95px;
}



.testimonial-three-shape-3 {
    position: absolute;
    top: 80px;
    right: 300px;
}



.testimonial-three-shape-4 {
    position: absolute;
    top: 160px;
    right: 0;
}



.testimonial-three__section-title {
    margin-bottom: 142px;
}

.testimonial-three__img-1 {
    position: absolute;
    top: 210px;
    left: -293px;
    height: 108px;
    width: 108px;
    border-radius: 50%;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
}

.testimonial-three__img-1 img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-three__img-2 {
    position: absolute;
    top: 210px;
    right: -293px;
    height: 108px;
    width: 108px;
    border-radius: 50%;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
}

.testimonial-three__img-2 img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-three__img-3 {
    position: absolute;
    bottom: -260px;
    left: 165px;
    height: 108px;
    width: 108px;
    border-radius: 50%;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
}

.testimonial-three__img-3 img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-three__img-4 {
    position: absolute;
    bottom: -260px;
    right: 165px;
    height: 108px;
    width: 108px;
    border-radius: 50%;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
}

.testimonial-three__img-4 img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-three__main-box {
    position: relative;
    display: block;
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 5px 8.66px 28px 0px rgb(207, 204, 204, .35);
    padding-left: 25px;
    padding-right: 25px;
}

.testimonial-three__inner {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 5px 8.66px 28px 0px rgb(207, 204, 204, .35);
    padding-left: 25px;
    padding-right: 25px;
    top: -25px;
}

.testimonial-three__inner-two {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 5px 8.66px 28px 0px rgb(207, 204, 204, .35);
    top: -25px;
    padding-top: 131px;
    padding-bottom: 55px;
}





.testimonial-three__text {
    font-size: 22px;
    margin: 0;
    opacity: .8;
    line-height: 30px;
}

.testimonial-three__client-info {
    position: relative;
    display: block;
    padding-top: 48px;
}

.testimonial-three__client-name {
    font-size: 22px;
    color: var(--thm-gray);
    opacity: .9;
    line-height: 32px;
    margin-bottom: 6px;
}

.testimonial-three__client-title {
    font-size: 18px;
    margin: 0;
    opacity: .8;
}

.testimonial-three__carousel.owl-carousel .owl-dots {
    counter-reset: count;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -207px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0 !important;
}

.testimonial-three__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: block;
    width: 35px;
    height: 51px;
    text-align: left;
    border-radius: 0%;
    opacity: 1;
    background-color: transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-three__carousel.owl-carousel .owl-dots .owl-dot+.owl-dot {
    margin-left: 25px;
}

.testimonial-three__carousel.owl-carousel .owl-dots .owl-dot:before {
    position: absolute;
    height: 51px;
    width: 35px;
    text-align: center;
    color: #c4c4c4;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    border-bottom: 1px solid #e5e5e5;
    counter-increment: count;
    content: ""counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-three__carousel.owl-carousel .owl-dot span {
    display: none;
}

.testimonial-three__carousel.owl-carousel .owl-dot.active:before {
    color: var(--thm-primary);
    border-bottom: 1px solid var(--thm-primary);
}

.testimonial-three__carousel.owl-carousel .owl-dot:focus,
.testimonial-three__carousel.owl-carousel .owl-dot.active {
    outline: none;
    border: none;
}

/*--------------------------------------------------------------
# Pricing Plan Two
--------------------------------------------------------------*/
.pricing-plan-two {
    position: relative;
    display: block;
    padding: 0 0 235px;
}

.pricing-plan-two-shape-1 {
    position: absolute;
    top: -27px;
    left: 150px;
    border-radius: 50%;
    background-color: rgb(250, 192, 211);
    width: 15px;
    height: 15px;
}

.pricing-plan-two-shape-2 {
    position: absolute;
    top: -27px;
    right: 240px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(251, 131, 219);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.pricing-plan-two-shape-3 {
    position: absolute;
    bottom: 665px;
    left: 0;
}



.pricing-plan-two .section-title {
    margin-bottom: 120px;
}

.pricing-plan-two__section-title-text {
    font-size: 22px;
    color: var(--thm-black);
    opacity: .8;
    margin: 0;
    padding-top: 24px;
    line-height: 30px;
}

.pricing-plan-two__single {
    position: relative;
    display: block;
    background-color: rgb(253, 253, 253);
    box-shadow: 8px 13.856px 30px 0px rgb(181, 179, 185, .35);
    text-align: center;
    padding: 80px 0px 70px;
    margin-bottom: 30px;
}

.pricing-plan-two__single:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    content: "";
    background-image: -moz-linear-gradient(-176deg, rgb(254, 50, 93) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(-176deg, rgb(254, 50, 93) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(-176deg, rgb(254, 50, 93) 0%, rgb(255, 255, 255) 100%);
}

.pricing-plan-two__single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: transparent;
    border: 1px solid var(--thm-primary);
    transition: all 500ms ease;
    transform: scaleY(0);
}

.pricing-plan-two__single:hover:before {
    transform: scaleY(1);
}

.pricing-plan-two__title-box {
    position: relative;
    display: block;
    margin-bottom: 52px;
    z-index: 2;
}

.pricing-plan-icon {
    position: absolute;
    top: -8px;
    left: 46%;
    transform: translateX(-50%);
    right: 0;
    z-index: -1;
}



.pricing-plan-two__tagline {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    opacity: .9;
    z-index: 2;
}

.pricing-plan-two__title {
    font-size: 26px;
    color: var(--thm-gray);
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 22px;
    margin-top: 10px;
    z-index: 2;
}

.pricing-plan-two__price {
    font-size: 50px;
    color: var(--thm-primary);
    font-weight: 700;
    line-height: 60px;
    z-index: 2;
}

.pricing-plan-two__price span {
    font-size: 38px;
}

.pricing-plan-two__list {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.pricing-plan-two__list li {
    opacity: .7;
}

.pricing-plan-two__list li+li {
    margin-top: 4px;
}

.pricing-plan-two__btn {
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 18px 35px 14px;
    border: 2px solid #f6f5f5;
    background-color: var(--thm-base);
    background-image: inherit;
    color: var(--thm-black);
}

.pricing-plan-two__btn:hover {
    color: var(--thm-base);
    border: 2px solid transparent;
}

.pricing-plan-two__btn:before {
    border-radius: 30px;
    background-image: -moz-linear-gradient(146deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
    background-image: -webkit-linear-gradient(146deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
    background-image: -ms-linear-gradient(146deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
}

.pricing-plan-two__single-2:after {
    background-image: -moz-linear-gradient(-176deg, rgb(98, 240, 164) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(-176deg, rgb(98, 240, 164) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(-176deg, rgb(98, 240, 164) 0%, rgb(255, 255, 255) 100%);
}

.pricing-plan-two__single-3:after {
    background-image: -moz-linear-gradient(-176deg, rgb(228, 105, 254) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(-176deg, rgb(228, 105, 254) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(-176deg, rgb(228, 105, 254) 0%, rgb(255, 255, 255) 100%);
}

.pricing-plan-two__price-2 {
    color: #62f0a4;
}

.pricing-plan-two__price-3 {
    color: #e469fe;
}

/*--------------------------------------------------------------
# Logo Integrations
--------------------------------------------------------------*/
.logo-integrations {
    position: relative;
    display: block;
    padding: 0 0 270px;
}

.logo-integrations-shape-1 {
    position: absolute;
    top: 115px;
    left: 150px;
    border-radius: 50%;
    background-color: rgb(152, 245, 195);
    width: 15px;
    height: 15px;
}

.logo-integrations-shape-2 {
    position: absolute;
    top: 50px;
    right: 90px;
}



.logo-integrations-shape-3 {
    position: absolute;
    bottom: 180px;
    left: 235px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(236, 186, 250);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.logo-integrations__container {
    position: relative;
    display: block;
    width: 100%;
}

.logo-integrations__shape {
    position: relative;
    display: block;
    background-color: rgb(246, 255, 250);
    width: 1015px;
    height: 1015px;
    border-radius: 50%;
    margin: 0 auto;
}

.logo-integrations__title-box {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    text-align: center;
}

.logo-integrations__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

.logo-integrations__invision {
    position: absolute;
    top: 325px;
    left: 50%;
    transform: translateX(-50%);
}



.logo-integrations__jd {
    position: absolute;
    top: 580px;
    left: 50%;
    transform: translateX(-50%);
}



.logo-integrations__fb-chat {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
}



.logo-integrations__ai {
    position: absolute;
    top: 510px;
    left: 160px;
}



.logo-integrations__dropbox {
    position: absolute;
    top: 510px;
    right: 135px;
}



.logo-integrations__inner a {
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 7px 12.124px 35px 0px rgb(196 196 196 / 35%);
    width: 119px;
    height: 119px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.logo-integratins__slack-and-diamond a {
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 7px 12.124px 35px 0px rgb(196, 196, 196, .35);
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-integrations__slack {
    position: absolute;
    top: 490px;
    left: -290px;
}



.logo-integrations__diamond {
    position: absolute;
    top: 490px;
    right: -290px;
}



/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
    position: relative;
    display: block;
    padding: 0 0 286px;
}

.blog-three__top {
    position: relative;
    display: block;
}

.blog-three-shape-1 {
    position: absolute;
    top: 0;
    right: 170px;
}

.blog-three-shape-2 {
    position: absolute;
    top: 174px;
    left: 0;
    z-index: -1;
}





.blog-three__top .section-title {
    margin-bottom: 183px;
}

.blog-three__right {
    position: relative;
    display: block;
    float: right;
    margin-top: 116px;
}



.blog-three__single {
    position: relative;
    display: block;
    padding: 59px 30px 60px;
    margin-bottom: 30px;
    z-index: 1;
}

.blog-three__single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgb(255, 255, 255);
    box-shadow: 8px 13.856px 30px 0px rgb(181, 179, 185, .35);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.blog-three__single:hover:before {
    transform: scaleY(1.0);
}

.blog-three__date {
    color: var(--thm-primary);
    margin: 0;
}

.blog-three__title {
    font-size: 26px;
    line-height: 34px;
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-weight: 400;
    margin-top: 11px;
    margin-bottom: 20px;
}

.blog-three__title a {
    color: var(--thm-gray);
    transition: all 500ms ease;
}

.blog-three__title a:hover {
    color: var(--thm-primary);
}

.blog-three__text {
    margin: 0;
    opacity: .8;
}

.blog-three__user {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.blog-three__user-img {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.blog-three__user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.blog-three__user-content {
    margin-left: 25px;
}

.blog-three__user-name {
    color: var(--thm-gray);
    font-size: 16px;
    font-family: var(--thm-font);
    opacity: .8;
}

.blog-three__user-title {
    color: var(--thm-primary);
    margin: 0;
}

/*--------------------------------------------------------------
# Support
--------------------------------------------------------------*/
.support {
    position: relative;
    display: block;
    padding: 0 0 374px;
}

.support-shape-1 {
    position: absolute;
    top: -63px;
    right: 210px;
}



.support-shape-2 {
    position: absolute;
    bottom: 455px;
    right: 0;
}



.support__left {
    position: relative;
    display: block;
    margin-right: -23px;
}

.support__left .section-title {
    margin-bottom: 57px;
}

.support__left .section-title__title {
    font-size: 45px;
}



.support__form input[type="text"],
.support__form input[type="email"],
.support__form textarea {
    height: 60px;
    width: 100%;
    border: 1px solid #ececf5;
    padding: 0 30px;
    font-size: 16px;
    color: var(--thm-gray);
    margin-bottom: 30px;
    outline: none;
    transition: all 500ms ease;
}

.support__form textarea {
    height: 150px;
    padding: 25px 30px 30px;
    transition: all 500ms ease;
}

.support__btn {
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    padding: 18px 35px 14px;
}

.support__btn:before {
    border-radius: 30px;
}

.support__form input[type="text"]:focus {
    background-color: rgb(255, 255, 255);
    box-shadow: 6px 10.392px 30px 0px rgb(193, 193, 193, .35);
    border: 1px solid transparent;
    outline: none;
}

.support__form input[type="email"]:focus {
    background-color: rgb(255, 255, 255);
    box-shadow: 6px 10.392px 30px 0px rgb(193, 193, 193, .35);
    border: 1px solid transparent;
    outline: none;
}

.support__form textarea:focus {
    background-color: rgb(255, 255, 255);
    box-shadow: 6px 10.392px 30px 0px rgb(193, 193, 193, .35);
    border: 1px solid transparent;
    outline: none;
}

.support__right {
    position: relative;
    display: block;
    margin-left: 180px;
    margin-right: 113px;
    margin-top: 68px;
}

.support__img {
    position: relative;
    display: block;
}

.support__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# Subscribe Three
--------------------------------------------------------------*/
.subscribe-three {
    position: relative;
    display: block;
    padding: 0 0 283px;
}

.subscribe-three-shape {
    position: absolute;
    top: -390px;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 892px;
    z-index: -1;
}

/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/
.site-footer-three {
    padding: 223px 0 0;
}







.footer-widget__services-list li+li {
    margin-top: 10px;
}

.footer-widget__services-list li a {
    font-size: 18px;
    opacity: .8;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__services-list li a:hover {
    color: var(--thm-primary);
}

.site-footer-three .site-footer__bottom-app a:hover {
    color: var(--thm-primary);
}

.site-footer-three .site-footer__bottom {
    padding: 95px 0 30px;
}

.site-footer-three .site-footer-shape-2 {
    position: absolute;
    top: 135px;
    left: 50px;
}

.site-footer-three .footer-widget__company {
    margin-left: 0;
}

/*--------------------------------------------------------------
# Banner Four
--------------------------------------------------------------*/
.banner-four {
    position: relative;
    display: block;
    padding: 110px 0 192px;
}

.banner-four-bg {
    position: absolute;
    top: -150px;
    left: 0;
    right: 0;
    height: 1295px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.banner-four__left {
    position: relative;
    display: block;
    margin-top: 160px;
}

.banner-four__title {
    font-size: 70px;
    font-weight: 700;
    line-height: 75px;
}

.banner-four__text {
    font-size: 22px;
    color: var(--thm-black);
    opacity: .8;
    margin: 0;
    line-height: 38px;
    padding-top: 17px;
    padding-bottom: 50px;
}

.banner-four__get-started-button {
    position: relative;
    display: flex;
    align-items: center;
}



.banner-four__btn {
    padding: 23px 45px 19px;
    background-image: -moz-linear-gradient(95deg, rgb(118, 248, 225) 0%, rgb(3, 215, 208) 100%);
    background-image: -webkit-linear-gradient(95deg, rgb(118, 248, 225) 0%, rgb(3, 215, 208) 100%);
    background-image: -ms-linear-gradient(95deg, rgb(118, 248, 225) 0%, rgb(3, 215, 208) 100%);
}

.banner-four__intro-video {
    margin-left: 30px;
}

.banner-four__intro-video__text {
    font-size: 20px;
    color: var(--thm-black);
    transition: all 500ms ease;
}

.banner-four__intro-video__text:hover {
    color: var(--thm-primary);
}

.banner-four__right {
    position: relative;
    display: block;
    margin-right: -355px;
}

.banner-four__img {
    position: relative;
    display: block;
    margin-top: 275px;
}

.banner-four__img>img {
    width: 100%;
}

.banner-four__small-img {
    position: absolute;
    top: -319px;
    left: 323px;
}



/*--------------------------------------------------------------
# Super Apps
--------------------------------------------------------------*/
.super-apps {
    position: relative;
    display: block;
    padding: 100px 0 220px;
}

.super-apps__single {
    position: relative;
    display: block;
    text-align: center;
    padding: 0 37px 0;
    margin-bottom: 30px;
}

.super-apps__img {
    position: relative;
    display: block;
}

.super-apps__img img {
    width: auto;
    transition: all 500ms ease;
    transform: scale(1)
}

.super-apps__single:hover .super-apps__img img {
    transform: scale(1.05);
}

.super-apps__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 27px;
    margin-top: 63px;
}

.super-apps__text {
    margin: 0;
    color: var(--thm-black);
    opacity: .8;
}

.super-apps__img-shape-1 {
    position: absolute;
    top: 153px;
    right: 61px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(-35deg, rgb(251, 184, 249) 1%, rgb(255, 247, 252) 100%);
    background-image: -webkit-linear-gradient(-35deg, rgb(251, 184, 249) 1%, rgb(255, 247, 252) 100%);
    background-image: -ms-linear-gradient(-35deg, rgb(251, 184, 249) 1%, rgb(255, 247, 252) 100%);
    width: 16px;
    height: 16px;
}

.super-apps__img-shape-2 {
    position: absolute;
    bottom: -19px;
    left: 102px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(134deg, rgb(156, 104, 251) 1%, rgb(230, 243, 248) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(156, 104, 251) 1%, rgb(230, 243, 248) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(156, 104, 251) 1%, rgb(230, 243, 248) 100%);
    width: 16px;
    height: 16px;
}

.super-apps-style-2-top {
    background-image: -moz-linear-gradient(-35deg, rgb(255, 203, 185) 1%, rgb(255, 247, 252) 100%);
    background-image: -webkit-linear-gradient(-35deg, rgb(255, 203, 185) 1%, rgb(255, 247, 252) 100%);
    background-image: -ms-linear-gradient(-35deg, rgb(255, 203, 185) 1%, rgb(255, 247, 252) 100%);
}

.super-apps-style-2-bottom {
    background-image: -moz-linear-gradient(134deg, rgb(30, 214, 205) 1%, rgb(230, 243, 248) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(30, 214, 205) 1%, rgb(230, 243, 248) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(30, 214, 205) 1%, rgb(230, 243, 248) 100%);
}

.super-apps-style-3-top {
    background-image: -moz-linear-gradient(-35deg, rgb(89, 254, 139) 1%, rgb(255, 247, 252) 100%);
    background-image: -webkit-linear-gradient(-35deg, rgb(89, 254, 139) 1%, rgb(255, 247, 252) 100%);
    background-image: -ms-linear-gradient(-35deg, rgb(89, 254, 139) 1%, rgb(255, 247, 252) 100%);
}

.super-apps-style-3-bottom {
    background-image: -moz-linear-gradient(134deg, rgb(255, 60, 179) 1%, rgb(230, 243, 248) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(255, 60, 179) 1%, rgb(230, 243, 248) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(255, 60, 179) 1%, rgb(230, 243, 248) 100%);
}



/*--------------------------------------------------------------
# Our Software
--------------------------------------------------------------*/
.our-software {
    position: relative;
    display: block;
    z-index: 1;
    padding: 255px 0 252px;
}

.our-software-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -1;
}

.our-software-shape-1 {
    position: absolute;
    bottom: 246px;
    left: 370px;
    border-radius: 50%;
    background-color: rgb(236, 186, 250);
    width: 15px;
    height: 15px;
}

.our-software-shape-2 {
    position: absolute;
    top: 174px;
    right: 130px;
}



.our-software-shape-3 {
    position: absolute;
    bottom: 0;
    right: 130px;
}



.our-software__left {
    position: relative;
    display: block;
}

.our-software__section-title {
    position: relative;
    display: block;
}

.our-software__tagline {
    font-size: 22px;
    color: #04d7d1;
    font-weight: 700;
    line-height: 32px;
}

.our-software__title {
    font-size: 49px;
    font-weight: 700;
    line-height: 55px;
    margin-top: 15px;
    margin-bottom: 6px;
}

.our-software__sub-title {
    font-size: 45px;
    font-weight: 400;
    line-height: 50px;
}

.our-software__text {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    line-height: 30px;
    padding-top: 35px;
    padding-bottom: 35px;
}

.our-software__btn {
    background-image: -moz-linear-gradient(27deg, rgb(9, 216, 209) 0%, rgb(109, 246, 223) 100%);
    background-image: -webkit-linear-gradient(27deg, rgb(9, 216, 209) 0%, rgb(109, 246, 223) 100%);
    background-image: -ms-linear-gradient(27deg, rgb(9, 216, 209) 0%, rgb(109, 246, 223) 100%);
    box-shadow: 8px 13.856px 18px 0px rgb(96, 211, 192, .35);
}

.our-software__right {
    position: relative;
    display: block;
    margin-left: 40px;
    margin-right: -168px;
}

.our-software__img {
    position: relative;
    display: block;
}

.our-software__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# Software Feature
--------------------------------------------------------------*/
.software-feature {
    position: relative;
    display: block;
    padding: 0 0 190px;
}

.software-feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.software-feature-shape-1 {
    position: absolute;
    bottom: 290px;
    left: 30px;
    border-radius: 50%;
    background-color: rgb(236, 186, 250);
    width: 15px;
    height: 15px;
}

.software-feature__img {
    position: relative;
    display: block;
    margin-left: -285px;
    margin-right: 70px;
    margin-top: 50px;
}

.software-feature__img img {
    width: 100%;
}

.software-feature__content {
    position: relative;
    display: block;
}

.software-feature__content .section-title {
    position: relative;
    display: block;
    margin-right: -90px;
    margin-bottom: 36px;
}

.software-feature__content .section-title__tagline {
    color: #04d7d1;
}

.software-feature__text {
    font-size: 22px;
    color: var(--thm-black);
    line-height: 30px;
    opacity: .8;
}

.software-feature__list {
    position: relative;
    display: block;
    margin-bottom: 35px;
    margin-top: 22px;
    margin-right: 30px;
}

.software-feature__list li {
    position: relative;
    display: block;
    color: var(--thm-black);
    opacity: .8;
    padding-left: 25px;
}

.software-feature__list li+li {
    margin-top: 19px;
}

.software-feature__list li:before {
    position: absolute;
    top: 7px;
    left: 0;
    height: 11px;
    width: 11px;
    content: "";
    background-color: #999eff;
}

.software-feature__list li:nth-child(2):before {
    background-color: #ff677a;
}

.software-feature__list li:nth-child(3):before {
    background-color: #589cff;
}

.software-feature__btn {
    color: var(--thm-black);
    background-color: var(--thm-base);
    box-shadow: 7px 12.124px 16px 0px rgb(193, 209, 207);
    background-image: inherit;
}

/*--------------------------------------------------------------
# Software Feature Benefit
--------------------------------------------------------------*/
.software-feature-benefit {
    position: relative;
    display: block;
    padding: 333px 0 170px;
}

.software-feature-benefit-bg {
    position: absolute;
    top: 74px;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.software-feature-benefit-shape-1 {
    position: absolute;
    top: 0;
    left: 155px;
}



.software-feature-benefit-shape-2 {
    position: absolute;
    bottom: 254px;
    left: 105px;
}



.software-feature-benefit__left {
    position: relative;
    display: block;
    margin-top: 30px;
}

.software-feature-benefit__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
}

.software-feature-benefit__text {
    font-size: 22px;
    color: var(--thm-gray);
    margin: 0;
    line-height: 30px;
    opacity: .8;
    padding-top: 35px;
    padding-bottom: 28px;
}

.software-feature-benefit__list {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.software-feature-benefit__list li {
    position: relative;
    display: flex;
}

.software-feature-benefit__list li+li {
    margin-top: 23px
}



.software-feature-benefit__list li .icon i {
    font-size: 15px;
    color: #ff677a;
}

.software-feature-benefit__list li:last-child .icon i {
    color: #589cff;
}

.software-feature-benefit__list li .text {
    margin-left: 12px;
}

.software-feature-benefit__list li .text p {
    margin: 0;
    opacity: .8;
}

.software-feature-benefit__btn {
    box-shadow: 7px 12.124px 16px 0px rgb(193, 209, 207, .35);
    background-color: var(--thm-base);
    background-image: inherit;
    color: var(--thm-black);
}

.software-feature-benefit__img {
    position: relative;
    display: block;
    margin-left: 158px;
    margin-right: -325px;
}

.software-feature-benefit__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# Pricing Plan Three
--------------------------------------------------------------*/
.pricing-plan-three {
    position: relative;
    display: block;
    padding: 257px 0 311px;
}

.pricing-plan-three-shape-1 {
    position: absolute;
    top: 225px;
    right: 240px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(251, 131, 219);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.pricing-plan-three-shape-2 {
    position: absolute;
    top: 530px;
    left: 30px;
}



.pricing-plan-three-shape-3 {
    position: absolute;
    bottom: 60px;
    left: 105px;
}





.pricing-plan-three-shape-4 img {
    position: absolute;
    bottom: 229px;
    right: 120px;
}

.pricing-plan-three .section-title {
    margin-bottom: 120px;
}

.pricing-plan-three .section-title__tagline {
    color: #04d7d1;
}

.pricing-plan-three__section-title-text {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
    opacity: .8;
    padding-top: 26px;
}

.pricing-plan-three__single {
    position: relative;
    display: block;
    background-color: rgb(253, 253, 253);
    box-shadow: 8px 13.856px 30px 0px rgb(181, 179, 185, .35);
    text-align: center;
    padding: 25px 20px 70px;
    margin-bottom: 30px;
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

.pricing-plan-three__single:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 4px;
    content: "";
    width: 8px;
    background-image: -moz-linear-gradient(90deg, rgb(251, 194, 204) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(251, 194, 204) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(251, 194, 204) 0%, rgb(255, 255, 255) 100%);
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

.pricing-plan-three__top {
    position: relative;
    height: 225px;
    width: 225px;
    border-radius: 50%;
    background-color: #fff4f6;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px dashed #fbc6d0;
}

.pricing-plan-three__tagline {
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--thm-font);
}

.pricing-plan-three__price {
    font-size: 50px;
    font-weight: 700;
    color: var(--thm-primary);
    line-height: 60px;
    margin-top: 4px;
    margin-bottom: 10px;
}

.pricing-plan-three__title {
    font-size: 22px;
    color: var(--thm-gray);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 32px;
}

.pricing-plan-three__list {
    position: relative;
    display: block;
    margin-bottom: 60px;
    margin-top: 35px;
}

.pricing-plan-three__list li {
    opacity: .7;
}

.pricing-plan-three__list li+li {
    margin-top: 4px;
}

.pricing-plan-three__btn {
    background-color: var(--thm-base);
    box-shadow: 7px 12.124px 16px 0px rgb(193, 209, 207, .35);
    background-image: inherit;
    color: var(--thm-primary);
    font-size: 18px;
    text-transform: uppercase;
    padding: 18px 35px 14px;
}

.pricing-plan-three__btn:before {
    background-image: -moz-linear-gradient(146deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
    background-image: -webkit-linear-gradient(146deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
    background-image: -ms-linear-gradient(146deg, rgb(255, 90, 113) 0%, rgb(255, 150, 105) 100%);
}

.pricing-plan-three__single-2:before {
    background-image: -moz-linear-gradient(90deg, rgb(246, 214, 253) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(246, 214, 253) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(246, 214, 253) 0%, rgb(255, 255, 255) 100%);
}

.pricing-plan-three__single-3:before {
    background-image: -moz-linear-gradient(88deg, rgb(190, 253, 220) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(88deg, rgb(190, 253, 220) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(88deg, rgb(190, 253, 220) 0%, rgb(255, 255, 255) 100%);
}

.pricing-plan-three__top-2 {
    background-color: #fdf3ff;
}

.pricing-plan-three__top-3 {
    background-color: #edfef5;
    border: 1px dashed #c0dfcf;
}

.pricing-plan-three__price-2 {
    color: #e469fe;
}

.pricing-plan-three__price-3 {
    color: #62f0a4;
}

/*--------------------------------------------------------------
# Testimonial Four
--------------------------------------------------------------*/
.testimonial-four {
    position: relative;
    display: block;
    padding: 0 0 146px;
}

.testimonial-four-bg {
    position: absolute;
    top: 165px;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.testimonial-four-shape-1 {
    position: absolute;
    bottom: 370px;
    left: 60px;
}



.testimonial-four-shape-2 {
    position: absolute;
    bottom: 0;
    right: 120px;
}



.testimonial-four .section-title {
    margin-bottom: 145px;
}

.testimonial-four .section-title__tagline {
    color: #04d7d1;
}



.testimonial-four__inner-one {
    position: relative;
    display: block;
}

.testimonial-four__single {
    position: relative;
    display: block;
    margin-bottom: 60px;
    padding-left: 45px;
}

.testimonial-four__single-inner-box {
    background-image: -moz-linear-gradient(35deg, rgb(251, 240, 255) 0%, rgb(244, 241, 255) 100%);
    background-image: -webkit-linear-gradient(35deg, rgb(251, 240, 255) 0%, rgb(244, 241, 255) 100%);
    background-image: -ms-linear-gradient(35deg, rgb(251, 240, 255) 0%, rgb(244, 241, 255) 100%);
    padding: 53px 90px 50px;
}

.testimonial-four__client-info {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.testimonial-four__client-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 6px;
}

.testimonial-four__client-title {
    font-size: 18px;
    margin: 0;
    opacity: .8;
}

.testimonial-four__text {
    font-size: 22px;
    margin: 0;
    opacity: .8;
    line-height: 30px;
}

.testimonial-four__user {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    right: 0;
    background-color: rgb(151, 121, 251);
    box-shadow: 9px 15.588px 40px 0px rgb(102, 102, 102, .35);
}

.testimonial-four__user>img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-four__quote-icon {
    position: absolute;
    top: 45px;
    right: 40px;
    ;
}



.testimonial-four__single-inner-box-2 {
    background-image: -moz-linear-gradient(-124deg, rgb(236, 255, 255) 0%, rgb(243, 246, 255) 100%);
    background-image: -webkit-linear-gradient(-124deg, rgb(236, 255, 255) 0%, rgb(243, 246, 255) 100%);
    background-image: -ms-linear-gradient(-124deg, rgb(236, 255, 255) 0%, rgb(243, 246, 255) 100%);
}

.testimonial-four__single-inner-box-3 {
    background-image: -moz-linear-gradient(35deg, rgb(251, 240, 255) 0%, rgb(244, 241, 255) 100%);
    background-image: -webkit-linear-gradient(35deg, rgb(251, 240, 255) 0%, rgb(244, 241, 255) 100%);
    background-image: -ms-linear-gradient(35deg, rgb(251, 240, 255) 0%, rgb(244, 241, 255) 100%);
    padding: 53px 90px 80px;
}

.testimonial-four__carousel {
    position: relative;
    display: block;
}

.testimonial-four__carousel.owl-carousel .owl-stage-outer {
    padding-left: 50px;
    margin-left: -50px;
}

.testimonial-four__carousel.owl-carousel .owl-dots {
    position: absolute;
    top: 58%;
    right: -200px;
    margin: 0 !important;
    transform: translateY(-50%);
    bottom: 0;
}

.testimonial-four__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 2px;
    background-color: #e5e5e5;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.testimonial-four__carousel.owl-carousel .owl-dots .owl-dot+.owl-dot {
    margin-left: 20px;
}

.testimonial-four__carousel.owl-carousel .owl-dot.active {
    background-color: var(--thm-primary);
}

.testimonial-four__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.testimonial-four__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Subscribe Four
--------------------------------------------------------------*/
.subscribe-four {
    position: relative;
    display: block;
    padding: 0 0 257px;
}

.subscribe-four-shape-1 {
    position: absolute;
    top: 83px;
    right: 0;
}



.subscribe-four-shape {
    position: absolute;
    top: 115px;
    right: 560px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(232, 179, 255);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.subscribe-four-shape-2 {
    position: absolute;
    bottom: 280px;
    left: 120px;
}



.subscribe-four__img {
    position: relative;
    display: block;
    margin-left: -70px;
    margin-right: 70px;
}

.subscribe-four__img img {
    width: 100%;
}

.subscribe-four__right {
    position: relative;
    display: block;
    margin-left: 45px;
    margin-top: 335px;
}

.subscribe-four__form-box {
    position: relative;
    display: block;
}

.subsribe-four__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 13px;
}

.subscribe-four__sub-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
}

.subscribe-four__sub-title span {
    color: #5a55fb;
}

.subscribe-four__form {
    position: relative;
    display: block;
    margin-top: 60px;
}

.subscribe-four__form input[type="email"] {
    height: 80px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: 12.5px 21.651px 18px 0px rgb(214 214 214 / 45%);
    border: none;
    outline: none;
    border-radius: 40px;
    padding-left: 40px;
    padding-right: 200px;
    color: var(--thm-gray);
    font-size: 16px;
}

.subscribe-four__btn {
    font-size: 22px;
    color: var(--thm-base);
    border: none;
    background-color: transparent;
    padding: 19px 40px 13px;
    border-radius: 30px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;
}

.subscribe-four__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 30px;
    background-image: -moz-linear-gradient(90deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(251, 16, 48) 0%, rgb(255, 54, 99) 100%);
    transform: scale(2, 2);
    -webkit-transform-origin: left center;
    transform-origin: right center;
    transition: transform 500ms linear;
    transition-timing-function: ease-out;
    z-index: -1;
}

.subscribe-four__btn:hover {
    color: var(--thm-base);
    background-color: var(--thm-black);
}

.subscribe-four__btn:hover:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/*--------------------------------------------------------------
# Site Footer Four
--------------------------------------------------------------*/
.site-footer-four {
    padding: 208px 0 0;
}

.site-footer-four-shape-1 {
    position: absolute;
    top: 0;
    left: 750px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(255, 199, 206);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

.site-footer-four-shape-2 {
    position: absolute;
    top: 30px;
    right: 230px;
}



.site-footer-four .footer-widget__about-social-list a:before {
    background-color: #09d8d1;
}

.site-footer-four .footer-widget__company-list li a:hover {
    color: #09d8d1;
}

.site-footer-four .footer-widget__solution-list li a:hover {
    color: #09d8d1;
}

.site-footer-four .site-footer__bottom-app a {
    color: #585858;
}

.site-footer-four .site-footer-shape-2 {
    bottom: 100px;
}

.site-footer-four .site-footer-shape-3 {
    bottom: 220px;
}

/*--------------------------------------------------------------
# Portfolio Titles
--------------------------------------------------------------*/
.portfolio-titles {
    position: relative;
    display: block;
    padding: 60px 0 85px;
}

.portfolio-titles__left {
    position: relative;
    display: block;
    margin-top: 197px;
}

.portfolio-titles__left:before {
    position: absolute;
    bottom: -91px;
    left: -1000000px;
    right: -30px;
    height: 1px;
    background-color: #eaeaea;
    content: "";
}

.portfolio-titles__section-title {
    position: relative;
    display: block;
}

.portfolio-titles__tagline {
    font-size: 22px;
    color: var(--thm-primary);
    font-weight: 700;
}

.portfolio-titles__title {
    font-size: 69px;
    font-weight: 700;
    line-height: 75px;
    margin-top: 9px;
    margin-bottom: 25px;
    position: relative;
}

.portfolio-titles__title:before {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 10px;
    content: "";
    background-color: #fee5ea;
    z-index: -1;
}

.portfolio-titles__title:after {
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 123px;
    height: 10px;
    content: "";
    background-color: #e6fdff;
    z-index: -1;
}

.portfolio-titles__text {
    font-size: 18px;
    color: var(--thm-black);
    opacity: .8;
    margin: 0;
}

.portfolio__titles__img {
    position: relative;
    display: block;
    margin-left: 210px;
    margin-right: -85px;
}

.portfolio__titles__img img {
    width: 100%;
}

.portfolio-titles__big-text {
    position: absolute;
    bottom: 30px;
    left: -120px;
    font-size: 200px;
    color: #f4f4f4;
    font-family: var(--thm-font-nunito);
    z-index: -1;
}

/*--------------------------------------------------------------
# project
--------------------------------------------------------------*/
.project {
    position: relative;
    display: block;
    padding: 185px 0 200px;
}

.project__single-1 {
    position: relative;
    display: block;
    margin-bottom: 155px;
}

.project__img {
    position: relative;
    display: block;
    margin-right: -15px;
}

.project__img img {
    width: 100%;
}

.project__content {
    position: relative;
    display: block;
    margin-top: 100px;
    margin-left: 100px;
    margin-right: 90px;
}

.project__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
}

.project__text {
    font-size: 18px;
    margin: 0;
    opacity: .8;
    color: var(--thm-black);
    padding-top: 17px;
    padding-bottom: 26px;
}

.project__btn {
    font-size: 20px;
    color: var(--thm-black);
    transition: all 500ms ease;
}

.project__btn i {
    font-size: 15px;
}

.project__btn:hover {
    color: var(--thm-primary);
}


.project__single-2 {
    position: relative;
    display: block;
    margin-bottom: 155px;
}

.project__content-2 {
    position: relative;
    display: block;
    margin-top: 100px;
}

.project__img-2 {
    position: relative;
    display: block;
    margin-left: 128px;
    margin-right: 57px;
}

.project__img-2 img {
    width: 100%;
}

.project__single-1.marb-0 {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hire Us
--------------------------------------------------------------*/
.hire-us {
    position: relative;
    display: block;
    background-color: #fff2f5;
    padding: 70px 0 110px;
}

.hire-us__img {
    position: relative;
    display: block;
    margin-right: 38px;
    z-index: 2;
}

.hire-us__img img {
    width: 100%;
}

.hire-us-img-shape {
    position: absolute;
    bottom: -26px;
    left: -38px;
    height: 422px;
    width: 636px;
    z-index: -1;
}

.hire-us__content {
    position: relative;
    display: block;
    margin-right: 30px;
    margin-top: 110px;
    margin-left: 12px;
    z-index: 2;
}

.hire-us__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
}

.hire-us__text {
    font-size: 22px;
    margin: 0;
    line-height: 30px;
    opacity: .8;
    padding-top: 13px;
    padding-bottom: 50px;
}

.hire-us__btn {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--thm-primary);
    border: 2px solid var(--thm-primary);
    border-radius: 30px;
    padding: 16px 45px 12px;
    z-index: 1;
    transition: all 500ms ease;
}

.hire-us__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    transform: scale(0);
    border-radius: 30px;
    transition: all 500ms ease;
    z-index: -1;
}

.hire-us__btn:hover {
    color: var(--thm-base);
    border: 2px solid transparent;
}

.hire-us__btn:hover:before {
    transform: scale(1);
}




.resturant-login__btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--thm-secondary);
    border: 2px solid var(--thm-secondary);
    border-radius: 30px;
        padding: 12px 40px 8px;
    z-index: 1;
    transition: all 500ms ease;
}

.resturant-login__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    transform: scale(0);
    border-radius: 30px;
    transition: all 500ms ease;
    z-index: -1;
}

.resturant-login__btn:hover {
    color: var(--thm-base);
    border: 2px solid transparent;
}

.resturant-login__btn:hover:before {
    transform: scale(1);
}

/*Subscribe Five*/
.subscribe-five {
    padding-top: 294px;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
    position: relative;
    display: block;
    padding: 200px 0 200px;
}

.project-two__single-1 {
    position: relative;
    display: block;
    margin-bottom: 220px;
}

.project-two__img {
    position: relative;
    display: block;
    margin-right: 50px;
}

.project-two__img img {
    width: 100%;
}

.project-two__content {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-top: 109px;
}

.project-two__year {
    font-size: 32px;
    font-weight: 700;
    color: var(--thm-primary);
    position: relative;
    display: block;
    margin-bottom: 21px;
    padding-left: 85px;
}

.project-two__year:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 65px;
    height: 1px;
    content: "";
    background-color: var(--thm-primary);
}

.project-two__text {
    font-size: 18px;
    color: #5969f0;
    text-transform: uppercase;
    margin: 0;
}

.project-two__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 27px;
}

.project-two__btn {
    position: relative;
    height: 45px;
    width: 45px;
    background-color: #ffedf1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
    font-size: 15px;
    border-radius: 50%;
    transition: all 500ms ease;
    z-index: 1;
}

.project-two__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    border-radius: 50%;
    transform: scale(0);
    transition: all 500ms ease;
    z-index: -1;
}

.project-two__btn:hover:before {
    transform: scale(1);
}

.project-two__btn:hover {
    color: var(--thm-base);
}

.project-two__btn i {
    font-size: 15px;
}

.project-two__single-2 {
    position: relative;
    display: block;
    margin-bottom: 220px;
}

.project-two__content-2 {
    position: relative;
    display: block;
    margin-left: 45px;
    margin-right: 84px;
    margin-top: 110px;
}

.project-two__img-2 {
    position: relative;
    display: block;
    margin-left: 48px;
}

.project-two__single-1.marb-0 {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Header
--------------------------------------------------------------*/
.portfolio-header {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
    background: transparent;
    border-bottom: 1px solid #98a1ff;
}



.portfolio-menu__btn-style {
    margin-left: 27px;
    color: var(--thm-base);
    border: 2px solid var(--thm-base);
}

.portfolio-menu .main-menu-wrapper__cart-and-search {
    padding: 76px 0 54px;
}

.portfolio-menu .main-menu__list>li>a,
.stricky-header.portfolio-menu .main-menu__list>li>a {
    color: var(--thm-base);
}

.portfolio-menu .main-menu-wrapper__cart {
    color: var(--thm-base);
}

.portfolio-menu .main-menu-wrapper__cart:hover {
    color: var(--thm-primary)
}

.portfolio-menu .main-menu-wrapper__search {
    color: var(--thm-base);
}

.portfolio-menu .main-menu-wrapper__search:hover {
    color: var(--thm-primary);
}

.stricky-header.portfolio-menu {
    background-color: var(--thm-black);
}

/*--------------------------------------------------------------
# Banner Titles
--------------------------------------------------------------*/
.banner-titles {
    position: relative;
    display: block;
    background-image: -moz-linear-gradient(90deg, rgb(82, 121, 248) 0%, rgb(146, 133, 251) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(82, 121, 248) 0%, rgb(146, 133, 251) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(82, 121, 248) 0%, rgb(146, 133, 251) 100%);
    padding: 340px 0 161px;
}

.banner-titles__content {
    position: relative;
    display: block;
}

.banner-titles__sub-title {
    font-size: 22px;
    color: var(--thm-base);
    background-color: var(--thm-primary);
    display: inline-block;
    padding: 4px 14px 0px;
}

.banner-titles__title {
    font-size: 70px;
    color: var(--thm-base);
    font-weight: 700;
    line-height: 75px;
    margin-top: 10px;
}

/*--------------------------------------------------------------
# Project Titles Details
--------------------------------------------------------------*/
.project-titles-details {
    position: relative;
    display: block;
}

.project-titles-details__content {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    padding-top: 110px;
    padding-bottom: 0;
    padding-left: 42px;
    padding-right: 110px;
    margin-top: -65px;
}

.project-titles-details__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}

.project-titles-details__text-1 {
    font-size: 22px;
    color: var(--thm-black);
    line-height: 30px;
    margin: 0;
    padding-top: 31px;
    padding-bottom: 20px;
}

.project-titles-details__text-2 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}

.project-titles-details__btn {
    margin-top: 40px;
}

.project-titles-details__btn:before {
    background-color: #567af8;
    background-image: inherit;
}

.project-titles-details__img {
    position: relative;
    display: block;
    margin-left: -55px;
    margin-right: 45px;
    margin-top: 54px;
}

.project-titles-details__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# Portfolio Single Project
--------------------------------------------------------------*/
.portfolio-single-project {
    position: relative;
    display: block;
    padding: 43px 0 100px;
}

.portfolio-single__content {
    position: relative;
    display: block;
}

.portfolio-single__item {
    position: relative;
    display: flex;
    align-items: center;
}

.portfolio-single__item+.portfolio-single__item {
    margin-top: 75px;
}

.portfolio-single__item-img {
    position: relative;
    display: block;
}



.portfolio-single__item-details {
    margin-left: 165px;
}

.portfolio-single__item-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
}

.portfolio-single__item-text-1 {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
    padding-top: 31px;
    padding-bottom: 35px;
}

.portfolio-single__item-text-2 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}

/*--------------------------------------------------------------
# Client Details
--------------------------------------------------------------*/
.client-details {
    position: relative;
    display: block;
    background-color: #f1f2ff;
    padding: 42px 0 0px;
}

.client-details__left {
    position: relative;
    display: block;
    margin-right: 30px;
    margin-top: 71px;
}

.client-details__text-1 {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
    padding-bottom: 27px;
}

.client-details__text-2 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    padding-bottom: 45px;
}

.client-details__client-and-date-box {
    position: relative;
    display: block;
}

.client-details__client-and-date {
    position: relative;
    display: block;
    float: left;
}

.client-details__client-and-date li {
    position: relative;
    display: inline-block;
}

.client-details__client-and-date li+li {
    margin-left: 90px;
}



.client-details__client-and-date_content span {
    font-size: 18px;
    color: var(--thm-black);
    opacity: .8;
}

.client-details__client-and-date_content p {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
    padding-top: 6px;
}

.client-details__social-box {
    position: relative;
    display: block;
    float: right;
    margin-top: 15px;
}

.client-details__social {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.client-details__social a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    border-radius: 50%;
    font-size: 18px;
    height: 45px;
    width: 45px;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.client-details__social a+a {
    margin-left: 10px;
}

.client-details__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #435594;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scale(1);
    z-index: -1;
}

.client-details__social a:hover:before {
    transform: scale(0);
}

.client-details__social a:hover {
    background-color: var(--thm-black);
}



.client-details__social a.clr-link:before {
    background-color: #1f72b0;
}

.client-details__social a.clr-dri:before {
    background-color: #bd1223;
}

.client-details__social a.clr-twi:before {
    background-color: #349aed;
}

.client-details__img {
    position: relative;
    display: block;
    margin-left: 70px;
    margin-right: 70px;
}

.client-details__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# Client Details Main Img
--------------------------------------------------------------*/
.client-details-main-img {
    position: relative;
    display: block;
    padding: 130px 0 190px;
}

.client-details-main-img__box {
    position: relative;
    display: block;
}

.client-details-main-img__box img {
    width: 100%;
}

/*--------------------------------------------------------------
# Have And Idea
--------------------------------------------------------------*/
.have-an-idea {
    position: relative;
    display: block;
    padding: 0 0 175px;
}

.have-an-idea__top {
    position: relative;
    display: block;
    text-align: center;
}

.have-an-idea__title {
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 52px;
}

.have-an-idea__btn {
    position: relative;
    font-size: 20px;
    color: var(--thm-primary);
    border: 2px solid #ffe0e4;
    display: inline-block;
    padding: 17px 61px 11px;
    border-radius: 30px;
    transition: all 500ms ease;
    z-index: 2;
}

.have-an-idea__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-color: var(--thm-primary);
    transition: all 500ms ease;
    transform: scaleX(0);
    z-index: -1;
}

.have-an-idea__btn:hover {
    color: var(--thm-base);
    border: 2px solid transparent;
}

.have-an-idea__btn:hover:before {
    transform: scaleX(1);
}


.have-an-idea__pagination-box {
    position: relative;
    display: block;
    text-align: center;
    margin-top: -40px;
}



.have-an-idea__pagination li {
    display: inline-block;
}

.have-an-idea__pagination li.next {
    float: left;
    position: relative;
}

.have-an-idea__pagination li a {
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: all 500ms ease;
}

.have-an-idea__pagination li a:hover {
    color: var(--thm-primary);
}

.have-an-idea__pagination li.next i {
    position: relative;
    transform: rotate(180deg);
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
}

.have-an-idea__pagination li.previous {
    position: relative;
    float: right;
}

.have-an-idea__pagination li.previous i {
    margin-left: 10px;
    font-size: 20px;
}

/*--------------------------------------------------------------
# Portfolio Single Footer
--------------------------------------------------------------*/
.portfolio-single-footer {
    position: relative;
    display: block;
    background-color: #3c416a;
    padding: 130px 0 0;
}

.portfolio-single-footer .footer-widget__about-text {
    color: var(--thm-base);
}

.portfolio-single-footer .footer-widget__about-contact>a {
    color: var(--thm-base);
    opacity: .9;
}

.portfolio-single-footer .footer-widget__about-contact>a:hover {
    color: var(--thm-primary);
}

.portfolio-single-footer .footer-widget__about-social-list a {
    color: var(--thm-base);
}

.portfolio-single-footer .site-footer__bottom-copy-right-text {
    color: var(--thm-base);
}

.portfolio-single-footer .footer-widget__title {
    color: var(--thm-base);
}

.portfolio-single-footer .footer-widget__company-list li a {
    color: var(--thm-base);
}

.portfolio-single-footer .footer-widget__company-list li a:hover {
    color: var(--thm-primary);
}

.portfolio-single-footer .footer-widget__solution-list li a {
    color: var(--thm-base);
}

.portfolio-single-footer .footer-widget__solution-list li a:hover {
    color: var(--thm-primary);
}

.portfolio-single-footer .site-footer__bottom-app span {
    color: var(--thm-base);
}

.portfolio-single-footer .site-footer__bottom-menu ul li a {
    color: var(--thm-base);
}

.portfolio-single-footer .site-footer__bottom-menu ul li a:hover {
    color: var(--thm-primary);
}

.portfolio-single-footer .site-footer__bottom {
    padding: 95px 0 100px;
}

/*--------------------------------------------------------------
# Blog Sidebar Button Style 1
--------------------------------------------------------------*/
.main-menu-three-wrapper__btn-style-1 {
    border: 2px solid var(--thm-primary);
    border-radius: 30px;
}

.main-menu-three-wrapper__btn-style-1:before {
    border-radius: 30px;
}

.main-menu-three-wrapper__btn-style-1:hover {
    border: 2px solid transparent;
}

/*--------------------------------------------------------------
# Blog Sidebar Page Header
--------------------------------------------------------------*/
.blog-sidebar-page-header {
    position: relative;
    display: block;
    padding: 160px 0 80px;
    border-bottom: 1px solid #eeeeee;
}

.blog-sidebar-page-header-shape-1 {
    position: absolute;
    bottom: 120px;
    left: 150px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(239, 183, 254);
    border-radius: 50%;
    background-color: rgba(255, 59, 105, 0);
    width: 12px;
    height: 12px;
}

.blog-sidebar-page-header-shape-2 {
    position: absolute;
    bottom: 145px;
    right: 465px;
}



.blog-sidebar-page-header__inner {
    position: relative;
    display: block;
    text-align: center;
}

.blog-sidebar-page-header__tagline {
    font-size: 22px;
    font-weight: 700;
    color: var(--thm-primary);
}

.blog-sidebar-page-header__title {
    font-size: 70px;
    font-weight: 700;
    line-height: 75px;
    margin-top: 9px;
}

/*--------------------------------------------------------------
# Post News
--------------------------------------------------------------*/
.post-news {
    position: relative;
    display: block;
    padding: 160px 0 160px;
}

.post-news__left {
    position: relative;
    display: block;
}

.post-news__inner {
    position: relative;
    display: block;
}

.post-news__single {
    position: relative;
    display: block;
}

.post-news__single+.post-news__single {
    margin-top: 50px;
}

.post-news__img {
    position: relative;
    display: block;
    margin-bottom: 40px;
    z-index: 1;
}

.post-news__img img {
    width: 100%;
}

.post-news__tag {
    font-size: 16px;
    color: var(--thm-base);
    background-color: var(--thm-primary);
    display: inline-block;
    padding: 5px 25px 2px;
    transition: all 500ms ease;
}

.post-news__tag:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);
}

.post-news__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 32px;
    margin-bottom: 23px;
}

.post-news__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.post-news__title a:hover {
    color: var(--thm-primary);
}

.post-news__date {
    margin: 0;
    color: var(--thm-black);
}

.post-news__text {
    margin: 0;
    opacity: .8;
    padding-top: 28px;
    margin-bottom: 23px;
}

.post-news__arrow {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid #e8dede;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--thm-primary);
    transition: all 500ms ease;
    z-index: 1;
}

.post-news__arrow:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--thm-primary);
    transform: scale(0);
    transition: all 500ms ease;
    z-index: -1;
}

.post-news__arrow:hover:before {
    transform: scale(1);
}



.post-news__arrow:hover {
    border: 1px solid transparent;
    color: var(--thm-base);
}



.post-news__video-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--thm-base);
    width: 100px;
    height: 100px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.post-news__video-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: rgba(var(--thm-primary-rgb), .50);
    transition: all 500ms ease;
    z-index: -1;
}

.post-news__video-icon:hover:before {
    background-color: rgba(var(--thm-primary-rgb), 1);
}

.post-news__video-icon span {
    position: relative;
    display: inline-block;
    transition: all 500ms ease;
}

.post-news__video-icon:hover span {
    transform: rotate(180deg);
}

.post-news__video-icon .ripple,
.post-news__video-icon .ripple:before,
.post-news__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -ms-border-radius: 50%;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.post-news__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.post-news__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.post-news__img-last:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(9, 9, 18, .5);
    z-index: 1;
}

.post-news__link-post {
    position: relative;
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
}

.post-news__link-post a {
    font-size: 22px;
    color: var(--thm-primary);
    transition: all 500ms ease;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.post-news__link-post a:hover {
    color: var(--thm-base);
}

.post-news__link-post-bg {
    position: relative;
    display: block;
}

.post-news__link-post-bg img {
    width: 100%;
}

.post-news__link-post-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .70);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar__search {
    position: relative;
    display: block;
    margin-bottom: 67px;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: transparent;
    color: #b4bebb;
    font-size: 16px;
    font-weight: 400;
    padding-left: 70px;
    height: 74px;
    border-radius: 0;
    border: 1px solid #e7e7e7;
    width: 100%;
    padding-right: 30px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: #b4bebb;
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: #b4bebb;
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: #b4bebb;
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: #b4bebb;
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: #b4bebb;
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: #b4bebb;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: #b4bebb;
}

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: var(--thm-primary);
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 86px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
}


.sidebar__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 21px;
}





.sidebar__category-list li {
    position: relative;
    display: block;
    border-bottom: 1px solid #e5e4e4;
}

.sidebar__category-list li a {
    font-size: 18px;
    color: #807b81;
    padding: 20px 0 15px;
    display: block;
    transition: all 500ms ease;
}

.sidebar__category-list li a:hover {
    color: var(--thm-primary);
}

.sidebar__category-list li span {
    color: var(--thm-primary);
    height: 30px;
    width: 30px;
    background-color: #fff1f4;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-size: 15px;
    float: right;
    transition: all 500ms ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0);
    right: 0;
}

.sidebar__category-list li:hover span {
    transform: translateY(-50%) scale(1);
}

.sidebar__post {
    position: relative;
    display: block;
    margin-top: 62px;
}

.sidebar__post-list {
    position: relative;
    display: block;
    margin-bottom: 42px;
    padding-top: 13px;
}

.sidebar__post-list li {
    position: relative;
    display: block;
    border-bottom: 1px solid #e5e4e4;
    padding-bottom: 24px;
    margin-bottom: 23px;
}

.sidebar__post-list li:last-child {
    margin-bottom: 0;
}

.sidebar__post-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sidebar__post-title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.sidebar__post-title a:hover {
    color: var(--thm-primary);
}

.sidebar__post-date {
    font-size: 14px;
    margin: 0;
    color: #626161;
}

.sidebar__archive {
    position: relative;
    display: block;
}

.sidebar__archive-list {
    position: relative;
    display: block;
    padding-top: 5px;
}

.sidebar__archive .bootstrap-select>.dropdown-toggle {
    height: 75px;
    outline: none !important;
    border: 0;
    background-color: rgb(255, 255, 255) !important;
    box-shadow: 0px 0px 22px 0px rgb(204, 204, 204, .35) !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: #656565 !important;
    font-size: 16px;
    line-height: 75px;
    font-weight: 400;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: right 25.75px center;
}

.sidebar__archive .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.sidebar__archive .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar__tags {
    position: relative;
    display: block;
    margin-top: 52px;
}

.sidebar__tags-list {
    position: relative;
    display: block;
}

.sidebar__tags-list li {
    position: relative;
    display: inline-block;
}

.sidebar__tags-list li+li {
    margin-left: 15px;
}

.sidebar__tags-list li a {
    position: relative;
    font-size: 16px;
    color: #656565;
    font-weight: 400;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: inline-block;
}

.sidebar__tags-list li a:before {
    position: absolute;
    bottom: 7px;
    left: 0;
    right: 0;
    content: "";
    background-color: #737373;
    height: 1px;
}

.sidebar__tags-list a:hover {
    color: var(--thm-primary);
}

.sidebar__tags-list a:hover:before {
    background-color: var(--thm-primary);
}

.sidebar__tags-list-two {
    padding-top: 7px;
}

.sidebar__agency {
    position: relative;
    display: block;
    text-align: center;
    padding: 59px 0 62px;
    margin-top: 53px;
    z-index: 1;
}

.sidebar__agency-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.sidebar__agency-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-image: -moz-linear-gradient(-138deg, rgb(206, 47, 253) 0%, rgb(136, 136, 253) 100%);
    background-image: -webkit-linear-gradient(-138deg, rgb(206, 47, 253) 0%, rgb(136, 136, 253) 100%);
    background-image: -ms-linear-gradient(-138deg, rgb(206, 47, 253) 0%, rgb(136, 136, 253) 100%);
    opacity: 0.8;
}

.sidebar__agency-text {
    font-size: 22px;
    color: var(--thm-base);
    line-height: 30px;
    margin: 0;
    padding-bottom: 29px;
}

.sidebar__agency-phone {
    font-size: 22px;
    color: var(--thm-base);
    line-height: 30px;
    transition: all 500ms ease;
}

.sidebar__agency-phone:hover {
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Banner Titles Two
--------------------------------------------------------------*/
.banner-titles-two {
    position: relative;
    display: block;
    padding: 340px 0 125px;
}

.banner-titles-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.banner-titles-two-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-image: -moz-linear-gradient(-27deg, rgb(140, 120, 251) 0%, rgb(71, 122, 255) 100%);
    background-image: -webkit-linear-gradient(-27deg, rgb(140, 120, 251) 0%, rgb(71, 122, 255) 100%);
    background-image: -ms-linear-gradient(-27deg, rgb(140, 120, 251) 0%, rgb(71, 122, 255) 100%);
    opacity: 0.90;

}

.banner-titles-two__content {
    position: relative;
    display: block;
}

.banner-titles-two__date {
    font-size: 22px;
    color: var(--thm-base);
    margin: 0;
    padding-bottom: 16px;
}

.banner-titles-two__title {
    font-size: 70px;
    color: var(--thm-base);
    font-weight: 700;
    line-height: 75px;
}

.banner-titles-two__user {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 40px;
}





.banner-titles-two__user-info {
    margin-left: 15px;
}

.banner-titles-two__name {
    font-size: 20px;
    color: var(--thm-base);
    font-family: var(--thm-font-nunito);
    line-height: 25px;
    margin-bottom: 5px;
}

.banner-titles-two__user-title {
    font-size: 15px;
    color: var(--thm-base);
    margin: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.blog-details__left {
    position: relative;
    display: block;
    margin-top: -8px;
}

.blog-details__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 30px;
}

.blog-details__title-2 {
    font-size: 39px;
}

.blog-details__text-1 {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
    padding-bottom: 22px;
}

.blog-details__text-2 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    padding-bottom: 22px;
}

.blog-details__text-3 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}

.blog-details__text-4 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    padding-top: 10px;
    padding-bottom: 45px;
}

.blog-details__img {
    position: relative;
    display: block;
    margin-bottom: 46px;
}

.blog-details__img img {
    width: 100%;
}

.blog-details__text-5 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}

.blog-details__text-6 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    padding-top: 17px;
    padding-bottom: 37px;
}

.blog-details__text-7 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    padding-bottom: 45px;
}

.blog-details__two-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 42px;
}

.blog-details__two-img li {
    position: relative;
    display: inline-block;
    float: left;
}

.blog-details__two-img li+li {
    margin-left: 8px;
}









.blog-details__text-8 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}



.blog-details__important-question-title {
    font-size: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
    line-height: 36px;
    margin-top: 30px;
    margin-bottom: 43px;
}

.blog-details__important-questions-text {
    position: relative;
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
    padding-left: 26px;
}

.blog-details__important-questions-text:before {
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 7px;
    content: "";
    width: 4px;
    background-color: var(--thm-primary);
}

.blog-details__solution {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__solution-left {
    margin-right: 45px;
}

.blog-details__solution-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-top: 100px;
    margin-bottom: 29px;
}

.blog-details__solution-text-1 {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
    margin-bottom: 15px;
}

.blog-details__solution-text-2 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}





.blog-details__button-and-social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4dcde;
    padding-top: 117px;
    padding-bottom: 63px;
    margin-bottom: 130px;
}

.blog-details__button-box {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__button-box a {
    font-size: 16px;
    color: var(--thm-black);
    border: 1px solid #e4dcde;
    display: inline-block;
    padding: 7px 20px 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-details__button-box a:hover {
    border: 1px solid var(--thm-primary);
}

.blog-details__button-box a+a {
    margin-left: 10px;
}

.blog-details__social-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__social-icon a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    border-radius: 50%;
    font-size: 18px;
    height: 45px;
    width: 45px;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.blog-details__social-icon a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #435594;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scale(1);
    z-index: -1;
}

.blog-details__social-icon a+a {
    margin-left: 10px;
}

.blog-details__social-icon a:hover:before {
    transform: scale(0);
}

.blog-details__social-icon a:hover {
    background-color: var(--thm-black);
}



.blog-details__social-icon a.clr-link:before {
    background-color: #0077b5;
}

.blog-details__social-icon a.clr-dri:before {
    background-color: #e4405f;
}

.blog-details__social-icon a.clr-twi:before {
    background-color: #55acee;
}

.blog-details__social-icon a.clr-pin:before {
    background-color: #bd081c;
}

.have-an-idea-two__pagination-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.have-an-idea-two__pagination {
    position: relative;
    display: block;
}

.have-an-idea-two__pagination li {
    display: inline-block;
}

.have-an-idea-two__pagination li.next {
    float: left;
    position: relative;
}

.have-an-idea-two__pagination li a {
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 400;
    display: block;
    transition: all 500ms ease;
}

.have-an-idea-two__pagination li:hover a {
    color: var(--thm-primary);
}

.have-an-idea-two__pagination li a i {
    display: block;
    text-align: right;
}

.have-an-idea-two__pagination li.previous {
    position: relative;
    float: right;
}

.have-an-idea-two__pagination li.next i {
    position: relative;
    transform: rotate(180deg);
    padding-bottom: 6px;
}

.have-an-idea-two__pagination li.previous i {
    padding-top: 6px;
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one {
    position: relative;
    display: block;
    margin-top: 81px;
}

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 49px;
}

.comment-one__single {
    display: -webkit-box;
    display: flex;
    border: 1px solid #e3e2e2;
    padding-bottom: 30px;
    margin-bottom: 40px;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 75px;
}

.comment-one__content {
    position: relative;
    margin-left: 40px;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 22px;
    color: var(--thm-black);
    font-weight: 400;
    font-family: var(--thm-font);
}

.comment-one__content h5 {
    font-size: 16px;
    font-weight: 400;
    color: #503c57;
    line-height: 26px;
}

.comment-one__content p {
    color: #503c57;
    margin: 0;
    padding-bottom: 15px;
    padding-top: 21px;
}

.comment-one__btn {
    position: relative;
    font-size: 15px;
    color: #2f2f2f;
    padding: 7px 20px 5px;
    font-weight: 700;
    border-radius: var(--thm-border-radius);
    background-color: transparent;
    z-index: 1;
}

.comment-one__btn:before {
    background-color: #eeeeee;
    border-radius: var(--thm-border-radius);
    background-image: inherit;
    z-index: -1;
}

.comment-one__btn:hover {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}

.comment-one__image img {
    border-radius: 50%;
}

.comment-one__single-reply {
    margin-left: 80px;
    padding-bottom: 20px;
}

.comment-form {
    position: relative;
    display: block;
    margin-top: 112px;
}

.comment-form .comment-form__title {
    margin-top: -1px;
}



.comment-form__input-box {
    position: relative;
    display: block;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 70px;
    width: 100%;
    border: 1px solid var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
    border-radius: 0px;
    outline: none;
    font-size: 18px;
    color: var(--thm-black);
    display: block;
}

.comment-form__input-box textarea {
    font-size: 18px;
    color: var(--thm-black);
    height: 240px;
    width: 100%;
    padding: 30px 40px 40px;
    border: 1px solid var(--thm-black);
    border-radius: 0px;
    outline: none;
    margin-bottom: 40px;
}

.comment-form__btn {
    outline: none;
    border: none;
    padding: 18px 50px 14px;
    margin-top: 10px;
}

.comment-form__btn:hover {
    background: var(--thm-black);
    color: var(--thm-base);
}

/*--------------------------------------------------------------
## Contact Page Banner Titles
--------------------------------------------------------------*/
.contact-page-banner-titles {
    position: relative;
    display: block;
    padding: 100px 0 225px;
}

.contact-page-banner-titles__img {
    position: relative;
    display: block;
    margin-right: 40px;
}

.contact-page-banner-titles__img:before {
    position: absolute;
    bottom: -60px;
    left: -1000000px;
    right: -171px;
    height: 1px;
    background-color: #eaeaea;
    content: "";
}

.contact-page-banner-titles__img img {
    width: 100%;
}

.contact-page-banner-titles__right {
    position: relative;
    display: block;
    margin-left: 100px;
    margin-right: 80px;
    margin-top: 150px;
}

.contact-page-banner-titles-shape {
    position: absolute;
    top: -214px;
    left: -312px;
    width: 691px;
    height: 545px;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
}

.contact-page-banner-titles__right .section-title {
    margin-bottom: 30px;
}

.contact-page-banner-titles__right .section-title__title {
    font-size: 70px;
    line-height: 75px;
}

.contact-page-banner-titles__text {
    font-size: 18px;
    color: var(--thm-black);
    opacity: .8;
}

/*--------------------------------------------------------------
## Contact Info
--------------------------------------------------------------*/
.contact-info {
    position: relative;
    display: block;
    padding: 0 0 0;
}

.contact-info__single {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(186, 184, 191, .35);
    padding: 47px 40px 27px;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.contact-info__single-shape {
    position: absolute;
    right: -62px;
    top: 100px;
    border-radius: 50%;
    background-color: rgb(208, 198, 255);
    width: 195px;
    height: 195px;
    z-index: -1;
}

.contact-info__content {
    position: relative;
    display: flex;
}

.contact-info__icon {
    position: relative;
    display: block;
    height: 68px;
    width: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: all 500ms ease;
    z-index: 1;
}

.contact-info__single:hover .contact-info__icon {
    background-color: var(--thm-black);
}

.contact-info__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-image: -moz-linear-gradient(134deg, rgb(110, 82, 252) 0%, rgb(252, 94, 220) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(110, 82, 252) 0%, rgb(252, 94, 220) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(110, 82, 252) 0%, rgb(252, 94, 220) 100%);
    border-radius: 50%;
    transform: scale(1);
    transition: all 500ms ease;
    z-index: -1;
}

.contact-info__single:hover .contact-info__icon:before {
    transform: scale(0);
}

.contact-info__icon>img {
    transition: all 800ms ease;
}

.contact-info__single:hover .contact-info__icon>img {
    transform: rotateY(180deg);
}

.contact-info__text {
    margin-left: 20px;
}

.contact-info__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 26px;
    font-family: var(--thm-font);
}

.contact-info__contact {
    font-size: 18px;
    font-family: var(--thm-font);
    line-height: 28px;
    opacity: .8;
}



.contact-info__contact-num-1 {
    transition: all 500ms ease;
}

.contact-info__contact-num-1:hover {
    color: var(--thm-primary);
}

.contact-info__contact-num-2 {
    transition: all 500ms ease;
}

.contact-info__contact-num-2:hover {
    color: var(--thm-primary);
}

.contact-info__img {
    position: absolute;
    bottom: 0;
    right: 70px;
}



.contact-info__img-small {
    position: absolute;
    bottom: 0;
    right: 13px;
}



.contact-info__single-shape-2-style {
    background-color: #9db4ff;
}

.contact-info__icon-2-style:before {
    background-image: -moz-linear-gradient(134deg, rgb(108, 146, 251) 0%, rgb(74, 81, 249) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(108, 146, 251) 0%, rgb(74, 81, 249) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(108, 146, 251) 0%, rgb(74, 81, 249) 100%);
}

.contact-info__bottom {
    position: relative;
    display: block;
    margin-top: 35px;
}

.contact-info__bottom-left-box {
    position: relative;
    display: block;
}

.contact-info__bottom-left {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(186, 184, 191, .35);
    padding: 47px 40px 55px;
}

.contact-info__bottom-content {
    position: relative;
    display: flex;
}

.contact-info__bottom-icon {
    position: relative;
    display: block;
    height: 68px;
    width: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: all 500ms ease;
    z-index: 1;
}

.contact-info__bottom-left:hover .contact-info__bottom-icon {
    background-color: var(--thm-black);
}

.contact-info__bottom-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-image: -moz-linear-gradient(134deg, rgb(255, 197, 125) 0%, rgb(255, 168, 79) 100%);
    background-image: -webkit-linear-gradient(134deg, rgb(255, 197, 125) 0%, rgb(255, 168, 79) 100%);
    background-image: -ms-linear-gradient(134deg, rgb(255, 197, 125) 0%, rgb(255, 168, 79) 100%);
    border-radius: 50%;
    transform: scale(1);
    transition: all 500ms ease;
    z-index: -1;
}

.contact-info__bottom-left:hover .contact-info__bottom-icon:before {
    transform: scale(0);
}

.contact-info__bottom-icon>img {
    transition: all 800ms ease;
}

.contact-info__bottom-left:hover .contact-info__bottom-icon>img {
    transform: rotateY(180deg);
}

.contact-info__bottom-text {
    margin-left: 20px;
}

.contact-info__bottom-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 19px;
    font-family: var(--thm-font);
}



.contact-info__bottom-list li {
    font-size: 18px;
    color: var(--thm-black);
    opacity: .8;
}

.contact-info__bottom-social {
    position: relative;
    display: block;
    margin-top: 40px;
}

.contact-info__schedule-call {
    position: relative;
    display: block;
    margin-top: 80px;
}

.contact-info__schedule-call-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    font-family: var(--thm-font);
}

.contact-info__schedule-call-text {
    margin: 0;
    opacity: .8;
    padding-top: 15px;
    padding-bottom: 25px;
}

.contact-info__schedule-call-btn {
    font-size: 18px;
    color: var(--thm-base) !important;
    background-color: #5d6bf0;
    display: inline-block;
    padding: 10px 20px 7px;
    transition: all 500ms ease;
}

.contact-info__schedule-call-btn:hover {
    background-color: var(--thm-primary);
}

.contact-info__right {
    position: relative;
    display: block;
}

.contact-info__right-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 60px;
    margin-top: -10px;
}

.contact-info__contact-form {
    position: relative;
    display: block;
}



.contact-info__contact-form-input-box input[type="text"],
.contact-info__contact-form-input-box input[type="email"] {
    height: 60px;
    width: 100%;
    outline: none;
    border: 1px solid #dfdfdf;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    color: var(--thm-black);
    margin-bottom: 40px;
    transition: all 500ms ease;
}

.contact-info__contact-form-input-box textarea {
    height: 210px;
    width: 100%;
    outline: none;
    border: 1px solid #dfdfdf;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 25px;
    padding-bottom: 30px;
    font-size: 16px;
    color: var(--thm-black);
    margin-bottom: 40px;
    transition: all 500ms ease;
}

.contact-info__contact-form-input-box input[type="text"]:focus {
    border: 1px solid var(--thm-black);
}

.contact-info__contact-form-input-box input[type="email"]:focus {
    border: 1px solid var(--thm-black);
}

.contact-info__contact-form-input-box textarea:focus {
    border: 1px solid var(--thm-black);
}

.contact-info__contact-form-btn {
    position: relative;
    font-size: 20px;
    color: var(--thm-base);
    outline: none;
    border: none;
    border-radius: 30px;
    display: inline-block;
    padding: 17px 45px 15px;
    box-shadow: 9px 15.588px 18px 0px rgb(255, 101, 132, .35);
    background-color: transparent;
    transition: all 500ms ease;
    z-index: 1;
}

.contact-info__contact-form-btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 30px;
    background-color: var(--thm-primary);
    transition: all 500ms ease;
    transform: scaleX(1);
    z-index: -1;
}

.contact-info__contact-form-btn:hover:before {
    transform: scaleX(0);
}

.contact-info__contact-form-btn:hover {
    background-color: #5d6bf0;
    box-shadow: none;
}

/*--------------------------------------------------------------
## Contact Page Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
    position: relative;
    display: block;
    padding: 80px 0 260px;
}

.contact-page-google-map__box {
    position: relative;
    display: block;
    border: none;
    height: 615px;
    width: 100%;
}

/*--------------------------------------------------------------
## Error Page Banner
--------------------------------------------------------------*/
.error-page-banner {
    position: relative;
    display: block;
    padding: 170px 0 121px;
}

.error-page-banner-img-2 {
    position: absolute;
    bottom: 349px;
    right: 50px;
}



.error-page-banner-img-4 {
    position: absolute;
    bottom: 120px;
    right: 0;
}



.error-page-banner-shape-2 {
    position: absolute;
    bottom: 475px;
    left: 50px;
}



.error-page-banner-shape-3 {
    position: absolute;
    left: 50px;
    top: 245px;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -webkit-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -ms-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    box-shadow: 11px 19.053px 32px 0px rgb(157, 157, 157, .35);
}

.error-page-banner-shape-4 {
    position: absolute;
    right: 295px;
    top: 160px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -webkit-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -ms-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    box-shadow: 11px 19.053px 32px 0px rgb(157, 157, 157, .35);
}

.error-page-banner-shape-5 {
    position: absolute;
    left: 545px;
    top: 515px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -webkit-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -ms-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    box-shadow: 11px 19.053px 32px 0px rgb(157, 157, 157, .35);
    z-index: 3;
}

.error-page-banner__inner {
    position: relative;
    display: block;
    margin-left: 300px;
    margin-right: 300px;
    text-align: center;
    z-index: 1;
}

.error-page-banner__inner:before {
    position: absolute;
    bottom: 286px;
    left: -10000000px;
    right: 278px;
    content: "";
    height: 1px;
    background-color: #eaeaea;
}

.error-page-banner-inner-bg {
    position: absolute;
    top: -37px;
    left: -219px;
    height: 545px;
    width: 691px;
    background-repeat: no-repeat;
    z-index: -1;
    background-size: cover;
    background-position: center;
}

.error-page-banner-img-1 {
    position: absolute;
    top: 90px;
    left: -341px;
}



.error-page-banner-img-3 {
    position: absolute;
    bottom: 286px;
    left: -70px;
}



.error-page-banner__inner-title {
    font-size: 200px;
    background: -webkit-linear-gradient(#3c39fd, #fc848a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 200px;
    font-weight: 700;
}

.error-page-banner__inner-sub-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
    margin-top: 36px;
    margin-bottom: 28px;
}

.error-page-banner__inner-text {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}

.error-page__btn {
    margin-top: 370px;
}

.error-page__btn:before {
    background-image: -moz-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(155, 121, 251) 0%, rgb(83, 104, 239) 100%);
}

/*--------------------------------------------------------------
## About Page Banner
--------------------------------------------------------------*/
.about-page-banner {
    position: relative;
    display: block;
    padding: 190px 0 0;
}

.about-page-banner__big-text {
    position: absolute;
    top: -100px;
    left: 0;
    font-size: 182px;
    color: #f4f4f4;
    font-weight: 700;
    line-height: 200px;
    font-family: var(--thm-font-nunito);
    z-index: -1;
}

.about-page-banner__left {
    position: relative;
    display: block;
}

.about-page-banner__title {
    font-size: 70px;
    font-weight: 700;
    line-height: 75px;
}

.about-page-banner__text-1 {
    font-size: 22px;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
    padding-top: 21px;
    padding-bottom: 25px;
}

.about-page-banner__text-2 {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}

.about-page-banner__img {
    position: relative;
    display: block;
    margin-right: -375px;
}

.about-page-banner__img img {
    width: 100%;
}

.about-page-banner-bottom {
    position: relative;
    display: block;
    background-color: #ff3b69;
    padding: 17px 0 15px;
    padding-left: 30px;
    margin-top: 115px;
    z-index: 1;
}

.about-page-banner-bottom:before {
    position: absolute;
    top: 0;
    left: 0;
    right: -100000000px;
    bottom: 0;
    content: "";
    background-color: #ff3b69;
    z-index: -1;
}

.about-page-banner-bottom__text {
    font-size: 22px;
    color: var(--thm-base);
    font-weight: 600;
    font-family: var(--thm-font-nunito);
    margin: 0;
}

/*--------------------------------------------------------------
## About Page Counter
--------------------------------------------------------------*/
.about-page-counter {
    position: relative;
    display: block;
}

.about-page-counter-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
}



.about-page-counter__left {
    position: relative;
    display: block;
    margin-right: 20px;
    margin-top: 167px;
}

.about-page-counter__left-content {
    position: relative;
    display: block;
}

.about-page-counter__left-single {
    position: relative;
    display: block;
}

.about-page-counter__left-single+.about-page-counter__left-single {
    margin-top: 35px;
}

.about-page-counter__title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-page-counter__text {
    font-size: 18px;
    color: var(--thm-black);
    opacity: .8;
    margin: 0;
}

.about-page-counter__right {
    position: relative;
    display: block;
    margin-top: 45px;
}

/*--------------------------------------------------------------
## About Page Services
--------------------------------------------------------------*/
.about-page-services {
    position: relative;
    display: block;
    padding: 335px 0 75px;
}

.about-page-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about-page-services-shape-1 {
    position: absolute;
    top: 282px;
    right: 150px;
    border-radius: 10px;
    background-image: -moz-linear-gradient(106deg, rgb(118, 252, 241) 0%, rgb(183, 234, 240) 100%);
    background-image: -webkit-linear-gradient(106deg, rgb(118, 252, 241) 0%, rgb(183, 234, 240) 100%);
    background-image: -ms-linear-gradient(106deg, rgb(118, 252, 241) 0%, rgb(183, 234, 240) 100%);
    opacity: 0.4;
    box-shadow: 8px 13.856px 30px 0px rgb(181, 179, 185, .35);
    width: 28px;
    height: 28px;
}

/*--------------------------------------------------------------
## About Page Testimonial Two
--------------------------------------------------------------*/
.about-page-testimonial-two {
    position: relative;
    display: block;
    padding-top: 245px;
    padding-bottom: 232px;
}

.about-page-testimonial-two-shape-1 {
    position: absolute;
    top: 160px;
    left: 105px;
}



.about-page-testimonial-two-shape-2 {
    position: absolute;
    bottom: 0;
    left: 55px;
}



.about-page-testimonial-two-shape-3 {
    position: absolute;
    top: 170px;
    right: 155px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(251, 131, 219);
    border-radius: 50%;
    background-color: rgba(236, 186, 250, 0);
    width: 13px;
    height: 13px;
}

/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.team {
    position: relative;
    display: block;
    padding: 0 0 290px;
}

.team .section-title {
    margin-bottom: 70px;
}

.team .section-title__tagline {
    color: #9979fb;
}

.team__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 40px;
}

.team__img {
    position: relative;
    display: block;
    background-color: rgb(255, 250, 251);
    padding-top: 35px;
    padding-bottom: 25px;
    padding-left: 35px;
    padding-right: 35px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

.team__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-primary-rgb), .50);
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    transform: scale(0);
    transition: all 500ms ease;
    z-index: -1;
}

.team__single:hover .team__img:before {
    transform: scale(1);
}

.team__img img {
    width: 100%;
}

.team__content {
    position: relative;
    display: block;
    margin-top: 27px;
}

.team__member {
    font-size: 22px;
    font-family: var(--thm-font);
    font-weight: 700;
    line-height: 38px;
}

.team__title {
    margin: 0;
    opacity: .8;
}

/*--------------------------------------------------------------
## How We Do Page Header
--------------------------------------------------------------*/
.how-we-do-header {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
    background: transparent;
}

.how-we-do-page-header {
    position: relative;
    display: block;
    padding: 327px 0 165px;
}

.how-we-do-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*--------------------------------------------------------------
## How We Do
--------------------------------------------------------------*/
.how-we-do {
    position: relative;
    display: block;
    padding: 130px 0 204px;
}

.how-we-do-shape-1 {
    position: absolute;
    top: 131px;
    left: 460px;
    width: 599px;
    height: 158px;
    background-repeat: no-repeat;
}

.how-we-do-shape-2 {
    position: absolute;
    top: 381px;
    left: 431px;
    width: 610px;
    height: 172px;
    background-repeat: no-repeat;
}

.how-we-do-shape-3 {
    position: absolute;
    top: 537px;
    left: 457px;
    width: 619px;
    height: 195px;
    background-repeat: no-repeat;
}

.how-we-do__list {
    position: relative;
    display: block;
}

.how-we-do__single {
    position: relative;
    display: block;
    margin-bottom: 190px;
}

.how-we-do__single-count {
    position: relative;
    height: 80px;
    width: 80px;
    background-color: #fee9ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--thm-font-nunito);
    z-index: 1;
}

.how-we-do__single-count:before {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    content: "";
    border-radius: 50%;
    background-color: var(--thm-primary);
    z-index: -1;
}

.how-we-do__single-count h4 {
    font-size: 22px;
    color: #fffefe;
    font-weight: 600;
}

.how-we-do__single-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    margin-top: 37px;
    margin-bottom: 21px;
}

.how-we-do__single-text {
    font-size: 18px;
    color: var(--thm-black);
    margin: 0;
    opacity: .8;
}

.how-we-do__single-1 {
    margin-right: 90px;
}

.how-we-do__single-2 {
    margin-left: 55px;
    margin-right: 35px;
    margin-top: 175px;
}

.how-we-do__single-3 {
    margin-right: 90px;
    margin-top: -175px;
    margin-bottom: 0;
}

.how-we-do__single-4 {
    margin-left: 55px;
    margin-right: 35px;
    margin-bottom: 0;
}

.how-we-do__single-count-2 {
    background-color: #f5f4fd;
}

.how-we-do__single-count-2:before {
    background-color: #8377f9;
}

.how-we-do__single-count-3 {
    background-color: #feede9;
}

.how-we-do__single-count-3:before {
    background-color: #f87a61;
}

.how-we-do__single-count-4 {
    background-color: #fff0ff;
}

.how-we-do__single-count-4:before {
    background-color: #fc89fd;
}

/*--------------------------------------------------------------
## How We Do
--------------------------------------------------------------*/
.technology-use {
    position: relative;
    display: block;
    padding: 0 0 110px
}

.technology-use__inner {
    position: relative;
    display: block;
    max-width: 690px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.technology-use__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 100px;
}

.technology-use__logo-list {
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.technology-use__logo-list li {
    position: relative;
}

.technology-use__logo-list li+li {
    margin-left: 50px;
}

.technology-use__logo-list li a {
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: -0.907px 25.984px 50px 0px rgb(205, 206, 206, .45);
    width: 134px;
    height: 134px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-use__logo-list-two {
    margin-top: 45px;
}

/*--------------------------------------------------------------
## How We Do Hire Us
--------------------------------------------------------------*/
.how-we-do-hire-us {
    background-color: transparent;
    padding-bottom: 238px;
}

/*--------------------------------------------------------------
## How We Do Subscribe
--------------------------------------------------------------*/
.how-we-do-subscribe {
    padding-bottom: 100px;
}

/*--------------------------------------------------------------
## How We Do Sitefooter
--------------------------------------------------------------*/
.how-we-do-site-footer {
    padding-top: 183px;
}

.how-we-do-site-footer .site-footer__bottom {
    padding: 95px 0 70px;
}

.how-we-do-site-footer .site-footer-shape-2 {
    left: 55px;
    bottom: 120px;
    top: inherit;
}

.how-we-do-site-footer .site-footer-shape-3 {
    bottom: 315px;
    right: 60px;
}

/*--------------------------------------------------------------
## Services Page Heaader
--------------------------------------------------------------*/
.services-page-header {
    position: relative;
    display: block;
    padding: 312px 0 105px;
}

.services-page-header-shape-1 {
    position: absolute;
    bottom: 0;
    left: 90px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(239, 183, 254);
    border-radius: 50%;
    background-color: rgba(255, 59, 105, 0);
    width: 12px;
    height: 12px;
}

.services-page-header-shape-2 {
    position: absolute;
    right: 465px;
    bottom: 160px;
}




/*--------------------------------------------------------------
## Services Page
--------------------------------------------------------------*/


.services-page-header__inner {
    position: relative;
    display: block;
    z-index: 3;
}

.services-page__top {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: var(--thm-border-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 8px 0px 30px 0px rgb(224, 224, 224, .35);
    padding-top: 45px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 50px;
    margin-bottom: 190px;
}

.services-page__top-img {
    position: relative;
    display: block;
}



.services-page__top-content {
    margin-left: 45px;
}

.services-page__top-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 43px;
    margin-bottom: 21px;
}

.services-page__top-text {
    font-size: 18px;
    color: var(--thm-black);
    opacity: .8;
    margin: 0;
}

.services-page__bottom {
    position: relative;
    display: block;
    padding-bottom: 28px;
}

.services-page__single {
    display: flex;
    align-items: center;
    background-color: #ffeef2;
    padding-top: 57px;
    padding-bottom: 50px;
    padding-left: 60px;
    padding-right: 145px;
}

.services-page__single+.services-page__single {
    margin-top: 30px;
}





.services-page__content {
    margin-left: 55px;
}

.services-page__single-1 {
    background-color: rgb(255, 238, 242);
    box-shadow: 0px 12px 10px 0px rgb(230, 160, 177, .35);
}

.services-page__single-2 {
    background-color: #fffbee;
}

.services-page__single-3 {
    background-color: #eeeeff;
}

.services-page__single-4 {
    background-color: #fceeff;
}

.services-page__single-5 {
    background-color: #eefff7;
}

.services-page__single-6 {
    background-color: #eefeff;
}

/* Services How We Do*/
.services-how-we-do {
    padding-bottom: 80px;
}

.services-how-we-do-section-title {
    margin-bottom: 115px;
}


/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    left: 0%;
    top: 0;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all .4s ease-in .8s;
    -o-transition: all .4s ease-in .8s;
    transition: all .4s ease-in .8s;
    cursor: url(../images/icon/cross-out.png),
        pointer;
    z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .8;
    visibility: visible;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s;
    transition: all .8s ease-out 0s;
    right: 100%;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-primary);
    border-color: var(--thm-primary);
}

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    left: 0;
    background-color: #21293b;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 70px 30px;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in .3s;
    -o-transition: all .3s ease-in .3s;
    transition: all .3s ease-in .3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
}

.xs-bg-black {
    background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    max-width: 172px;
    width: 100%;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
    color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
    margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: #848484;
    transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
    border: none;
    outline: none;
}



.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    resize: none;
    height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
    border-color: #00224f;
}





/***
=============================================
    Timer Area style
=============================================
***/
.timer-one {
    position: relative;
    display: block;
    padding: 377px 0 310px;
    z-index: 1;
}

.timer-one-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.timer-one-shape-1 {
    position: absolute;
    top: 465px;
    left: 585px;
    border-radius: 50%;
    background-color: rgb(252, 162, 215);
    width: 17px;
    height: 17px;
}

.timer-one-shape-2 {
    position: absolute;
    top: 310px;
    left: 790px;
    border-radius: 50%;
    background-color: rgb(183, 250, 240);
    width: 17px;
    height: 17px;
}

.timer-one-shape-3 {
    position: absolute;
    top: 265px;
    right: 810px;
    border-radius: 50%;
    background-color: rgb(233, 199, 250);
    width: 17px;
    height: 17px;
}

.timer-one-shape-4 {
    position: absolute;
    top: 375px;
    right: 700px;
    border-radius: 50%;
    background-color: rgb(183, 250, 240);
    width: 17px;
    height: 17px;
}

.timer-one-shape-5 {
    position: absolute;
    top: 475px;
    right: 560px;
    border-radius: 50%;
    background-color: rgb(200, 251, 218);
    width: 17px;
    height: 17px;
}

.timer-one-shape-6 {
    position: absolute;
    left: 485px;
    bottom: 130px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -webkit-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -ms-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    box-shadow: 11px 19.053px 32px 0px rgb(157, 157, 157, .35);
    width: 58px;
    height: 58px;
}

.timer-one-shape-7 {
    position: absolute;
    right: 820px;
    bottom: 85px;
    border-radius: 50%;
    background-image: -moz-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -webkit-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    background-image: -ms-linear-gradient(82deg, rgb(255, 235, 255) 0%, rgb(255, 114, 114) 100%);
    box-shadow: 11px 19.053px 32px 0px rgb(157, 157, 157, .35);
    width: 50px;
    height: 50px;
}

.timer-one-shape-8 {
    position: absolute;
    top: 415px;
    left: 185px;
}



.timer-one-shape-9 {
    position: absolute;
    top: 350px;
    right: 160px;
}



.timer-one-shape-10 {
    position: absolute;
    bottom: 415px;
    left: 140px;
}



.timer-one-shape-11 {
    position: absolute;
    bottom: 290px;
    right: 50px;
}



.timer-one-shape-12 {
    position: absolute;
    bottom: 20px;
    right: 85px;
}



.timer-box {
    position: relative;
    display: block;
}

.timer-box h1 {
    color: var(--thm-black);
    font-size: 50px;
    line-height: 55px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 122px;
}





.countdown-timer .default-coundown .box {
    overflow: hidden;
}

.countdown-timer li {
    position: relative;
    display: inline-block;
    float: none;
    padding: 0;
    text-align: center;
    margin: 0 15px 25px;
}

.countdown-timer li:first-child {
    margin-left: 0;
}

.countdown-timer li:last-child {
    margin-right: 0;
}

.countdown-timer li span.days,
.countdown-timer li span.hours,
.countdown-timer li span.minutes,
.countdown-timer li span.seconds {
    position: relative;
    display: block;
    background-image: url(../images/shapes/coundown-shape-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 195px;
    height: 195px;
    color: var(--thm-primary);
    font-size: 50px;
    line-height: 195px;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    font-family: var(--thm-font-nunito);
}







.countdown-timer li span.timeRef {
    position: absolute;
    bottom: 30px;
    left: 50%;
    color: var(--thm-black);
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    text-align: center;
    transform: translateX(-50%);
    font-family: var(--thm-font);
}







.timer-one__bottom {
    position: relative;
    display: block;
    margin-top: 93px;
}

.timer-one__bottom-text {
    font-size: 22px;
    color: var(--thm-black);
    line-height: 32px;
    font-weight: 400;
    font-family: var(--thm-font-nunito);
}

.timer-one__social {
    position: relative;
    display: block;
    margin-top: 88px;
}

.timer-one__social li {
    position: relative;
    display: inline-block;
}



.timer-one__social li a {
    position: relative;
    font-size: 18px;
    color: var(--thm-black);
    display: inline-block;
    padding: 8px 30px 4px;
    transition: all 500ms ease;
    z-index: 1;
}

.timer-one__social li a:hover {
    color: var(--thm-base);
}

.timer-one__social li a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #fe2f59;
    transform: scaleX(0);
    transition: all 500ms ease;
    z-index: -1;
}

.timer-one__social li a:hover:before {
    transform: scaleX(1);
}



.coming-soon-main-header {
    border-bottom: 1px solid #eaeaea;
    background-color: transparent;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: all 500ms ease;
    position: absolute;
}



/*Services Page Main Menu*/

.services-page-main-menu .main-menu-three-wrapper__logo {
    position: relative;
    display: inline-block;
    float: left;
    padding: 78px 0 17px;
}

.stricky-header.services-page-main-menu .main-menu-three-wrapper__logo {
    position: relative;
    display: inline-block;
    float: left;
    padding: 16px 0 14px;
}



/* 19. Swiper v4.4.0 CUSTOM */
/* Swiper style 1 */
.hero-slider-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 2;
}

.hero-slider-wrapper-img {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 300px;
z-index: 1;
}

@media only screen and (max-width: 995px) {
  .hero-slider-wrapper-img {
    left: 0;
  }
}

.hero-slider-bg {
position: absolute;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover;
   -moz-background-size: cover;
    -ms-background-size: cover;
     -o-background-size: cover;
        background-size: cover;
		z-index: 1;
}
.swipper-padding{	
	    padding: 175px 0 250px;
}
.swiper-container {
width: 100%;
height: 100%;
margin: 0 auto;

}

.hero-slider-img .swiper-slide {
position: relative;
float: left;
width: 100%;
height: 100%;
overflow: hidden;
}

.hero-slider-bg-controls {
position: absolute;
right: 44px;
bottom: 50px;
z-index: 10;
}

@media only screen and (max-width: 768px) {
  .hero-slider-bg-controls {
	right: 19px;
    bottom: 25px;
  }
}

.swiper-slide-controls {
display: inline-block;
width: 50px;
height: 50px;
line-height: 50px;
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
font-size: 16px;
color: #111;
background: #f4e4bc;
cursor: pointer;
}

.swiper-slide-controls.slide-prev,
.swiper-slide-controls.slide-next {
position: relative;
width: 50px!important;
left: 0;
right: 0;
margin-left: auto;
margin-right: 6px;
text-align: center;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
}

.swiper-slide-controls:hover {
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
background: #fff;
}

@media only screen and (max-width: 768px) {
  .swiper-slide-controls.slide-next {
    margin-top: 10px;
  }
}

.swiper-slide-pagination {
position: absolute;
width: 8px;
left: 50px;
bottom: 48px;
z-index: 10;
}

@media only screen and (max-width: 768px) {
  .swiper-slide-pagination {
	display: none;
	visibility: hidden;
  }
}

.swiper-slide-pagination::before {
content: "";
position: absolute;
top: -50px;
left: 0;
right: 0;
bottom: -50px;
background: none;
}

.swiper-slide-pagination .swiper-pagination-bullet {
position: relative;
width: 100%;
height: 6px;
background: none;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.swiper-slide-pagination .swiper-pagination-bullet:last-child {
margin-bottom: 0;
}

.swiper-slide-pagination .swiper-pagination-bullet::before,
.swiper-slide-pagination .swiper-pagination-bullet::after {
content: "";
position: absolute;
width: 6px;
height: 6px;
top: 0;
left: 50%;
background: #fff;
margin: 0;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
}

.swiper-slide-pagination .swiper-pagination-bullet::after {
content: "";
position: absolute;
width: 8px;
height: 8px;
top: 50%;
left: 50%;
margin: -4px 0 0 -1px;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
     -o-box-sizing: border-box;
        box-sizing: border-box;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: scale(0);
   -moz-transform: scale(0);
    -ms-transform: scale(0);
     -o-transform: scale(0);
        transform: scale(0);
}

.swiper-slide-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: scale(1.8);
   -moz-transform: scale(1.8);
    -ms-transform: scale(1.8);
     -o-transform: scale(1.8);
        transform: scale(1.8);
background: #5f5f5f;
}

.slider-progress-bar {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}

.circle-svg {
position: relative;
-webkit-transform: scale(1) rotate(-90deg);
   -moz-transform: scale(1) rotate(-90deg);
    -ms-transform: scale(1) rotate(-90deg);
     -o-transform: scale(1) rotate(-90deg);
        transform: scale(1) rotate(-90deg);
-webkit-transition: transform .4s ease;
   -moz-transition: transform .4s ease;
    -ms-transition: transform .4s ease;
     -o-transition: transform .4s ease;
        transition: transform .4s ease;
-webkit-transition: -webkit-transform .4s ease;
   -moz-transition: -moz-transform .4s ease;
    -ms-transition: -ms-transform .4s ease;
     -o-transition: -o-transform .4s ease;
        transition: transform .4s ease;
}

.circle-svg circle {
stroke-dasharray: 400px;
}

.circle {
stroke-dashoffset: 400px;
}

.slider-progress-bar.slider-active .circle {
stroke-dashoffset: 200px;
-webkit-transition: linear 3s stroke-dashoffset;
        transition: linear 3s stroke-dashoffset;
}

.swiper-slide-controls-play-pause {
position: absolute;
width: 50px;
height: 50px;
line-height: 50px;
right: 170px;
bottom: 50px;
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
font-size: 16px;
color: #fff;
background: #5f5f5f;
cursor: pointer;
z-index: 10;
}

@media only screen and (max-width: 768px) {
  .swiper-slide-controls-play-pause {
	right: auto;
	left: 25px;
    bottom: 25px;
  }
}

.swiper-slide-controls-play-pause:hover {
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
background: #5f5f5f;
}

.swiper-slide-controls-play-pause i,
.swiper-slide-controls-play-pause i {
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
		
}

.swiper-slide-controls-play-pause.slider-on-off i::before,
.slider-on-off-switch {
content: "\f478";
position: relative;
width: 50px!important;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
text-align: center;
}


/* Swiper style 2 */
.swiper-container-wrapper {
padding-top: 0!important;
height: 100%!important;
}

.swiper-slide {
overflow: hidden;
}

.swiper-slide-inner {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: #fff;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
}

.swiper-slide-inner-bg {
position: absolute;
width: 100%;
height: 100%;
background-position: center center;
-webkit-background-size: cover;
   -moz-background-size: cover;
    -ms-background-size: cover;
     -o-background-size: cover;
        background-size: cover;
-webkit-transition: opacity .6s ease-in-out, transform 2s ease .7s;
   -moz-transition: opacity .6s ease-in-out, transform 2s ease .7s;
    -ms-transition: opacity .6s ease-in-out, transform 2s ease .7s;
     -o-transition: opacity .6s ease-in-out, transform 2s ease .7s;
        transition: opacity .6s ease-in-out, transform 2s ease .7s;
-webkit-transform: scale(1.15);
   -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
     -o-transform: scale(1.15);
        transform: scale(1.15);
        opacity: 0.2;
   -moz-opacity: 0.2;
-webkit-opacity: 0.2;
filter: alpha(opacity=20);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

.swiper-slide-duplicate-active .swiper-slide-inner-bg,
.swiper-slide-active .swiper-slide-inner-bg {
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.swiper-slide-inner-txt {
position: relative;
width: 100%;
height: 100%;
left: 0;
top: 0;
margin: 0;
overflow: hidden;
-webkit-transition: opacity .4s ease;
   -moz-transition: opacity .4s ease;
    -ms-transition: opacity .4s ease;
     -o-transition: opacity .4s ease;
        transition: opacity .4s ease;
-webkit-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
z-index: 15;
}

@media only screen and (max-width: 995px) {
  .swiper-slide-inner-txt {
    width: 100%!important;
	top: 50%;
	left: 50%;
	bottom: auto;
	margin: 0;
	-webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.swiper-slide-active .swiper-slide-inner-txt {
-webkit-transition: opacity 1.8s ease 1.2s;
   -moz-transition: opacity 1.8s ease 1.2s;
    -ms-transition: opacity 1.8s ease 1.2s;
     -o-transition: opacity 1.8s ease 1.2s;
        transition: opacity 1.8s ease 1.2s;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.feedbackForm{

    padding: 0px;
background: #fff;
border-radius: 8px;
border: 5px solid #fbae16;

}

.feedbackForm h2{
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.feedbackForm #mc_embed_signup .mc-field-group {
margin-bottom: 1rem;	
padding-bottom:0rem;
    width: 100%;
}

.feedbackForm .mc-field-group label{
display: inline-block;
margin-bottom: .5rem;	
}
.feedbackForm .indicates-required{
    color: #dc3545;
 margin-bottom: 1rem;	
}

.feedbackForm  #mc_embed_signup div#mce-responses{
	    float: left;
    padding: 0em .5em 0em .5em;
    overflow: hidden;
    width: 100%;
    margin: 0 0;
    clear: both;
    text-align: left;
}
.feedbackForm  #mc_embed_signup div.response{
 width: 100%;	
 line-height: 21px;
     padding: 0px;
}
.feedbackForm .mc-field-group textarea{
overflow: auto;
resize: vertical;
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.feedbackForm .mc-field-group input.REQ_CSS,
.feedbackForm .mc-field-group input.email,
.feedbackForm .mc-field-group input.text{
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;	
}
.feedbackForm .mc-field-group .asterisk:before {
	color: #c00;
 content: " *";
display: inline-block;

}
.feedbackForm #mc_embed_signup{
width: 100%;	
}


.feedbackForm #mc_embed_signup .button {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--thm-base);
    border: 2px solid var(--thm-secondary);
    border-radius: 30px;
        padding: 12px 40px 12px;
    z-index: 1;
    transition: all 500ms ease;
    background:var(--thm-secondary);
    height: auto;
}

.feedbackForm #mc_embed_signup .button:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    transform: scale(0);
    border-radius: 30px;
    transition: all 500ms ease;
    z-index: -1;
}

.feedbackForm #mc_embed_signup .button:hover {
    color: var(--thm-base);
    border: 2px solid transparent;
     background-color: var(--thm-primary);
}

.feedbackForm #mc_embed_signup .button:hover:before {
    transform: scale(1);
}
.feedbackImg img.banner{
width: 100%;	
}
.about-agency-shape-4 {
    position: absolute;
    top: 100px;
    left: 180px;
    border-style: solid;
    border-width: 6px;
    border-color: rgb(238, 165, 251);
    border-radius: 10px;
    width: 30px;
    height: 30px;
}

.shape-yellow-circle-small{
	    position: absolute;
    left: 0px;
    top: 0px;
    border: 100rem;
    border-radius: 100rem;
    background-color: var(--thm-secondary);
    width: 100%;
    height: 100%;
}