@charset "UTF-8";
:root {
    touch-action: pan-x pan-y;
    height: 100%
}
::selection {
    background-color: #6e94cb;
    /* Change this to your desired background color */
    color: #fff;
    /* Change this to your desired text color */
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }
}

@keyframes slide-down {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }
}

.element {
    width: 100px;
    height: 100px;
    background: black;
    -webkit-animation: slide-down 5s 3;
    animation: slide-down 5s 3;
}

.visually-hidden {
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    position: absolute;
}


.restaurant-page .hero-image img {
    max-height: 350px;
}

.operating-hours {
    margin-top: 50px;
}

/* Calendar layout */
.calendar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}
.day {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 12px;
    text-transform: uppercase;
}

.day-name {
    font-weight: 700;
    font-size: 20px;
}

.hours {
    color: #007a00;
    font-size: 21px;
    font-weight: 700;
}

.status {
    color: red;
    font-weight: 800;
    font-style: italic;
}

.open {
 
    border-color: #76e076;
    background: linear-gradient(to right, #9aef9a, #bdf5bd);
}

.closed {
    background-color: #ffe0e0;
    border-color: #e07676;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .days {
        grid-template-columns: repeat(3, 1fr); /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .days {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}


/* Info Containers */

.basic-info {
    text-align: center;
    font-size: 40px;
    margin-top: 90px;
    font-weight: 600;
    color: #636770;
}
.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.info-item {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    align-items: center;
    width: unset;
    margin: 15px;
    border: 1px solid #ece8e8;
    flex-grow:1;
}

.info-item .label {
    text-transform: uppercase;
    font-weight:800;
}
.info-item .icon-container {
    border-radius: 50px;
    background: linear-gradient(to right, #6fcfe8, #006e8b);

    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.info-item i {
    font-size: 20px;
    color: #fff;
}

.info-item p {
    font-size: 16px;
    margin: 0;
}



@media (max-width: 768px) {
    .info-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .info-container {
        flex-direction: column;
    }
}


@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom {
    from {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.zoom {
    -webkit-animation-name: zoom;
    animation-name: zoom;
}


@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

.zoomBounce {
    -webkit-animation-name: zoomBounce;
    animation-name: zoomBounce;
}

@-webkit-keyframes zoomBounce {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

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

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

@keyframes zoomBounce {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

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

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

@-webkit-keyframes movexy {
    0% {
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9);
    }

    100% {
        -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
        transform: translateX(30px) scale(1.3) translateY(10px);
    }
}

@keyframes movexy {
    0% {
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9);
    }

    100% {
        -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
        transform: translateX(30px) scale(1.3) translateY(10px);
    }
}

@-webkit-keyframes wave {
    0% {
        -webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
    }
}

@keyframes wave {
    0% {
        -webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
    }
}

@-webkit-keyframes gptFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes gptFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes gptFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes gptFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes gptFadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes gptFadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes gptFadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes gptFadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes gptFadeRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes gptFadeRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes gptZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

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

@keyframes gptZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

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

@-webkit-keyframes gptBounceIn {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

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

@keyframes gptBounceIn {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

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

.gptFade {
    -webkit-animation-name: gptFade;
    animation-name: gptFade;
}

.gptFadeUp {
    -webkit-animation-name: gptFadeUp;
    animation-name: gptFadeUp;
}

.gptFadeDown {
    -webkit-animation-name: gptFadeDown;
    animation-name: gptFadeDown;
}

.gptFadeLeft {
    -webkit-animation-name: gptFadeLeft;
    animation-name: gptFadeLeft;
}

.gptFadeRight {
    -webkit-animation-name: gptFadeRight;
    animation-name: gptFadeRight;
}

.gptZoomIn {
    -webkit-animation-name: gptZoomIn;
    animation-name: gptZoomIn;
}

.gptBounceIn {
    -webkit-animation-name: gptBounceIn;
    animation-name: gptBounceIn;
}

@-webkit-keyframes jumping {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 1;
    }

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

@keyframes jumping {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 1;
    }

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

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
}

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

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

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

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}



@-webkit-keyframes pulse {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        height: 120px;
        width: 120px;
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        height: 120px;
        width: 120px;
        opacity: 0;
    }
}



body {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #4D5062;
}

.help-block.with-errors {
    color: #f86e6e;
    position: absolute;
    top: -35px;

}

.home-agency {
    color: #696c81;
}

.home-agency h1,
.home-agency h2,
.home-agency h3,
.home-agency h4,
.home-agency h5,
.home-agency h6 {
    color: #4D5062;
}

.no-scroll {
    overflow: hidden;
}

#main_content {
    background: #fff;
}

svg {
    display: block;
}

svg.check {
    display:inline;
}

a,
button {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input,
textarea,
select {
    width: 100%;
    background: #f8f7fb;
    padding: 10px 15px;
    border: 0;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
    border-radius: 18.5px;
    border: 1px solid transparent;
    font-size: 1.1em;
}

select {
	color:#a4abc0;
}



/* Style the select when an option is selected */
.select option,
.select-selected {
    color: #696c81; /* Change the color of the select when an option is selected */
}



input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #a4abc0;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #a4abc0;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #a4abc0;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #a4abc0;
}

input::placeholder,
textarea::placeholder {
    color: #a4abc0;
}

input:focus,
textarea:focus {
    -webkit-box-shadow: 0px 15px 17px 0px rgba(20, 3, 70, 0.08);
    box-shadow: 0px 15px 17px 0px rgba(20, 3, 70, 0.08);
    background: transparent;
    border-color: #d1d1d1;
}

textarea {
    height: 160px;
}

a,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: 700;
    color: #696c81;
    font-family: 'Open Sans', sans-serif !important;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
    margin-top: -1px;
}

.pr {
    position: relative;
    z-index: 111;
}

.mb-160 {
    margin-bottom: 160px !important;
}

.mb-220 {
    margin-bottom: 185px;
}

@media (max-width: 991px) {

    .tag {
        margin: 0 10px 10px 0;
    }
    .mb-220 {
        margin-bottom: 100px;
    }
}

.bmt-100 {
    margin-top: 100px;
}

.mt-60 {
    margin-top: 60px;
}

@media (max-width: 991px) {
    .order-md {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}



.pr {
    position: relative !important;
}

.pd-none {
    padding: 0 !important;
}

.mb-75 {
    margin-bottom: 75px;
}

.mt-80 {
    margin-top: 77px;
}

@media (max-width: 991px) {
    .mt-80 {
        margin-top: 0;
    }
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-100 {
    margin-bottom: 100px;
}


@media (min-width:1800px) {
    .container {
        min-width: 1600px;
    }
}

@media (min-width:1600px) {
    .container {
        min-width: 1400px;
    }
}
.title-small {
    font-size: 1.35em;
    text-align: center;
    color: #6a7695 !important;
    margin-bottom: 53px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .gpt-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media (max-width: 767px) {
    .gpt-order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.gp-col-2 {
    width: 20%;
    padding: 0 15px;
}

/*
Flaticon icon font: Flaticon
Creation date: 24/08/2018 05:51
*/
@font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.eot");
    src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("../fonts/Flaticon.woff") format("woff"), url("../fonts/Flaticon.ttf") format("truetype"), url("../fonts/Flaticon.svg#Flaticon") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: "Flaticon";
        src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
    }
}

.content {
    padding-bottom: 200px;
}

.fi:before {
    display: inline-block;
    font-family: "Flaticon";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
}

.flaticon-playstore:before {
    content: "";
}

.flaticon-apple-logo:before {
    content: "";
}

@media (max-width: 992px) {
    .gp-col-2 {
        width: 33.33%;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .gp-col-2 {
        width: 50%;
        padding: 0 15px;
    }
}

@media (max-width: 420px) {
    .gp-col-2 {
        width: 100%;
        padding: 0 15px;
    }
}

/* Page Loader */
.loading {
    font-size: 84px;
    font-weight: 800;
    text-align: center;
    width: 100%;
    letter-spacing: -10px;
}

.loading span {
    position: relative;
    color: rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.loading span::after {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-text);
    color: #6e94cb;
    opacity: 0;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-animation: loading 3s infinite;
    animation: loading 3s infinite;
}

.loading span:nth-child(2)::after {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.loading span:nth-child(3)::after {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loading span:nth-child(4)::after {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.loading span:nth-child(5)::after {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading span:nth-child(6)::after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading span:nth-child(7)::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes loading {

    0%,
    75%,
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }

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

@keyframes loading {

    0%,
    75%,
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }

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


#map-container svg {
    width: 800px;
    height: 600px;
    margin:0 auto;
}

#map-container svg path {

}

#map-container {
   width: 100%;
    max-width: 800px;
    height: 600px;
    position: relative;
    margin:0 auto;
}
#tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px;
    border-radius: 3px;
    display: none;
    white-space: nowrap;
    font-size: 14px;
    pointer-events: none;
    transform: translate(-50%, -100%);
}

.znt-wrap {
    overflow: hidden;
    display: none;
}
.iframe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index:9999;
    display: flex;
}

.iframe-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
}

.iframe-content iframe {
    width: 100%;
    height: 100%;
}

.iframe-container .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}


/*--------------------------------------------------------------
  ##  Button
  --------------------------------------------------------------*/
.gp-btn {
    padding: 10px 32px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    position: relative;
    border: 2px solid #5FB277;
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    z-index: 2;

    font-size: 1.35em;
    font-weight: 600;
    border-radius: 50px !important;
    overflow: hidden;

}

.gp-btn.banner-btn {
    padding: 11px 33px;
    border-radius: 8px;
}

.gp-btn.btn-submit {
    border-color: #6e94cb;
    background: #6e94cb;
    width: auto;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 10px 27px;
}

.gp-btn.btn-submit:after {
    background: #6e94cb;
}

.gp-btn.btn-submit:hover {
    border-color: #f48b2b;
    background: #f48b2b;
    color: #fff;
}

.gp-btn.btn-circle {
    border-radius: 30px;
    overflow: hidden;
}

.gp-btn.btn-sqr {
    border-radius: 0;
}

.gp-btn.btn-lg {
    padding: 16px 35px;
}

.gp-btn i {
    font-size: 1.35em;
    margin-left: 5px;
    display: inline-block;
    vertical-align: -3px;
}

.gp-btn:after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    content: "";
    color: #000 !important;
    background: #6e94cb;
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
   
}

.gp-btn:hover {
    color: #6e94cb;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn:hover:after {
    top: 0;
    bottom: auto;
    height: 0;
}

.gp-btn.gp-btn-light {
    color: #6e94cb;
    border-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.gp-btn-light:after {
    background: #fff;
}

.gp-btn.gp-btn-light:hover {
    color: #fff;
}

.gp-btn.gp-btn-light.btn-light-four {
    color: #f8b137;
}

.gp-btn.gp-btn-light.btn-light-four:hover {
    color: #fff;
}

.gp-btn.gp-btn-light.color-three {
    color: #6e94cb;
    border-color: #fff;
}

.gp-btn.gp-btn-light.color-three:after {
    background: #fff;
}

.gp-btn.gp-btn-light.color-three:hover {
    color: #fff;
}

.gp-btn.btn-light {
    color: #646975;
    border-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
    box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
}

.gp-btn.btn-light:after {
    background: #fff;
}

.gp-btn.btn-light:hover {
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.btn-light.btn-light-four {
    color: #f8b137;
}

.gp-btn.btn-light.btn-light-four:hover {
    color: #fff;
}

.gp-btn.btn-light.color-three {
    color: #6e94cb;
    border-color: #fff;
}

.gp-btn.btn-light.color-three:after {
    background: #fff;
}

.gp-btn.btn-light.color-three:hover {
    color: #fff;
}

.gp-btn.btn-ass {
    padding: 7px 18px;
    border-radius: 6px;
    color: #696c81;
    border-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    overflow: hidden;
}

.gp-btn.btn-ass:after {
    background: #f2f2f2;
}

.gp-btn.btn-ass:hover {
    background: #6e94cb;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.btn-grey {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #f2f2f7;
    color: #696c81;
    background: #f2f2f7;
}

.gp-btn.btn-grey:after {
    height: 0;
    background: #6e94cb;
}

.gp-btn.btn-grey:hover {
    color: #fff;
    border-color: #6e94cb;
    -webkit-box-shadow: 0 10px 20px 0 rgba(26, 191, 104, 0.3);
    box-shadow: 0 10px 20px 0 rgba(26, 191, 104, 0.3);
}

.gp-btn.btn-grey:hover:after {
    height: 100%;
}

.gp-btn.btn-round {
    border-radius: 4px;
    overflow: hidden;
}

.gp-btn.btn-two {
    border-color: #6e94cb;
}

.gp-btn.btn-two:after {
    background: #6e94cb;
}

.gp-btn.btn-two:hover {
    color: #6e94cb;
}

.gp-btn.color-eight {
    border-color: #6e94cb;
    -webkit-box-shadow: 0 20px 30px 0 rgba(0, 201, 156, 0.16);
    box-shadow: 0 20px 30px 0 rgba(0, 201, 156, 0.16);
    border-width: 2px;
}

.gp-btn.color-eight:after {
    background: #6e94cb;
}

.gp-btn.color-eight:hover {
    color: #6e94cb;
    border-color: #93e8d5;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-eight.btn-outline {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #6e94cb;
}

.gp-btn.color-eight.btn-outline:hover {
    color: #fff;
    border-color: #6e94cb;
}



.gp-btn.btn-outline {
    border-color: #dfe3ed;
    color: #343e5d;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.btn-outline:after,
.gp-btn.color-zoniz:after {
    height: 0;
}

.gp-btn.btn-outline:hover {
    color: #fff;
    border-color: #6e94cb;
}

.gp-btn.btn-outline:hover:after,
.gp-btn.color-zoniz:hover:after {
    height: 100%;
}

.gp-btn.btn-outline.color-two {
    border: 2px solid #93e8d5;
    color: #6e94cb;
}

.gp-btn.btn-outline.color-two:after {
    background: #6e94cb;
}

.gp-btn.btn-outline.color-two:hover {
    color: #fff;
}

.gp-btn.btn-outline.btn-outline-light {
    border-color: #c4c4e0;
    color: #696c81;
}

.gp-btn.btn-outline.btn-outline-light:after {
    background: #6e94cb;
}

.gp-btn.btn-outline.btn-outline-light:hover {
    color: #fff;
}

.gp-btn.color-three {
    border-color: #6e94cb;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 2px;
}

.gp-btn.color-three:after {
    background: #6e94cb;
}

.gp-btn.color-three:hover {
    color: #6e94cb;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-three.btn-outline {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #6e94cb;
}

.gp-btn.color-three.btn-outline:hover {
    color: #fff;
    border-color: #6e94cb;
}

.gp-btn.color-four {
    border: 2px solid #f8b137;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-four:after {
    background: #f8b137;
}

.gp-btn.color-four:hover {
    color: #f8b137;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-four.btn-light {
    border-color: #fff;
}

.gp-btn.color-four.btn-light:after {
    background: #fff;
}

.gp-btn.color-four.btn-light:hover:after {
    background: transparent;
}

.gp-btn.color-four.btn-outline {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #dfe3ed;
}

.gp-btn.color-four.btn-outline:hover {
    border-color: #f8b137;
    color: #fff;
}

.gp-btn.color-five {
    border: 2px solid #ff5e85;
    -webkit-box-shadow: 0 20px 20px 0 rgba(218, 57, 96, 0.2);
    box-shadow: 0 20px 20px 0 rgba(218, 57, 96, 0.2);
}

.gp-btn.color-five:after {
    background: #ff5e85;
}

.gp-btn.color-five:hover {
    color: #ff5e85;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-five.btn-outline {
    border-color: #dfe3ed;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-five.btn-outline:hover {
    color: #fff;
    border-color: #ff5e85;
    -webkit-box-shadow: 0 20px 20px 0 rgba(218, 57, 96, 0.2);
    box-shadow: 0 20px 20px 0 rgba(218, 57, 96, 0.2);
}

.gp-btn.color-six {
    border: 2px solid #cd50e2;
    background: transparent;
    -webkit-box-shadow: 0 14px 20px 0 rgba(205, 80, 226, 0.3);
    box-shadow: 0 14px 20px 0 rgba(205, 80, 226, 0.3);
}

.gp-btn.color-six:after {
    background: #cd50e2;
}

.gp-btn.color-six:hover {
    color: #cd50e2;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}

.gp-btn.color-six.btn-outline {
    border-color: #dfe3ed;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-six.btn-outline:hover {
    color: #fff;
    border-color: #cd50e2;
    -webkit-box-shadow: 0 14px 20px 0 rgba(205, 80, 226, 0.3);
    box-shadow: 0 14px 20px 0 rgba(205, 80, 226, 0.3);
}

.gp-btn.color-seven {
    border-color: #6e58fc;
    -webkit-box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
    box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
}

.gp-btn.color-seven:after {
    background: #6e58fc;
}

.gp-btn.color-seven:hover {
    color: #6e58fc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-seven.btn-outline {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #6e58fc;
}

.gp-btn.color-seven.btn-outline:hover {
    color: #fff;
    border-color: #6e58fc;
}

.gp-btn.color-eight {
    border-color: #6e94cb;
    -webkit-box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
    box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
    padding: 12px 25px;
}

.gp-btn.color-eight:after {
    background: #6e94cb;
}

.gp-btn.color-eight:hover {
    color: #6e94cb;
    border-color: #6e94cb;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-zoniz {
    border-color: #6e94cb;
    color: #fff;
    background: #6e94cb;
    -webkit-box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
    box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
    padding: 8px 24px;
}

.gp-btn.color-zoniz:after {
    background: #fff;
}

.gp-btn.color-zoniz:hover {
    color: #6e94cb;
    border-color: #6e94cb;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.container.cta.fixed {
    position: fixed;
  
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    min-width: 100%;
    padding: 50px 0;
    box-shadow: 0 20px 30px 0 rgb(140 140 140);
    background: #fff;
    transition:.3s all;
}

.gp-btn.color-eight.btn-light {
    box-shadow: none;
    color: #ffffff;
    background: radial-gradient(circle farthest-corner at 100% 50%, #6e94cb, #9ebde9 129%);
    background: radial-gradient(circle farthest-corner at 100% 50%, #d5476b, #cf738a 129%);
    border: 0;
    font-size: 40px;
    padding: 20px 35px;
    text-transform: uppercase;
    box-shadow: 0 20px 20px 0 rgba(36, 36, 38, 0.2);
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    transition: all 0.3s ease-in-out;
    animation: pulsate 1.5s infinite;
}

.gp-btn.color-eight.btn-light svg {
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50px;
    padding: 4px;
    margin-left: 20px;
}

.gp-btn.color-eight.btn-light svg path {
    fill:#cf3f63;
}
.gp-btn.color-eight.btn-light:active {
    color: #ffffff;
}
.gp-btn.color-eight.btn-light:after {
    background: radial-gradient(circle farthest-corner at 100% 50%, #6e94cb, #9ebde9 129%);
    background: radial-gradient(circle farthest-corner at 100% 50%, #d5476b, #cf738a 129%);
}

.gp-btn.color-eight.btn-light:hover {
    background: radial-gradient(circle farthest-corner at 100% 50%, #9ebde9, #6e94cb 129%);
    background: radial-gradient(circle farthest-corner at 100% 50%, #e71f53, #cf3f63 129%);
    border-color: #fff;
}

.gp-btn.color-eight.btn-outline {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #6e94cb;
    background: transparent;
}

.gp-btn.color-eight.btn-outline:hover {
    color: #fff;
    border-color: #6e94cb;
}

.gp-btn.color-eight.btn-outline.btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.502);
}

.gp-btn.color-eight.btn-outline.btn-light:hover {
    border-color: #fff;
    color: #6e94cb;
}

.gp-btn.color-two {
    border-color: #ff6344;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-shadow: 0 20px 30px 0 rgba(255, 83, 48, 0.16);
    box-shadow: 0 20px 30px 0 rgba(255, 83, 48, 0.16);
}

.gp-btn.color-two:after {
    background: #ff6344;
}

.gp-btn.color-two:hover {
    color: #ff6344;
    border-color: #ff6344;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-two.btn-outline {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ff6344;
}

.gp-btn.color-two.btn-outline:hover {
    color: #fff;
    border-color: #ff6344;
}

.gp-btn.color-two.btn-light {
    color: #646975;
    border-color: #fff;
    background: #ff6344;
    -webkit-box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
    box-shadow: 0 6px 10px 0 rgba(32, 46, 77, 0.08);
}

.gp-btn.color-two.btn-light:after {
    background: #fff;
}

.gp-btn.color-two.btn-light:hover {
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ff6344;
}

.gp-btn.color-nine {
    border-color: #fb8c5c;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-nine:after {
    background: #fb8c5c;
}

.gp-btn.color-nine:hover {
    color: #fb8c5c;
    border-color: #fb8c5c;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gp-btn.color-nine.btn-outline {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fb8c5c;
}

.gp-btn.color-nine.btn-outline:hover {
    color: #fff;
    border-color: #fb8c5c;
}

.gp-btn.color-nine.btn-light {
    color: #646975;
    border-color: #fff;
    background: #fb8c5c;
}

.gp-btn.color-nine.btn-light:after {
    background: #fff;
}

.gp-btn.color-nine.btn-light:hover {
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #fb8c5c;
}


/* Back To Top */
.return-to-top {
    position: fixed;
    bottom: -30px;
    right: 20px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    z-index: 998;
    border-radius: 8px;
    opacity: 0;
    -webkit-transition: bottom 0.5s ease, opacity 0.5s ease;
    -o-transition: bottom 0.5s ease, opacity 0.5s ease;
    transition: bottom 0.5s ease, opacity 0.5s ease;
}

.return-to-top:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    opacity: 1;
    display: block;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: inherit;
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease, opacity 0.6s ease;
    transition: transform 0.5s ease, opacity 0.6s ease;
    transition: transform 0.5s ease, opacity 0.6s ease, -webkit-transform 0.5s ease;
}

.return-to-top:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: inherit;
}

.return-to-top>i {
    position: relative;
    overflow: hidden;
    font-size: 12px;
    width: inherit;
    height: inherit;
    line-height: inherit;
    display: block;
    color: transparent;
    text-shadow: 0 0 #fff, 0 50px #fff;
    -webkit-transition: text-shadow 0.2s ease;
    -o-transition: text-shadow 0.2s ease;
    transition: text-shadow 0.2s ease;
    z-index: 1;
}

.return-to-top:hover:after {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
    background: #6e94cb;
    -webkit-box-shadow: 0 10px 20px 8px rgba(110, 148, 203, 0.35);
    box-shadow: 0 10px 20px 8px rgba(110, 148, 203, 0.35)
}

.home-analytics .return-to-top:hover:after {
    background: #f8b137;
    -webkit-box-shadow: 0 10px 20px 8px rgba(248, 177, 55, 0.15);
    box-shadow: 0 10px 20px 8px rgba(248, 177, 55, 0.15);
}

.return-to-top:hover>i {
    text-shadow: 0 -50px #fff, 0 0 #fff;
}

.return-to-top.back-top {
    bottom: 20px;
    opacity: 1;
}

.gp-btn-normal {
    color: #706c79;
    font-size: 15px;
    font-weight: 500;
}

.gp-btn-normal i {
    display: inline-block;
    vertical-align: -3px;
    font-size: 1.35em;
    margin-left: 5px;
}

.gp-btn-normal:hover {
    color: #fb8c5c;
}


/* prajituras */


.prajitura-configurator {
    display: block;
    z-index: 1003;
    position: fixed;
    width: 450px;
    max-width: 90%;
    height: 450px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    margin: auto;
    /* transition:.6s all; */
    transform: translateY(0);

}


.prajitura-configurator.hide {
    transform: translateY(150vh);
    /* transition: 1s all; */
    opacity: 0;
    pointer-events: none;
}

.prajitura-configurator .configurator {
    box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.03), 0 26px 30px 0 rgba(0, 0, 0, 0.04);
    background: white;
    position: relative;
    border-radius: 18.5px;
    padding: 25px;
}

.prajitura-configurator .close-icon {
    border-radius: 50px;
    height: 20px;
    width: 20px;
    color: white;
    background: #696c81;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 17px;
    line-height: 17px;
}

.prajitura-configurator p {
    color: #696c81;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.prajitura-configurator .title {
    text-align: center;
    margin-bottom: 25px;
    min-height: 0;
    margin-top: 0;
}

.prajitura-configurator .row {
    padding: 10px 0;
    display: flex;
    align-items: center;
    margin: 0;
}

.prajitura-configurator label {
    color: #696c81;
    margin-right: 15px;
    min-width: 250px;
    font-weight: 500;
}

.prajitura-configurator .neutral-btn {
    position: static;
    font-size: 1.35em;
    font-weight: 400;
    margin-top: 12px;
    z-index: 99;
    background-color: #ffffff;
    border: 1px solid #c7c8ca;
    padding: 8px 15px;
    border-radius: 8px !important;
    outline: none;
    cursor: pointer;
    margin: 0 auto;
    box-sizing: border-box;
    line-height: .75;
    transition: .2s all;
}

.prajitura-configurator .neutral-btn:hover {
    background: #6e94cb;
    color: white;
}

.prajitura-configurator .accept-all-prajituras-btn {
    background: #6e94cb;
    border-color:#6e94cb;
    color: white;
    margin: 0 auto;
}


.prajitura-popup-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: unset;
    overflow: hidden;
    margin-top: auto;
    font-size: 16px;
    line-height: 1.5em;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.03), 0 26px 30px 0 rgba(0, 0, 0, 1);
    z-index: 100;
    transition-delay: .5s !important;
    padding: 1em 1.8em;
    padding-top: 20px;
    z-index: 10000;
}

.prajitura-popup-wrapper.hide {
    display: none;
}

.accept-all-prajituras-btn {
    position: static;
    font-size: 1.35em;
    font-weight: 400;
    margin-top: 12px;
    z-index: 99;
    background: #6e94cb;
    color: white;
    padding: 8px 15px;
    border-radius: 8px !important;
    border: 0;
    outline: none;
    display: block;
    top: .5em;
    right: .5em;
    opacity: .9;
    line-height: .75;
    cursor: pointer;
}


.prajituraPopup .message {
    font-size: 13.5px;
    color: #696c81;
    font-weight: 500;
    width: 100%;
    margin: 0 auto;
    line-height: 19px;
    z-index: 2;
    position: relative;

}

.prajituraPopup img {
    margin-bottom: 0;
}

.prajituraPopup .readMoreLink {
    color: #696c81 !important;
    font-weight: 500;
    font-size: 13.5px;

}

#configureprajituraPrefBtn {
    text-decoration: none;
    border: none;
    background: none;
    border-bottom: 1px solid #c7c8ca;
    margin-top: 20px;
    cursor: pointer;
    outline: none;
    font-size: 13.3px;
    font-weight: 500;
}

.cc-close svg {

    height: 15px;
    z-index: -1;
    pointer-events: none;

}

.cc-close svg polygon.a {
    fill: #fff;
}

.cc-close:focus {
    outline: none;
}


.prajitura-popup-small {
    height: 40px;
    width: 40px;
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
}

.prajituraPopup {
    max-width: 450px;
}

.prajitura-popup-small img {
    height: auto;
    width: 100%;
}

.blur-element {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    z-index: 1000;
}

.blur-element.hide {
    display: none !important;

}


.zonizSwitch-container label {
    font-size: 13px;
}

.zonizSwitch {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    font-size: 10px;
    line-height: 10px;
    color: #666666;
    background: #6bb884;
    border-radius: 5px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 30px;
    height: 18px;
    box-sizing: border-box;
    border: none;
}

.zonizSwitch.labeled {
    position: relative;
    width: 28px;
    margin-right: 10px;
    right: unset;
    top: 0;
    box-shadow: 0px 0px 0px 0px #ffffff, inset 0px 0.5px 0px 0.5px #6bb884, inset 0 0 55px 7px rgba(255, 255, 255, 0);
}

.zonizSwitch.labeled.off {
    background: #f1f2f8;
    box-shadow: 0px 0px 0px 0px #ffffff, inset 0px 0.5px 0px 0.5px rgb(202, 205, 213), inset 0 0 55px 7px #f1f2f8;
}

.zonizSwitch.labeled.off .labels {
    right: 0;
    bottom: 0;
    left: -2px;
    width: auto;
    text-align: left;
    padding: 0;
    height: 18px;
    position: absolute;
    top: 0;
}

.zonizSwitch.off .dot {
    background: #ffffff;
    border: 1px solid rgb(202, 205, 213);
    box-sizing: border-box;
}

.zonizSwitch .labels {
    position: absolute;
    height: 18px;
    text-align: left;
    padding: 0 3px;
    right: -2px;
    bottom: 0;
    top: 0;
    left: unset;
    width: auto;
    height: 18px;
    text-align: left;
    padding: 0;
}

.zonizSwitch .dot {
    background: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 29%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px 0 2px;
    border: 1px solid #6bb884;
    box-sizing: border-box;
}


.zonizSwitch.disabled {
    cursor: not-allowed;
}


.cc-type-info.cc-theme-classic {
    padding-bottom: 22px;

    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    top: 50px;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.03), 0 26px 30px 0 rgba(0, 0, 0, 0.04);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    top: 40px;
    right: 40px;
    margin-left: auto;
    z-index: 100;
    transition-delay: .5s !important;
    padding-top: 20px;
    border-radius: 50%;
}


.prajituraPopup .message {
    font-size: 13.5px;
    color: #696c81;
    font-weight: 100;
    width: 81%;
    margin: 0 auto;
    line-height: 19px;
    z-index: 2;
    position: relative;

}

.prajituraPopup img {
    margin-bottom: 0;
}

.prajituraPopup .readMoreLink {
    color: #696c81 !important;
    font-weight: 100;
    font-size: 13.5px;

}

.cc-close {
    position: static;
    font-size: 1.35em;
    font-weight: 400;
    margin-top: 12px;
    z-index: 99;
}

.cc-close svg {

    height: 15px;
    z-index: -1;
    pointer-events: none;
}

.cc-close polygon.a {
    fill: #fff;
}

.cc-close:focus {
    outline: none;
}




/*--------------------------------------------------------------
##  Section Heading
--------------------------------------------------------------*/
.section-heading {
    margin-bottom: 70px;
    text-align: center;
    position: relative;
    z-index: 222;
}
.section-heading .apple-android-centered img {
    height:70px;
}
.section-heading .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    color: #6e94cb;
    font-weight: 500;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.section-heading .section-title {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    font-weight: 800;
}

@media (max-width: 768px) {
    .icon-box.style-five.no-hover {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .section-heading .section-title {
        font-size: 40px;
        line-height: 40px;
    }
    .image-content-wrapper.style-two .title {
        margin-top: 20px;
    }
    .image-content-wrapper.style-two .title,
    .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content h3 {
        font-size: 25px !important;
    }
}

.section-heading .section-title span {
    font-weight: 300;
}

@media (max-width: 576px) {
    .section-heading .section-title {
        font-size: 35px;
        line-height: 38px;
    }

    .section-heading .section-title br {
        display: none;
    }
}

.section-heading p {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
}

.section-heading.special p {
    font-size: 18px;
}


.section-heading.style-three .subtitle {
    color: #6e94cb;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.3em;
}

.section-heading.font-light .section-title {
    font-weight: 500;
}

.section-heading.style-two {
    margin-bottom: 63px;
}

.section-heading.style-two .subtitle {
    font-size: 16px;
    color: #6e94cb;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-heading.style-two .section-title {
    font-size: 40px;
    font-weight: 600;
    color: #4D5062;
    position: relative;
    padding-bottom: 20px;
}

.section-heading.style-two .section-title:after,
.section-heading.style-two .section-title:before {
    content: "";
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    height: 1px;
    width: 80px;
    background-color: #6e94cb;
}

.section-heading.style-two .section-title:before {
    left: 48%;
}

.section-heading.style-two .section-title:after {
    bottom: -5px;
    left: 52%;
}

@media (max-width: 768px) {
    .section-heading.style-two .section-title {
        font-size: 30px;
        line-height: 40px;
    }
}

.section-heading.style-two.text-left .section-title:after,
.section-heading.style-two.text-left .section-title:before {
    left: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.section-heading.style-two.text-left .section-title:after {
    width: 50px;
}

.section-heading.style-two .social-slider-nav .slider-next,
.section-heading.style-two .social-slider-nav .slider-prev {
    color: #4D5062;
    border-color: #e0e3e8;
}

.section-heading.style-two .social-slider-nav .slider-next:hover,
.section-heading.style-two .social-slider-nav .slider-prev:hover {
    background-color: #6e94cb;
    border-color: #6e94cb;
    color: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(6, 16, 149, 0.2);
    box-shadow: 0px 20px 30px 0px rgba(6, 16, 149, 0.2);
}

.section-heading.style-four .section-title {
    font-size: 40px;
}

.section-heading.style-four p {
    color: #646975;
}

.section-heading.style-four.font-light .section-title {
    font-weight: 500;
}

.section-heading.style-five .subtitle {
    color: #fb8c5c;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.section-heading.style-five .section-title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .section-heading.style-five .section-title {
        font-size: 30px;
        line-height: 40px;
    }
}




/*--------------------------------------------------------------
  ##  Preloader
  --------------------------------------------------------------*/
.page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999999;
    background-color: #fff;
}

.page-loader .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

.page-loading-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-loading-wrapper svg {
    width: 0;
    height: 0;
}



@keyframes circle {
    50% {
        width: 25px;
        height: 25px;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-header .nav-right .gp-btn {
    margin-left:25px;
}
.site-header .nav-right .flags {
    margin-right: 15px;
    display:flex;
}

.site-header .nav-right .flags .flag {
    display: flex;
    align-items: center;
    color: #313131;
}

.site-header .nav-right .flags .flag label {
    padding: 0;
    margin: 0;
    margin-left: 10px;
    font-weight: 600;
}



.site-header .nav-right .flags img {
    height: 30px;
    margin-left: 15px;
    filter: drop-shadow(0px 14px 14px rgba(6, 16, 149, 0.2));
}


.site-header .nav-right .flags img:hover {
    opacity:.7;
}

.site-header .flags {
    position:relative;
}
.site-header .flags-dropdown {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid #e9e9e9;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
 
   
    z-index: 100;
}
.site-header .flags:hover .flags-dropdown,
.site-header .flags-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header .flags-dropdown .scrollable-content {
    min-width: 150px; 
    max-height: 400px; 
    overflow-y: auto; 
}

.site-header .flags-dropdown label {
    font-weight: 600;
    padding-top: 5px;
    color: #202020;
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

.site-header .nav-right .flags-dropdown a {
   
    border-bottom: 2px solid #dbdbdb;
    width: 100%;
    padding: 7px 10px 7px 10px;
    min-width: 180px;
    box-sizing: border-box;
    display:flex;
    color:#797e87;
    transition: .1s all;
}

.site-header .nav-right .flags-dropdown a:hover {
    background: #444444;
    color:#fff;
}

.site-header .nav-right .flags-dropdown a:last-child {
    border-bottom: 0;
}
.site-header .nav-right .flags-dropdown a p {
    margin-bottom: 0;
    margin-right: 7px;
    
    font-weight: 600;
}
.site-header .nav-right .flags-dropdown img {
    margin: 0;
    min-width:30px;
    margin-right: auto;
}

@media all and (max-width:1200px){ 
    .site-header:not(.mobile-header) .nav-right .flags {
        position: absolute;
        right: -10px;
        top: 35px;
    }

    .site-header .nav-right .flags img {
        height: 33px;
        margin-left: 22px;
        margin-left: 15px;
        filter: drop-shadow(0px 14px 14px rgba(6, 16, 149, 0.2));
    }
    

}

.site-header .container-full {
    padding: 0 50px;
}



@media (max-width: 576px) {
    .site-header .container-full {
        padding: 0 15px;
    }
}


.site-header.header-transparent {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
}

.site-header.header-transparent .astriol-main-menu>li>a:before {
    display: none;
}

.site-header .site-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header .site-logo a {
    font-size: 30px;
    font-weight: 700;
  
    display: block;
    color: #000;
    width: 100%;
}

.site-header .site-logo a h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.site-header .site-logo a img {
    width: 100%;
}

.site-header .slogan {
    font-size: 18px;
    padding-left: 10px;
    color: #42435f;
    margin-top: -8px;
    font-weight: 600;
}

.site-header .mobile-offcanvas-logo .slogan {
    padding-left: 6px;
    margin-top: -6px;
    font-size: 13px;
}

.site-header .site-logo .logo-sticky {
    display: none;
}

.site-header .astriol-burger-menu {
    text-align: right;
    display: none;
    cursor: pointer;
}

.site-header .astriol-burger-menu.style-two {
    background: #f8f8f8;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    padding: 20px 17px;
    margin-right: 20px;
    text-align: left;
    display: inline-block;
}

.site-header .astriol-burger-menu.style-two span {
    margin-left: 0;
}

.site-header .astriol-burger-menu.mobile-view {
    display: none;
}

.site-header .astriol-burger-menu span {
    background: #696c81;
    height: 2px;
    display: block;
    margin-left: auto;
}

.site-header .astriol-burger-menu span:not(:last-child) {
    margin-bottom: 5px;
}

.site-header .astriol-burger-menu .bar-one {
    width: 20px;
}

.site-header .astriol-burger-menu .bar-two {
    width: 25px;
}

.site-header .astriol-burger-menu .bar-three {
    width: 15px;
}

.site-header.header-seo:not(.showed) .astriol-burger-menu span {
    background: #fff;
}

.site-header .add-menu {
    margin: 0;
    padding: 31px 0;
    list-style: none;
    font-weight: 500;
}

.site-header .add-menu li a {
    color: #000;
}

.site-header .tt-hamburger {
    width: 24px;
    cursor: pointer;
}

.site-header .tt-hamburger.active {
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 992px) {
    .site-header .tt-hamburger {
        display: none;
    }
}

.site-header .tt-hamburger:focus {
    outline: 0;
}

.site-header .tt-hamburger .bar {
    background: #fff;
    height: 2px;
    display: block;
}

.site-header .tt-hamburger .bar:not(:last-child) {
    margin-bottom: 5px;
}

.site-header.header-fixed.showed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.page-popup-open .site-header.header-fixed.showed.mobile-header {
    background: none;
}

.site-header.header-fixed.showed #navbar-logo.navbar-brand {
    color: #696c81;
}

.header-position .site-header.header-fixed.showed {
    top: 32px;
}

@media (max-width: 782px) {
    .header-position .site-header.header-fixed.showed {
        top: 46px;
    }
}

.site-header.header-fixed.showed .site-logo .main-logo {
    display: none;
}

.site-header.header-fixed.showed .site-logo a {
    color: #051441;
}

.site-header.header-fixed.showed .site-logo h3 {
    color: #051441;
}

.site-header.header-fixed.showed .add-menu li a {
    color: #051441;
}

.site-header.header-fixed.showed .tt-hamburger .bar {
    background: #051441;
}

.site-header .logo {
    margin-right: 50px;
}

@media all and (max-width:1200px) {

}

@media (min-width: 1200px) {
    .site-header:not(.mobile-header) .site-logo {
        width: 20%;
    }

    .site-header:not(.mobile-header).header-main .nav-right {
        margin-left: 40px;
    }

    .site-header:not(.mobile-header).header-main .nav-right .btn-help {
        margin-right: 10px;
    }

    .site-header:not(.mobile-header).header-main .nav-right .nav-btn {
        padding: 6px 21px;
        font-size: 14px;
        background-color: #6e94cb;
    }

    .site-header:not(.mobile-header).header-main .nav-right .nav-btn i {
        margin-left: 0;
        margin-right: 5px;
        font-size: 14px;
        vertical-align: middle;
    }

    .site-header:not(.mobile-header).header-main .nav-right .nav-btn:after {
        display: none;
    }

    .site-header:not(.mobile-header).header-main .nav-right .nav-btn:hover {
        color: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .site-header:not(.mobile-header).header-main .nav-right .nav-btn.btn-help {
        background-color: #eeedff;
        padding: 6px 27px;
    }

    .site-header:not(.mobile-header).header-main .nav-right .nav-btn.btn-help:hover {
        background-color: #554bfe;
        border-color: #554bfe;
    }

    .site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right {
        margin-left: 40px;
    }

    .site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right .btn-help {
        margin-right: 10px;
    }

    .site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right .nav-btn {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right .nav-btn:hover {
        -webkit-box-shadow: 0 10px 20px 0 rgba(6, 148, 73, 0.3);
        box-shadow: 0 10px 20px 0 rgba(6, 148, 73, 0.3);
    }

    .site-header:not(.mobile-header).header-main.header-fixed.showed .nav-right .nav-btn.btn-help {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .site-header:not(.mobile-header) .nav-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .site-header:not(.mobile-header) .nav-right .search-btn {
        display: inline-block;
        margin-right: 15px;
        color: #051441;
        cursor: pointer;
    }

    .site-header:not(.mobile-header) .menu-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .submenu-align-right .site-header:not(.mobile-header) {
        width: auto;
    }
}

.site-header:not(.mobile-header) .main-nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background:none;
    border:0;
}

.site-header:not(.mobile-header) .main-nav {
    position: relative;
}

.site-header:not(.mobile-header) .astriol-main-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
}

.site-header:not(.mobile-header) .astriol-main-menu>li {
    padding: 35px 0;
}

.site-header:not(.mobile-header) .astriol-main-menu>li>a {
    font-weight: 700;
    font-size: 1.55em;
    color: #4D5062;
    position: relative;
    border-bottom: 1px solid transparent;
    transition: .1s all;
    display: flex;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.site-header:not(.mobile-header) .astriol-main-menu>li.has-submenu > a {
    cursor: default;
}

.site-header .astriol-main-menu>li>a i {
    position: relative;
    top: 2px;
}

@media all and (max-width:1600px) {
    #zoniz-header .icon-logo:before {
        font-size: 40px !important;
    }

    #zoniz-header.site-header:not(.mobile-header) .astriol-main-menu>li>a {
        font-size: 1.25em;
    }
}

@media all and (max-width:1400px) {

    #zoniz-header.site-header .logo {
        margin-right: 20px;
    }

    #zoniz-header .icon-logo:before {
        font-size: 35px !important;
    }

    #zoniz-header.site-header:not(.mobile-header) .astriol-main-menu>li>a {
        font-size: 1.15em;
    }

    #zoniz-header.site-header:not(.mobile-header) .astriol-main-menu li {
        margin-right: 20px;
    }


}

.site-header:not(.mobile-header) .astriol-main-menu>li:not(.has-submenu)>a:hover {
    border-bottom: 3px solid #6e94cb;
}

.site-header:not(.mobile-header) .astriol-main-menu>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -2px;
    transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}

.site-header:not(.mobile-header) .astriol-main-menu>li>a:hover:before,
.site-header:not(.mobile-header) .astriol-main-menu>li>a.current-menu-item:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.site-header:not(.mobile-header) .astriol-main-menu>li>a:after {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.site-header:not(.mobile-header) .astriol-main-menu>li:nth-last-child(-n+3).has-submenu .sub-menu {
    left: 0;
    right: auto;
    top: 85%;
}

.site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu,
.site-header .astriol-main-menu>li.has-submenu#features-sub-menu .sub-menu {
    left: 0;
    right: auto;
    top: 85%;
    display: flex;
    flex-wrap: wrap;
    width: 545px;
}

.site-header .astriol-main-menu>li.has-submenu .sub-menu .title {
    display: block;
    flex-grow: 12;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
    padding-left: 25px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-bottom: 2px solid #efefef;
    padding-bottom: 13px;
}

.site-header .astriol-main-menu>li.has-submenu .sub-menu .info-cont {
        display: flex;
        background: #ffaa61;
        width: 100%;
        bottom: 0;
        border-radius: 12px;
        margin: 0 10px;
        margin-top: 15px;
}

.site-header .astriol-main-menu>li.has-submenu .sub-menu .info-cont .col {
    font-size: 16px;
  
    font-weight: 600;
    padding: 8px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 16px;
    cursor: pointer;
}

.site-header .astriol-main-menu>li.has-submenu .sub-menu .info-cont .col.center-col {
    border-right:3px solid #fff;
    border-left:3px solid #fff;
}


.site-header .astriol-main-menu>li.has-submenu .sub-menu .info-cont .col a {
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
  
}

.site-header .astriol-main-menu>li.has-submenu .sub-menu .info-cont .col label {
    font-weight: 900;
    cursor: pointer;
}

@media all and (max-width:1009px) {
    .site-header .astriol-main-menu>li.has-submenu .sub-menu .title,
    .site-header .astriol-main-menu>li.has-submenu .sub-menu .info-cont {
        display:none;
    }
}


.site-header .astriol-main-menu li a{
    position:relative;
}
.site-header .astriol-main-menu li .new {
    background: #FF6969;
    border-radius: 18.5px;
    color: #fff;
    position: absolute;
    font-size: 12px;
    right: 22px;
    top: 6px;
    padding: 4px 16px;

}

.is-mobile-menu .site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu,
.is-mobile-menu .site-header .astriol-main-menu>li.has-submenu#features-sub-menu .sub-menu {
    max-width:100%;
}

.mobile-header.site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu,
.mobile-header.site-header .astriol-main-menu>li.has-submenu#features-sub-menu .sub-menu {
    flex-direction: column;
}

.site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu svg,
.site-header .astriol-main-menu>li.has-submenu#resources-sub-menu .sub-menu svg,
.site-header .astriol-main-menu>li.has-submenu#features-sub-menu .sub-menu svg
 {
    display: inline-block;
   
    margin-right: 10px;
    background: #007cd6;
    background: linear-gradient(60.07deg,#ffd385 4.25%,#e99f19 186.61%);
    height: 40px;
    width: 40px;
    min-width: 40px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #ededed;
    box-shadow: 0 4px 0px rgba(0, 5, 111, .1);
}
.site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu svg path,
.site-header .astriol-main-menu>li.has-submenu#resources-sub-menu .sub-menu svg path,
.site-header .astriol-main-menu>li.has-submenu#features-sub-menu .sub-menu svg path {
    fill:#ffaa61;
}

.site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu li,
.site-header .astriol-main-menu>li.has-submenu#features-sub-menu .sub-menu li {
    width: 50%;
    margin-right: 0;
}


.is-mobile-menu .site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu li, 
.is-mobile-menu .site-header .astriol-main-menu>li.has-submenu#features-sub-menu .sub-menu li {
    width:100%;
}



.site-header:not(.mobile-header) .astriol-main-menu>li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
    right: 100%;
}

.site-header:not(.mobile-header) .astriol-main-menu>li:not(.mega-menu) {
    position: relative;
}

.menu-light .site-header:not(.mobile-header) .astriol-main-menu>li>a {
    color: #fff;
}

.site-header:not(.mobile-header) .astriol-main-menu li {
    display: inline-block;
}

.site-header:not(.mobile-header) .astriol-main-menu li {
    margin-right: 25px;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu>a:after {
    content: "";
    font-family: "themify";
    position: absolute;
    top: calc(50% - 9px);
    right: 30px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    font-size: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu {
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 115%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
    min-width: 230px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(9, 2, 51, 0.1);
    box-shadow: 0 10px 30px 0 rgba(9, 2, 51, 0.1);
    z-index: 2222;
    width: 250px;
    border: 2px solid #e9e9e9;
    box-shadow: 2px 2px 5px rgba(0,0,0,.2);
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu.sub-menu-wide {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 80px 25px;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu.sub-menu-wide>.mega-menu-item>a {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    color: #051441;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu.sub-menu-wide>.mega-menu-item>a:after {
    display: none;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu.sub-menu-wide .sub-menu {
    position: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    visibility: unset;
    opacity: unset;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li {
    display: block;
    position: relative;
    margin-right: 0;
    line-height: 36px;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a {
    font-size: 16px;
    padding: 10px 0 10px 10px;
    line-height: 1.5;
    font-weight: 700;
    color: #696c81;
    border-radius: 10px;
    margin: 2px 13px;
    transition: none;
    display: flex;
    align-items:center;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    background: #fff4e0;
    color: #e9ab3c;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item svg path {
    fill: #e9ab3c;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a:hover {
    color: #e9ab3c;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a:hover svg path {
    fill: #e9ab3c;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a:hover:after,
.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li ul {
    padding: 15px 0;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 220px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0px 5px 10px #14303a15;
    box-shadow: 0px 5px 10px #14303a15;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu .sub-menu li.has-submenu:hover ul {
    opacity: 1;
    visibility: visible;
    top: -15px;
}

.site-header:not(.mobile-header) .astriol-main-menu li.has-submenu:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.site-header:not(.mobile-header).header-light .astriol-main-menu>li>a {
    color: #fff;
}

.site-header:not(.mobile-header).header-light .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-light .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #6e94cb;
}

.site-header:not(.mobile-header).header-light .nav-right .gp-btn {
    color: #fff;
}

.site-header:not(.mobile-header).header-light.header-fixed.showed .astriol-main-menu li a:hover,
.site-header:not(.mobile-header).header-light.header-fixed.showed .astriol-main-menu li a.current-menu-item {
    color: #6e94cb;
}

.site-header:not(.mobile-header).header-light.header-fixed.showed .nav-right .gp-btn {
    color: #051441;
    border-color: #051441;
}

.site-header:not(.mobile-header).header-light.header-fixed.showed .nav-right .gp-btn:hover {
    color: #fff;
    border-color: #6e94cb;
}

.site-header:not(.mobile-header).header-sass .astriol-main-menu>li>a:before {
    display: none;
}

.site-header:not(.mobile-header).header-sass .astriol-main-menu>li>a:hover,
.site-header:not(.mobile-header).header-sass .astriol-main-menu>li>a.current-menu-item {
    color: #ff6344;
}

.site-header:not(.mobile-header).header-sass .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-sass .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #ff6344;
}

.site-header:not(.mobile-header).header-sass.header-fixed.showed .astriol-main-menu li a:hover,
.site-header:not(.mobile-header).header-sass.header-fixed.showed .astriol-main-menu li a.current-menu-item {
    color: #ff6344;
}

.site-header:not(.mobile-header).header-sass.header-fixed.showed .nav-btn {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.site-header:not(.mobile-header).header-analytics .astriol-main-menu>li>a {
    color: #fff;
}

.site-header:not(.mobile-header).header-analytics .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-analytics .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #f8b137;
}

.site-header:not(.mobile-header).header-analytics .nav-right {
    margin-left: 50px;
}

.site-header:not(.mobile-header).header-analytics .nav-right .gp-btn {
    color: #f8b137;
    padding: 8px 28px;
}

.site-header:not(.mobile-header).header-analytics .nav-right .gp-btn:hover {
    color: #fff;
}

.site-header:not(.mobile-header).header-analytics.header-fixed.showed .astriol-main-menu li a:hover,
.site-header:not(.mobile-header).header-analytics.header-fixed.showed .astriol-main-menu li a.current-menu-item {
    color: #f8b137;
}

.site-header:not(.mobile-header).header-analytics.header-fixed.showed .nav-right {
    margin-left: 30px;
}

.site-header:not(.mobile-header).header-analytics.header-fixed.showed .nav-right .gp-btn {
    border-color: #f8b137;
    color: #fff;
}

.site-header:not(.mobile-header).header-analytics.header-fixed.showed .nav-right .gp-btn:after {
    background: #f8b137;
}

.site-header:not(.mobile-header).header-analytics.header-fixed.showed .nav-right .gp-btn:hover {
    background: transparent;
    color: #f8b137;
}

.site-header:not(.mobile-header).header-analytics .astriol-burger-menu span {
    background: #fff;
}

.site-header:not(.mobile-header).header-seo .astriol-main-menu>li>a {
    color: #fff;
    position: relative;
}

.site-header:not(.mobile-header).header-seo .astriol-main-menu>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}

.site-header:not(.mobile-header).header-seo .astriol-main-menu>li>a:hover:before,
.site-header:not(.mobile-header).header-seo .astriol-main-menu>li>a.current-menu-item:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.site-header:not(.mobile-header).header-seo .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-seo .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #ff5e85;
}

.site-header:not(.mobile-header).header-seo .nav-right {
    margin-left: 50px;
}

.site-header:not(.mobile-header).header-seo .nav-right .gp-btn {
    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
    padding: 8px 34px;
}

.site-header:not(.mobile-header).header-seo .nav-right .gp-btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: #fff;
}

.site-header:not(.mobile-header).header-seo.header-fixed.showed .astriol-main-menu li a:hover,
.site-header:not(.mobile-header).header-seo.header-fixed.showed .astriol-main-menu li a.current-menu-item {
    color: #ff5e85;
}

.site-header:not(.mobile-header).header-seo.header-fixed.showed .nav-right {
    margin-left: 30px;
}

.site-header:not(.mobile-header).header-seo.header-fixed.showed .nav-right .gp-btn {
    border-color: #ff5e85;
    color: #fff;
}

.site-header:not(.mobile-header).header-seo.header-fixed.showed .nav-right .gp-btn:after {
    background: #ff5e85;
}

.site-header:not(.mobile-header).header-seo.header-fixed.showed .nav-right .gp-btn:hover {
    background: transparent;
    color: #ff5e85;
}

.site-header:not(.mobile-header).header-seo .astriol-burger-menu span {
    background: #fff;
}

.site-header:not(.mobile-header).header-agency .astriol-main-menu>li>a {
    color: #fff;
}

.terms .site-header:not(.mobile-header).header-agency .astriol-main-menu>li>a {
    color: #051441;
}

.site-header:not(.mobile-header).header-agency .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-agency .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #6e94cb;
}

.site-header:not(.mobile-header).header-agency.header-fixed.showed .astriol-main-menu li a:hover,
.site-header:not(.mobile-header).header-agency.header-fixed.showed .astriol-main-menu li a.current-menu-item {
    color: #6e94cb;
}

.site-header:not(.mobile-header).header-agency.header-fixed.showed .nav-right .gp-btn,
.terms .site-header:not(.mobile-header).header-agency .nav-right .gp-btn {
    border-color: #6e94cb;
    color: #6e94cb;
}

.site-header:not(.mobile-header).header-agency.header-fixed.showed .nav-right .gp-btn:after,
.terms .site-header:not(.mobile-header).header-agency .nav-right .gp-btn:after {
    background: #6e94cb;
}

.site-header:not(.mobile-header).header-agency.header-fixed.showed .nav-right .gp-btn:hover,
.terms .site-header:not(.mobile-header).header-agency .nav-right .gp-btn:hover {
    color: #fff;
}

.site-header:not(.mobile-header).header-agency .nav-right {
    margin-left: 50px;
}

.site-header:not(.mobile-header).header-agency .nav-right .gp-btn {
    padding: 10px 25px;
}

.site-header:not(.mobile-header).header-agency-two .astriol-main-menu>li>a {
    color: #fff;
    transition: .2s all;
}

.site-header:not(.mobile-header).header-agency-two .astriol-main-menu>li>a:hover {
    opacity: .7;
}

.site-header:not(.mobile-header).header-agency-two .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-agency-two .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #fb8c5c;
}

.site-header:not(.mobile-header).header-agency-two.header-fixed.showed .astriol-main-menu li a:hover {
    color: #fb8c5c;
}

.site-header:not(.mobile-header).header-agency-two .nav-right {
    margin-left: 50px;
}

.site-header:not(.mobile-header).header-agency-two .nav-right .gp-btn {
    padding: 7px 32px;
}

.site-header:not(.mobile-header).header-dark-saas .astriol-main-menu>li>a:before {
    display: none;
}

.site-header:not(.mobile-header).header-dark-saas .astriol-main-menu>li>a:hover,
.site-header:not(.mobile-header).header-dark-saas .astriol-main-menu>li>a.current-menu-item {
    color: #6e94cb;
}

.site-header:not(.mobile-header).header-dark-saas .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-dark-saas .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #6e94cb;
}

.site-header:not(.mobile-header).header-dark-saas.header-fixed.showed .astriol-main-menu li a:hover {
    color: #6e94cb;
}

.site-header:not(.mobile-header).header-dark-saas .nav-right {
    margin-left: 50px;
}

.site-header:not(.mobile-header).header-dark-saas .nav-right .gp-btn {
    padding: 8px 32px;
    border-color: #6e94cb;
    border-width: 2px;
}

.site-header:not(.mobile-header).header-light-saas .astriol-main-menu>li>a {
    color: #fff;
}

.site-header:not(.mobile-header).header-light-saas .astriol-main-menu>li>a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.site-header:not(.mobile-header).header-light-saas .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-light-saas .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #6e58fc;
}

.site-header:not(.mobile-header).header-light-saas .nav-right {
    margin-left: 50px;
}

.site-header:not(.mobile-header).header-light-saas .nav-right .gp-btn {
    border-color: rgba(255, 255, 255, 0.502);
    color: #fff;
}

.site-header:not(.mobile-header).header-light-saas .nav-right .gp-btn:after {
    background: #fff;
}

.site-header:not(.mobile-header).header-light-saas .nav-right .gp-btn:hover {
    border-color: #fff;
    color: #6e58fc;
}

.site-header:not(.mobile-header).header-light-saas.header-fixed.showed .astriol-main-menu li a:hover,
.site-header:not(.mobile-header).header-light-saas.header-fixed.showed .astriol-main-menu li a.current-menu-item {
    color: #6e58fc;
}

.site-header:not(.mobile-header).header-light-social .astriol-main-menu>li>a {
    color: #fff;
    position: relative;
}

.site-header:not(.mobile-header).header-light-social .astriol-main-menu>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}

.site-header:not(.mobile-header).header-light-social .astriol-main-menu>li>a:hover:before,
.site-header:not(.mobile-header).header-light-social .astriol-main-menu>li>a.current-menu-item:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.site-header:not(.mobile-header).header-light-social .astriol-main-menu li.has-submenu .sub-menu li a:hover,
.site-header:not(.mobile-header).header-light-social .astriol-main-menu li.has-submenu .sub-menu li a.current-menu-item {
    color: #cd50e2;
}

.site-header:not(.mobile-header).header-light-social .nav-right {
    margin-left: 50px;
}

.site-header:not(.mobile-header).header-light-social .nav-right .gp-btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 8px 26px;
}

.site-header:not(.mobile-header).header-light-social .nav-right .gp-btn:hover {
    border-color: #fff;
    color: #fff;
}

.site-header:not(.mobile-header).header-light-social.header-fixed.showed .astriol-main-menu li a:hover,
.site-header:not(.mobile-header).header-light-social.header-fixed.showed .astriol-main-menu li a.current-menu-item {
    color: #cd50e2;
}

.site-header:not(.mobile-header).header-light-social.header-fixed.showed .nav-right .gp-btn:hover,
.site-header:not(.mobile-header).header-light-social.header-fixed.showed .nav-right .gp-btn.current-menu-item {
    border-color: #cd50e2;
    color: #cd50e2;
}

.site-header:not(.mobile-header).header-light-social.header-fixed.showed .astriol-burger-menu span {
    background: #051441;
}

.site-header:not(.mobile-header).header-transparent.header-2 .astriol-main-menu>li>a {
    color: #fff;
}

.site-header:not(.mobile-header).header-bg {
    background: #fff;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(8, 2, 46, 0.08);
    box-shadow: 0px 20px 40px 0px rgba(8, 2, 46, 0.08);
}

.site-header:not(.mobile-header).header-bg .astriol-main-menu>li {
    padding: 27px 0;
}

.site-header:not(.mobile-header).submenu-align-right .menu-wrapper {
    width: auto;
}

.site-header:not(.mobile-header).submenu-align-right .astriol-main-menu>li:nth-last-child(-n+3).has-submenu .sub-menu {
    left: auto;
    right: 0;
}

.site-header:not(.mobile-header).submenu-align-right .astriol-main-menu>li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
    right: 100%;
}

.site-header.header-fixed.showed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header-position .site-header.header-fixed.showed {
    top: 32px;
}

@media (max-width: 782px) {
    .header-position .site-header.header-fixed.showed {
        top: 46px;
    }
}

.header-position .site-header.header-fixed.showed .fullscreen-menu {
    top: 0;
}

.site-header.header-fixed.showed .site-logo .main-logo {
    display: none;
}

.site-header.header-fixed.showed .site-logo .logo-sticky {
    display: block;
}

.site-header.header-fixed.showed .menu-trigger .dot_icon .dot {
    background: #051441;
}

.site-header .all-industries-btn-cont {
    padding-top: 20px;
   border-top: 1px solid #e5e5e5;
   display:block;
   width:100%;
   text-align:center;
}

.site-header.header-fixed.showed:not(.mobile-header) .astriol-main-menu>li {
    padding: 27px 0;
}




.site-header.header-fixed.showed:not(.mobile-header) .astriol-main-menu li> {
    padding: 27px 0;
}

.site-header.header-fixed.showed.header-light-saas .nav-right .gp-btn {
    border-color: #6e58fc;
    color: #6e58fc;
}

.site-header.header-fixed.showed.header-light-saas .nav-right .gp-btn:after {
    background: #6e58fc;
}

.site-header.header-fixed.showed.header-light-saas .nav-right .gp-btn:hover {
    border-color: #6e58fc;
    color: #fff;
}

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

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

#site-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: end;
    padding: 10px 0;
}

@media (min-width: 992px) {
    .close-menu {
        display: none;
    }
}

.canvas-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    display: none;
}

.close-menu {
    height: 50px;
    width: 50px;
    background: rgba(136, 136, 136, 0.1);
    border-radius: 12px;
    text-align: center;
    line-height: 54px;
    color: #051441;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu i:before {
    font-size: 34px;
    color: #696c81;
}

.astriol-main-menu {
    list-style: none;
}

.astriol-main-menu ul {
    list-style: none;
}



#navbar-logo.navbar-brand,
.navbar .navbar-nav .nav-item .nav-link {
    opacity: 1;
    font-size: 14px;
}

.navbar-toggler {
    z-index: 9999;
    position: absolute;
    right: 15px;
}

.navbar-toggler.toggled .navbar-toggler-bar {
    background: #0f0f0c !important;
}


.navbar.white {
    background: white;
}

#navbar-logo.navbar-brand,
.navbar .navbar-nav .nav-item .nav-link {
    color: white;
}

.navbar.white #navbar-logo.navbar-brand,
.navbar.white .navbar-nav .nav-item .nav-link {
    color: #696c81;
}

/* '' */
#navbar-logo.navbar-brand {
    margin-right: 60px;
    font-size: 30px;
    width: 110px;
    margin: 0;
}

#navbar-logo.navbar-brand.footer-logo {
    margin: 0;
    padding: 0;
    color: #696c81;
}

#navbar-logo.navbar-brand img {
    display: flex;
    height: 60px;
}



@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello.eot?68202519');
    src: url('../fonts/fontello.eot?68202519#iefix') format('embedded-opentype'),
        url('../fonts/fontello.woff2?68202519') format('woff2'),
        url('../fonts/fontello.woff?68202519') format('woff'),
        url('../fonts/fontello.ttf?68202519') format('truetype'),
        url('../fonts/fontello.svg?68202519#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}


[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.icon-logo:before {
    content: '\e804';
    font-size: 45px;
    color: #696c81;
    transition: .1s all;
}

.icon-logo:hover:before {
    color: #6e94cb;
}

.icon-logo.logo-footer:before {
    font-size: 30px;
}

.icon-logo.logo-footer:hover:before {
    color: #696c81;
}


.footer .links ul>li {
    display: inline-block;
    padding-right: 20px;
    text-transform: uppercase;
}

.footer ul li {
    font-size: 16px;
}

.footer .links ul a:not(.btn) {
    color: #66615b;
    display: block;
    font-size: 0.9em;
    margin-bottom: 3px;
}

.footer .copyright {
    text-align: center;
    color: #A49E9E;
    font-size: 0.9em;
    margin: 10px 0px 20px;
}




/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/
.mobile-header {
    height: auto;
    /*--------------------------------------------------------------
	### Main Nav
	--------------------------------------------------------------*/
}

.mobile-header .astriol-burger-menu {
    display: block;
    margin-left: auto;
    margin-right: 20px;
}

.mobile-header .astriol-burger-menu.desktop-view {
    display: none;
}

.mobile-header .astriol-burger-menu.mobile-view {
    display: block;
}

.mobile-header .canvas-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top:0;
    padding: 0;
    width: 100%;
    padding-left: 15px;
    padding-right: 10px;
    padding-bottom: 5px;
   
    max-width: 381px;
    background: #fff;
    z-index: 99;
    padding-top: 5px;
}

.mobile-header .site-logo .logo-sticky {
    display: none;
}

.mobile-header .tt-hamburger {
    display: block;
}

.mobile-header.header-analytics:not(.showed) .astriol-burger-menu span {
    background: #fff;
}

.mobile-header.header-light-saas:not(.showed) .astriol-burger-menu span,
.mobile-header.header-agency-two:not(.showed) .astriol-burger-menu span {
    background: #fff;
}

.mobile-header.header-fixed.showed .logo-sticky {
    display: block;
}

.mobile-header .site-logo a {
    padding: 13px 0;
}



.mobile-header .nav-right .flags {
    margin-top:20px;
}

.mobile-header .nav-right .btn-help {
    margin-right: 10px;
}

.mobile-header.header-page .nav-right {
    padding: 0;
    border-top: 0;
}

@media (max-width: 420px) {
    .mobile-header.header-page .gp-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.mobile-header.header-sass .nav-right {
    border: 0;
    padding: 0;
}

.mobile-header .main-nav-container {
    position: fixed;
    top: 0;
    height: 100vh;
    background: #fff;
    max-width: 400px;
    width: 100%;
    text-align: left;
    overflow-y: auto;
    padding-bottom: 80px;
    left: -100px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    padding-top:80px;
    pointer-events:none;
}

.mobile-header .main-nav-container.open {
    pointer-events:all;
    z-index: 999;
}

.header-position .mobile-header .main-nav-container {
    top: 32px;
}

@media (max-width: 780px) {
    .header-position .mobile-header .main-nav-container {
        top: 46px;
    }
}

@media (max-width: 420px) {
    .mobile-header .main-nav-container {
        max-width: 100%;
    }
}

.mobile-header .main-nav-container.open {
    opacity: 1;
    left: 0;
    visibility: visible;
}

.mobile-header .main-nav-container li a {
    font-size: 22px;
    color: #696c81;
    position: relative;
    z-index: 1;
    padding: 15px 25px;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-transform: capitalize;
    font-weight: 700;
    border-left: 2px solid transparent;
}

.mobile-header .main-nav-container li.has-submenu>a {
    position: relative;
}

.mobile-header .main-nav-container li.has-submenu li a {
    font-size: 16px;
}

.mobile-header .main-nav-container li a svg {
    margin-right:0;
}

.mobile-header .main-nav-container .menu-item-depth-0>a.active {
    background: #6e94cb;
    color: #fff;
}

.mobile-header.site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu,
.mobile-header.site-header .astriol-main-menu>li.has-submenu#business-types-sub-menu .sub-menu li {
    width: 100%;
}

.mobile-header .main-nav-container .menu-item-depth-0 li a.active {
    color: #6e94cb;
}

.mobile-header.header-main .astriol-burger-menu {
    margin-left: 0;
}

.mobile-header.header-dark-saas .main-nav-container .menu-item-depth-0>a.active {
    background: #6e94cb;
}

.mobile-header.header-light-saas .main-nav-container .menu-item-depth-0>a.active {
    background: #6e58fc;
}

.mobile-header.header-light-saas .main-nav-container .menu-item-depth-0 li a.active {
    color: #6e58fc;
}

.mobile-header.header-light-saas .gp-btn.color-two.btn-outline {
    color: #6e58fc;
    border-color: #6e58fc;
}

.mobile-header.header-light-saas .gp-btn.color-two.btn-outline:after {
    background: #6e58fc;
}

.mobile-header.header-light-saas .gp-btn.color-two.btn-outline:hover {
    color: #fff;
}

.mobile-header.header-sass .main-nav-container .menu-item-depth-0>a.active {
    background: #ff6344;
    color: #fff;
}

.mobile-header.header-sass .main-nav-container .menu-item-depth-0 li a.active {
    color: #ff6344;
}

.mobile-header.header-analytics .main-nav-container .menu-item-depth-0>a.active {
    background: #f8b137;
}

.mobile-header.header-analytics .main-nav-container .menu-item-depth-0 li a.active {
    color: #f8b137;
}

.mobile-header.header-analytics .gp-btn.color-four.btn-light {
    border-color: #f8b137;
    color: #fff;
}

.mobile-header.header-analytics .gp-btn.color-four.btn-light:after {
    background: #f8b137;
}

.mobile-header.header-analytics .gp-btn.color-four.btn-light:hover {
    color: #f8b137;
    background: transparent;
}

.mobile-header.header-agency-two .main-nav-container .menu-item-depth-0>a.active {
    background: #fb8c5c;
}

.mobile-header.header-agency-two .main-nav-container .menu-item-depth-0 li a.active {
    color: #fb8c5c;
}

.mobile-header.header-agency .main-nav-container .menu-item-depth-0>a.active {
    background: #6e94cb;
}

.mobile-header.header-agency .main-nav-container .menu-item-depth-0 li a.active {
    color: #6e94cb;
}

.mobile-header.header-agency .gp-btn.color-eight.btn-outline.btn-light {
    color: #6e94cb;
    border-color: #6e94cb;
}

.mobile-header.header-agency .gp-btn.color-eight.btn-outline.btn-light:after {
    background: #6e94cb;
}

.mobile-header.header-agency .gp-btn.color-eight.btn-outline.btn-light:hover {
    color: #fff;
}

.mobile-header.header-light-social:not(.showed) .astriol-burger-menu span {
    background: #fff;
}

.mobile-header.header-light-social .main-nav-container .menu-item-depth-0>a.active {
    background: #cd50e2;
}

.mobile-header.header-light-social .main-nav-container .menu-item-depth-0 li a.active {
    color: #cd50e2;
}

.header-position .mobile-header.header-fixed.showed .main-nav-container {
    top: 0;
}

.mobile-header.header-seo .main-nav-container .menu-item-depth-0>a.active {
    background: #ff5e85;
}

.mobile-header.header-seo .main-nav-container .menu-item-depth-0 li a.active {
    color: #ff5e85;
}

.mobile-header .main-nav {
    position: relative;
    z-index: 3333;
    line-height: 1.2;
}

.mobile-header .main-nav .astriol-main-menu {
    padding-left: 0;
}

.mobile-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-left: 0;
    margin-bottom: 0;
    display:none!important;
}

.mobile-header .main-nav .sub-menu.show {
    display:block!important;
}

.mobile-header .main-nav .sub-menu.active .main-item>.menu-link {
    background: #f8f9fa;
}

.mobile-header .main-nav .sub-menu li a {
    border-top: 0;
}

.mobile-header .main-nav .sub-menu li.active a.active .ti-plus {
    color: #6e94cb;
}

.mobile-header .main-nav .nav-item.active-main-item>.menu-link {
    color: #6e94cb;
    background: #f8f9fa;
    border-color: #6e94cb;
}

.mobile-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-bottom: 0;
}

.mobile-header .main-nav {
    cursor: default;
    position: relative;
    z-index: 10;
    text-align: left;
    font-weight: 500;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mobile-header .main-nav a:before,
.mobile-header .main-nav .close-bar {
    display: none;
}

.mobile-header .main-nav .site-logo a {
    font-size: 40px;
}

.mobile-header .main-nav .menu,
.mobile-header .main-nav .menu ul {
    list-style: none;
}

.mobile-header .main-nav .nav-item:before,
.mobile-header .main-nav .nav-item.current-menu-item:before,
.mobile-header .main-nav .nav-item.current-menu-ancestor:before {
    background-color: #6e94cb;
}

.mobile-header .main-nav .nav-item.active-main-item>.menu-link {
    color: #6e94cb;
}

.mobile-header .main-nav .nav-right .cu_btn {
    padding: 13px 26px;
    min-width: auto;
    margin-top: 0;
}

.mobile-header .main-nav.hidden {
    display: none;
}

.is-mobile-menu .mask-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 600;
}

/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/
.banner {
    min-height: 975px;
    position: relative;
}

@media (min-width: 992px) {
    .mw-600 {
        max-width: 600px;
    }
}

/**
Banner Main
*/
.banner-main {
    background-image: -o-linear-gradient(30deg, #fcf5f6 0%, #f8fbfe 100%);
    background-image: linear-gradient(60deg, #fcf5f6 0%, #f8fbfe 100%);
}

@media (max-width: 991px) {
    .banner-main {
        height: 850px;
    }
}

.banner-main .banner-main-content-wrapper {
    padding-top: 250px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {

    .banner-main .banner-main-content-wrapper {
        padding-top: 150px;
    }

    .mobile-header .nav-right .flags {
        flex-direction:column;
        margin-right: 0;
    }

    .mobile-header .nav-right .flags .selected-flag {
        background: black;
        color: #fff;
        padding: 10px 0;
        padding-left: 10px;
        width: 100%;
    }

    .mobile-header .nav-right .flags img {
        margin-right: 15px;
        margin-left: 5px;
    }

    .site-header .nav-right .flags .flag label {
        margin-left:0;
    }

    .site-header .flags-dropdown {
        opacity: 1;
        box-shadow: none;
        padding: 0;
        position: static;
        align-items: baseline;
        background: none;
        transform: none !important;
        border: 0;
        box-shadow: none;
        visibility: visible;
    }

    .site-header .flags-dropdown .scrollable-content {
        max-height:unset;
        width:100%;
    }

    .site-header .flags-dropdown label {
        display:none;
    }
}

.banner-main .banner-content {
    text-align: center;
    margin-bottom: 58px;
}

.banner-main .banner-content .banner-title {
    font-size: 46px;
    font-weight: 700;
    color: #4D5062;
    line-height: 1.3;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .banner-main .banner-content .banner-title {
        font-size: 36px;
    }
}

.banner-main .banner-content .description {
    font-size: 18px;
    color: #646975;
    margin-bottom: 38px;
}

.banner-main .banner-content .banner-btn {
    font-size: 15px;
    padding: 9px 34px;
}

.banner-main .banner-content .banner-btn.btn-light {
    background: transparent;
}

.banner-main .banner-content .banner-btn.btn-light:hover {
    background: #ff6344;
}

@media (max-width: 420px) {
    .banner-main .banner-content .banner-btn.ml-3 {
        margin-left: 0 !important;
    }
}

.banner-main .banner-promo-mockup {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 11;
}

.banner-main .banner-main-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-main-animate {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.banner-main-animate .animate-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-main-animate .animate-items li {
    position: absolute;
}

.banner-main-animate .animate-items li:nth-child(1) {
    right: 50px;
    bottom: -100px;
    z-index: 1;
}

.banner-main-animate .animate-items li:nth-child(2) {
    left: 100px;
    top: 31%;
}

.banner-main-animate .animate-items li:nth-child(3) {
    left: 220px;
    bottom: 85px;
}

.banner-main-animate .animate-items li:nth-child(4) {
    right: 15%;
    top: 55%;
}

.banner-main-animate .animate-items li:nth-child(5) {
    left: 26%;
    top: 55%;
    z-index: 1;
    -webkit-animation: 3s linear 0.1s infinite normal none running wave;
    animation: 3s linear 0.1s infinite normal none running wave;
}

.banner-main-animate .animate-items li:nth-child(6) {
    right: 80px;
    top: 315px;
}

.banner-main-animate .animate-items li:nth-child(7) {
    right: 15%;
    bottom: 195px;
}

.banner-main-animate .animate-items li.bubble1 {
    height: 100px;
    width: 100px;
    background: #fbe5e1;
    border-radius: 50%;
    left: 26%;
    bottom: 15.5%;
}

.banner-main-animate .animate-items li.bubble2 {
    height: 255px;
    width: 255px;
    background: #e5f2e9;
    border-radius: 50%;
    right: 25%;
    bottom: -4%;
    -webkit-animation: wave 2s ease-in-out infinite;
    animation: wave 2s ease-in-out infinite;
}

.banner-main-animate .animate-items li.bubble3 {
    height: 16px;
    width: 16px;
    background: #f65e81;
    border-radius: 50%;
    left: 25.5%;
    bottom: 29%;
    z-index: 1;
    -webkit-animation: animationFramesTwo 30s infinite linear;
    animation: animationFramesTwo 30s infinite linear;
}

.banner-main-animate .animate-items li.bubble4 {
    height: 10px;
    width: 10px;
    background: #f7cb61;
    border-radius: 50%;
    right: 24%;
    bottom: 20%;
    z-index: 1;
    -webkit-animation: 50s linear 0s infinite normal none running animationFramesTwo;
    animation: 50s linear 0s infinite normal none running animationFramesTwo;
}

/* Banner Saas One*/
.banner-saas-main {
    padding: 170px 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .banner-saas-main {
        padding: 100px 0 100px;
        height: auto;
    }
}

@media (max-width: 991px) {
    .banner-saas-main .banner-content-sass {
        text-align: center;
    }

    .mb-140,
    .mb-100 {
        margin-bottom: 50px;
    }

    .performance {
        padding: 0;
    }
}

.banner-saas-main .banner-content-sass .subtitle-top {
    font-size: 14px;
    text-transform: uppercase;
    color: #7b7b93;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.banner-saas-main .banner-content-sass .subtitle-top a {
    color: #6e94cb;
}

.banner-saas-main .banner-content-sass .banner-title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: #696c81;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .banner-saas-main .banner-content-sass .banner-title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 768px) {
    .banner-saas-main .banner-content-sass .banner-title {
        font-size: 32px;
        line-height: 42px;
    }
}

.banner-saas-main .banner-content-sass .description {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 41px;
}

.banner-content-wrapper {
    margin: 0 -700px 0 0;
}

@media (max-width: 1600px) {
    .banner-content-wrapper {
        margin: 0 -400px 0 0;
    }
}

@media (max-width: 1440px) {
    .banner-content-wrapper {
        margin: 0 -100px 0 0;
    }
}

@media (max-width: 1200px) {
    .banner-content-wrapper {
        margin: 0;
    }
}

.saas-animate-image {
    max-width: 900px;
}

.banner-sass-svg-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* Banner Analytic */
.banner-analytics {
    background-image: -o-linear-gradient(50deg, #5e2ced 0%, #a485fd 100%);
    background-image: linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
    overflow: hidden;
}

@media (max-width: 991px) {
    .banner-analytics {
        height: auto;
    }
}

.banner-analytics .container {
    height: 100%;
    min-height: 700px;
}

.banner-analytics .banner-shape-left {
    position: absolute;
    top: 0;
    left: 100px;
}

.banner-analytics .banner-shape-right {
    right: 0;
    top: 0;
    position: absolute;
}

.banner-analytics .banner-content h2 {
    font-size: 40px;
    color: #fff;
    line-height: 52px;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 400;
    margin-bottom: 25px;
}

.banner-analytics .banner-content h2 span {
    font-weight: 800;
}

@media (max-width: 1200px) {
    .banner-analytics .banner-content h2 {
        font-size: 34px;
        line-height: 44px;
    }
}

.banner-analytics .banner-content p {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Open Sans', sans-serif !important;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .banner-analytics .banner-content p {
        max-width: 600px;
        margin: 0 auto 45px;
    }
}

.banner-analytics .banner-content .banner-button .gp-btn {
    margin-right: 30px;
    font-family: 'Open Sans', sans-serif !important;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 6, 26, 0.1);
    box-shadow: 0 8px 16px 0 rgba(0, 6, 26, 0.1);
    font-size: 15px;
    padding: 12px 27px;
}

.banner-analytics .banner-content .banner-button .gp-btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.banner-analytics .banner-content .banner-button .btn-text {
    color: #fff;
    font-weight: 500;
    position: relative;
    font-size: 15px;
    margin-left: 30px;
    font-family: 'Open Sans', sans-serif !important;
}

.banner-analytics .banner-content .banner-button .btn-text:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #bfb2f8;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.banner-analytics .banner-content .banner-button .btn-text:hover {
    color: #f8b137;
}

.banner-analytics .banner-content .banner-button .btn-text:hover:after {
    background: #f8b137;
}

.banner-analytics .banner-feature-thumb img {
    max-width: inherit;
}



.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
}

.slider-nav .slider-next,
.slider-nav .slider-prev {
    height: 100px;
    width: 40px;
    text-align: center;
    line-height: 100px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.slider-nav .slider-next i,
.slider-nav .slider-prev i {
    font-size: 30px;
    color: #fff;
}

.slider-nav .slider-next:hover,
.slider-nav .slider-prev:hover {
    background: #f8b137;
}

.slider-nav .slider-next {
    right: 0;
}

.slider-nav .slider-prev {
    left: 0;
}

.swiper-pagination {
    position: relative;
    margin-top: 55px;
}

.swiper-pagination .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    opacity: 1;
    background: #dce4f2;
    outline: 0;
    margin: 0 6px !important;
}

.swiper-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: #6e94cb;
    border-radius: 50%;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: #6e94cb;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.swiper-pagination.style-circle {
    margin-top: 0;
}

.swiper-pagination.style-circle .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #c6ccda;
    margin: 0 7px;
}

.swiper-pagination.style-circle .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: -7px;
    bottom: -7px;
    right: -7px;
    left: -7px;
    border: 1px solid #6e94cb;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination.style-circle .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #6e94cb;
}

.swiper-pagination.style-circle .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* Banner Agency */
.banner-agency {
    background-image: -o-linear-gradient(40deg, #6e94cb 0%, #35d5fd 100%);
    background-image: linear-gradient(50deg, #6e94cb 0%, #35d5fd 100%);
    background: #6e94cb;

    overflow: hidden;
}

@keyframes waveAnimation {
    0% {
      transform: translateX(0) scaleY(1);
    }
    25% {
      transform: translateX(10px) scaleY(1.2);
    }
    50% {
      transform: translateX(0) scaleY(1);
    }
    75% {
      transform: translateX(-10px) scaleY(0.8);
    }
    100% {
      transform: translateX(0) scaleY(1);
    }
  }

  .wave {
    animation: waveAnimation 5s ease-in-out infinite;
  }
.banner-agency.sosito-banner {
    background-position: 50% 101%, 50% 100%, 0 0;
    background-size: 101%, cover, auto;
    background-repeat: no-repeat, no-repeat, repeat;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #79c5ff, transparent);
    /* background: linear-gradient(to bottom, #69cfe1, transparent); */
    position: relative;
}

@media all and (min-width:480px) {
    .banner-agency.sosito-banner {
        min-height: 661px;
    } 

    .restaurant-page .banner-agency.sosito-banner {
        min-height: 500px;
    }
}


#feature-why,
#features,
#feature-comparison-table {
    background:#f5f8fd;
}
.banner-agency.sosito-banner.smaller {
    min-height: 550px;
}

@media all and (max-width:1300px) {
    .banner-agency.sosito-banner.smaller {
        min-height: 400px;
    }
}

@media all and (max-width:800px) {
    .banner-agency.sosito-banner.smaller {
        min-height: 200px;
    }
}


@media all and (max-width:800px) {
    .banner-agency.sosito-banner.about {
        height: 250px;
    }
}







@media (max-width: 1024px) {
    .banner-agency {

        text-align: center;
        background: #dbe5ff;
        background: #fff;
    }

    .banner-pertical {
        display: none;
    }

    .banner-agency .banner-agency-content .banner-title {
        margin-top: 50px;
    }
}




.banner-agency .banner-shape {
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .banner-agency .mw-570 {
        max-width: 570px;
    }

    .prices.banner-agency.sosito-banner .mw-570 {
        max-width:unset;
    }
}

.banner-agency .banner-agency-content {
    padding: 0;
    z-index: 3;
    position: relative;
    z-index: 333;
}



.about.banner-agency .banner-agency-content,
.careers.banner-agency .banner-agency-content,
.faq.banner-agency .banner-agency-content,
.contact.banner-agency .banner-agency-content,
.support.banner-agency .banner-agency-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: unset;
}





.banner-agency .banner-agency-content .top-subtitle {
    color: #6e94cb;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.banner-agency .banner-agency-content .banner-title {
    font-size: 54px;
    line-height: 60px;
    margin-bottom: 30px;
    font-weight: 800;
}

.prices.banner-agency .banner-agency-content .banner-title {
    text-align:center;
}

@media (max-width: 1280px) {

    .banner-agency .banner-agency-content .banner-title,
    .section-heading .section-title {
        font-size: 50px;
        line-height: 60px;
    }
}

@media (max-width: 1200px) {

    .banner-agency .banner-agency-content .banner-title,
    .section-heading .section-title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 600px) {

    .banner-agency .banner-agency-content .banner-title,
    .section-heading .section-title,
    #restaurant-types .card-content .title,
    .section-heading.style-four .section-title,
    .section-heading .section-title {
        font-size: 35px;
        line-height: 35px;
    }

    .testimonial-two .testi-content,
    .testimonial-two .testmonial-info {
        text-align: center;
    }

    .banner-agency .banner-agency-content p,
    .testimonial-two .testi-content,
    .image-content-wrapper.style-two p,
    .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content p,
    .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content a
    .section-heading p,
    .image-content-wrapper.style-two ul li,
    .image-content-wrapper.style-two ol li {
        font-size: 1.25em !important;
    }
}

.banner-agency .banner-agency-content p,
.about-content-wrapper p {
    line-height: 30px;
    margin: 0 auto 0 0;
    max-width: 540px;
    line-height: normal;
    font-size: 1.55em;
    font-weight: 600;
    color: #797e87;
}

.about-content-wrapper ul {
	line-height: 30px;
    font-size: 1.45em;
    margin-bottom: 0;
    font-weight: 600;
    color: #696c81;
    margin-bottom: 10px;
}

@media (max-width:991px) {

    .banner-agency .banner-agency-content p,
    .about-content-wrapper p {
        margin: 0 auto 30px auto;
    }
}

.banner-agency .banner-agency-wrapper {
    margin: 0 auto;
}

.banner-agency .agency-banner-element-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

.banner-agency .agency-banner-element-wrapper .banner-agency-animate-element {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 4;
}

.banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li {
    position: absolute;
}

.banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(1) {
    top: 185px;
    left: 0;
    max-width: 1500px;
}

@media (max-width: 1600px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(1) {
        max-width: 750px;
    }
}

@media (max-width: 1440px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(1) {
        max-width: 675px;
    }
}

@media (max-width: 1280px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(1) {
        max-width: 610px;
    }
}

@media (max-width: 1200px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(1) {
        max-width: 550px;
        left: -20px;
    }
}

@media (max-width: 1024px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(1) {
        max-width: 500px;
        right: 0;
        top: -178px;
        left: unset;
    }
}

.banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(2) {
    top: 130px;
    right: -150px;
}

@media (max-width: 1600px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(2) {
        right: -80px;
        max-width: 340px;
    }
}

@media (max-width: 1440px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(2) {
        top: 140px;
        right: -125px;
        max-width: 300px;
    }
}

@media (max-width: 1280px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(2) {
        right: -100px;
        max-width: 270px;
    }
}

@media (max-width: 1200px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(2) {
        right: -30px;
        max-width: 250px;
    }
}

@media (max-width: 1024px) {
    .banner-agency .agency-banner-element-wrapper .banner-agency-animate-element li:nth-child(2) {
        top: 150px;
        right: -90px;
        max-width: 220px;
    }
}

.banner-agency .banner-pertical {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-agency .banner-pertical li {
    position: absolute;
}

.banner-agency .banner-pertical li.bubble1 {
    background-image: -o-linear-gradient(40deg, #236efc 1%, #71f5e7 100%);
    background-image: linear-gradient(50deg, #236efc 1%, #71f5e7 100%);
    height: 140px;
    width: 140px;
    border-radius: 50%;
    top: -70px;
    left: 45px;
    opacity: 0.7;
    z-index: 1;
    -webkit-animation: wave 2s 0.1s infinite linear;
    animation: wave 2s 0.1s infinite linear;
}

.banner-agency .banner-pertical li.bubble2 {
    background-image: -o-linear-gradient(40deg, #236efc 1%, #71f5e7 100%);
    background-image: linear-gradient(50deg, #236efc 1%, #71f5e7 100%);
    height: 140px;
    width: 140px;
    border-radius: 50%;
    top: -95px;
    left: 110px;
    opacity: 0.1;
    z-index: 2;
    -webkit-animation: wave 3s 0.1s infinite linear;
    animation: wave 3s 0.1s infinite linear;
}

.banner-agency .banner-pertical li.bubble3 {
    background: #f773e3;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    top: 55%;
    left: 5%;
    -webkit-animation: animetwo 40s infinite linear;
    animation: animetwo 40s infinite linear;
}

.banner-agency .banner-pertical li.bubble4 {
    background: #f8cc61;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    left: 8%;
    bottom: 35%;
    -webkit-animation: animeone 40s infinite linear;
    animation: animeone 40s infinite linear;
}

.banner-agency .banner-pertical li.bubble5 {
    background: #42e255;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    left: 45%;
    bottom: 22%;
    -webkit-animation: animetwo 40s infinite linear;
    animation: animetwo 40s infinite linear;
}

.banner-agency .banner-pertical li.bubble6 {
    background-image: -o-linear-gradient(50deg, #f3b3ce 0%, #8858af 100%);
    background-image: linear-gradient(40deg, #f3b3ce 0%, #8858af 100%);
    height: 160px;
    width: 160px;
    border-radius: 50%;
    bottom: 10px;
    left: 50%;
    -webkit-animation: wave 2s 0.1s infinite linear;
    animation: wave 2s 0.1s infinite linear;
}

@media (max-width: 991px) {
    .banner-agency .banner-pertical li.bubble6 {
        height: 100px;
        width: 100px;
    }
}

.banner-agency .banner-pertical li:nth-child(3) {
    top: 220px;
    left: 275px;
    -webkit-animation: animethree 40s infinite linear;
    animation: animethree 40s infinite linear;
    width: 40px;
    height: 40px;
}

.banner-agency .banner-pertical li:nth-child(4) {
    top: 225px;
    left: 25%;
    -webkit-animation: animeone 40s infinite linear;
    animation: animeone 40s infinite linear;
}

.banner-agency .banner-pertical li:nth-child(5) {
    top: 50%;
    left: 8%;
    -webkit-animation: animeone 40s infinite linear;
    animation: animeone 40s infinite linear;
    width: 40px;
    height: 40px;
}

.banner-agency .banner-pertical li:nth-child(6) {
    bottom: 15%;
    left: 29%;
    -webkit-animation: animetwo 40s infinite linear;
    animation: animetwo 40s infinite linear;
    border: 0;
}

/* Banner Agency Two */
.banner-content-position {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 22;
}

.banner-agency-two {
  
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .banner-agency-two {
        height: 700px;
    }
}

.banner-agency-two:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(74, 16, 175, 0.7);
    background-color: rgba(33, 168, 172, 0.82);
}

.banner-agency-two .banner-content {
    /* max-width: 500px; */
    width: 1000px;
    max-width: 80vw;
    margin: 0 auto;

}

@media (max-width: 991px) {
    .banner-agency-two .banner-content {
        text-align: center;
        margin: 0 auto;
    }

    .banner-agency-two .banner-content .description {
        margin: 0 auto 42px auto;
    }
}

.banner-agency-two .banner-content .subtitle {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.banner-agency-two .banner-content .banner-title {
    color: #fff;
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .banner-agency-two .banner-content .banner-title {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .banner-agency-two .banner-content .banner-title {
        font-size: 34px;
    }
}

.banner-agency-two .banner-content .description {
    color: #fff;
    margin-bottom: 42px;
    font-size: 1.35em;
    max-width: 70%;
    font-weight: 600;
}

.banner-agency-two .banner-content .banner-btn {
    color: #fff;
    border: 2px solid #D5476B;
    background: #D5476B;
    font-weight: 700;
}

.banner-agency-two .banner-content .banner-btn:after {
    background: #E4879E;
}

.banner-agency-two .banner-content .banner-btn:hover {
    border-color: #E4879E;
}


/*--------------------------------------------------------------
  ##  About
  --------------------------------------------------------------*/
.feature-image-content.image-content,
.feature-testimonials.testimonials-two,
.feature-agency,
.feature-what-we-offer,
.feature-why,
.feature-compatible-with-any-device,
.feature-restaurant-types,
.feature-media-app.client-logo-marque,
.feature-blog,
.feature-contact-form,
.feature-comparison-table {
    padding: 50px 0 100px;
}


.feature-why .col-lg-4 {
    min-width: 350px;
    display:flex;
}



@media (max-width: 991px) {

    .feature-image-content.image-content,
    .feature-testimonials.testimonials-two,
    .feature-agency,
    .feature-what-we-offer,
    .feature-why,
    .feature-compatible-with-any-device,
    .feature-restaurant-types,
    .feature-media-app.client-logo-marque,
    .feature-blog {
        padding: 30px;
    }
}

#restaurant-types {
    background: none;
}

#restaurant-types .row .card-col {
    margin-bottom: 30px;
    display: flex;
}



#restaurant-types .card-item {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F2F2F2;
    box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.12);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
    min-height: 570px;
}

#restaurant-types .card-feature-image {
    display:flex;
    position:relative;
}
#restaurant-types .card-feature-image img {
    flex-grow: 1;
}

#restaurant-types .card-content {
    padding: 40px;
    box-sizing: border-box;
    line-height: 30px;
    font-size: 1.15em;
    margin-bottom: 0;
}

#restaurant-types .card-content .title {
    color: #6e94cb;
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

#restaurant-types .card-content .cat {
    line-height: 30px;
    font-size: 1.15em;
    margin-bottom: 0;
    font-weight: 600;
    color: #797e87;
}

#restaurant-types .card-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
    line-height: 30px;
    font-size: 1.00em;
    margin-bottom: 0;
    font-weight: 600;
    color: #797e87;
}

#restaurant-types .card-content ul li {
    margin-bottom: 15px;
}

#restaurant-types .card-content ul li:last-child {
    margin-bottom: 0;
}

#restaurant-types .card-content ul i {
    border-radius: 50px;
    border: 2px solid #6e94cb;
    color: #696c81;
    padding: 1px;
    box-sizing: border-box;
    font-size: 13px;
    margin-right: 10px;
    background: #6e94cb;
    color: #fff;
}

#restaurant-types .card-feature-image a {
    margin-top: 24px;
    font-weight: 700;
    display: inline-block;
    line-height: 20px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    transform: translateX(500px);
    font-size: 14px;
    padding: 8px 16px;
}

#restaurant-types .card-item:hover .card-feature-image a {
    transform: translateX(0);
}

@media all and (max-width:1100px) {
    #restaurant-types .card-feature-image a { 
        transform: translateX(0);
    }
}

#restaurant-types .case-item .case-feature-image:hover img {
    transform: none;
}

.subtitle {
    max-width: 75%;
    margin: 0 auto 40px auto;
    text-align: center;
    padding: 0 10%;
}

.subtitle h2 {
    font-size: 24px;
    font-weight: 800;
}

@media all and (max-width:800px) {
    .subtitle {
        max-width: 100%;
        padding: 0;

    }
}

.about {
    padding-top: 65px;
}

@media (max-width: 991px) {
    .about {
        padding-top: 0;
    }
}

.about-single {
    padding: 0;
}

.about-single .tab-style-one .gp-tabs-nav a {
    height: unset;
    width: unset;
    text-decoration: none;
}

.about-single .tab-style-one .tab_content {
    flex-grow: 1;
    display: block;
    width: 100%;
}

.about-single img {
    border-radius: 12px;
}




#our-partners .logo-item img {
    max-width: 70px;
    border-radius:18.5px;
}

.icon-lists {
    margin: 0;
    padding: 0;
    list-style: none;
}

.icon-lists li {
    font-size: 18px;
    line-height: 35px;
}

.icon-lists li i {
    margin-right: 20px;
    color: #6e94cb;
}

.icon-lists.color-eight li {
    color: #4D5062;
}

.icon-lists.color-eight li i {
    color: #6e94cb !important;
}

.about-feature-image {
    position: relative;
    padding-top: 90px;
    z-index: 222;
}

.about-feature-image .top-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 375px;
    height: 330px;
    background-image: -o-linear-gradient(40deg, #6e94cb 0%, #818afb 100%);
    background-image: linear-gradient(50deg, #6e94cb 0%, #818afb 100%);
    padding: 100px 70px;
    z-index: 2;
}

@media (max-width: 1024px) {
    .about-feature-image .top-content {
        width: 300px;
        height: 260px;
        padding: 65px 70px;
    }
}

.about-feature-image .top-content.bg-gradient-two {
    background-image: -o-linear-gradient(30deg, #ff5e85 0%, #464ac9 100%);
    background-image: linear-gradient(60deg, #ff5e85 0%, #464ac9 100%);
}

.about-feature-image .top-content .ab-top-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 27px;
}

.about-feature-image .top-content .ab-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 40px;
}


@media (max-width: 991px) {
    .about-feature-image .image-wrapper {
        text-align: left;
    }
}

.about-feature-image.style-two {
    padding-top: 0;
    max-width: 570px;
}

@media (max-width: 991px) {
    .about-feature-image.style-two {
        margin: 0 auto;
    }
}

.about-feature-image.style-two .image-wrapper {
    position: relative;
    z-index: 22;
    padding: 40px 0 45px 70px;
}

.about-feature-image.style-two .image-wrapper img {
    -webkit-box-shadow: 0px 40px 60px 0px rgba(14, 1, 37, 0.14);
    box-shadow: 0px 40px 60px 0px rgba(14, 1, 37, 0.14);
}

@media (max-width: 440px) {
    .about-feature-image.style-two .image-wrapper {
        padding: 30px 20px 25px 15px;
    }
}

.about-feature-image.style-two .circle-half {
    background: #8340fd;
    display: inline-block;
    margin: 0 1em 1em 0;
    position: absolute;
    left: 0;
    top: 0;
}

.about-feature-image.style-two .circle-half {
    height: 460px;
    width: 230px;
}

@media (max-width: 576px) {
    .about-feature-image.style-two .circle-half {
        height: 360px;
        width: 190px;
    }
}

@media (max-width: 576px) {
    .about-feature-image.style-two .circle-half {
        height: 270px;
        width: 140px;
    }
}

.about-feature-image.style-two .circle-half {
    border-bottom-left-radius: 460px;
    border-top-left-radius: 460px;
}

.about-feature-image.style-two .dot {
    position: absolute;
    right: -30px;
    bottom: 0;
}

.about-feature-image.style-two .dot img {
    -webkit-animation: wave 2s 0.1s infinite linear;
    animation: wave 2s 0.1s infinite linear;
}

.about-content-wrapper {
    margin-top: 100px;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .about-content-wrapper {
        padding-left: 0;
    }
}

.about-content-wrapper .about-title {
    font-size: 39px;
    line-height: 50px;
    color: #4D5062;
    font-weight: 600;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .about-content-wrapper .about-title br {
        display: none;
    }
}

@media (max-width: 991px) {
    .about-content-wrapper .about-title {
        font-size: 34px;
        line-height: 44px;
    }
}

.about-content-wrapper p {
    margin-bottom: 36px;
}

.about-content-wrapper .icon-lists {
    margin-bottom: 40px;
}

.about-content-wrapper .icon-lists li i {
    color: #6e94cb;
}

.about-content-wrapper .icon-lists.color-theme li i {
    color: #6e94cb;
}

.about-content-wrapper.style-two {
    margin-top: -24px;
}

@media (max-width: 991px) {
    .about-content-wrapper.style-two {
        padding-left: 0;
        text-align: center;
    }
}

.about-content-wrapper.style-two .section-heading {
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .about-content-wrapper.style-two .section-heading {
        text-align: center !important;
    }
}

.about-content-wrapper.style-two .lead-content {
    font-size: 24px;
    color: #706c79;
    line-height: 34px;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .about-content-wrapper.style-two .lead-content {
        font-size: 18px;
        line-height: 28px;
    }
}

.about-content-wrapper.style-two .description {
    margin-bottom: 43px;
}

.about-content-wrapper.style-two .gp-btn {
    padding: 11px 30px;
}

.about-two {
    padding: 90px 0 100px;
}


.people-box {
    border-radius: 6px;
    background-color: white;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(1, 33, 26, 0.06);
    box-shadow: 0px 3px 6px 0px rgba(1, 33, 26, 0.06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 370px;
    padding: 10px 20px;
    margin-bottom: 80px;
}

@media (max-width: 1400px) and (min-width: 992px) {
    .people-box {
        margin-bottom: 40px;
    }
}

.people-box .avatar {
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.people-box p {
    color: #0b1c39;
    margin: 0;
}

.counter-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 550px;
}

/*--------------------------------------------------------------
  ##  Icon Box
  --------------------------------------------------------------*/
/* Feature Analytics */
.feature-analytics {
    padding-top: 110px;
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    .feature-analytics {
        padding-top: 70px;
    }
}

/* Social Feature One */
#social-feature {
    padding: 115px 0 90px;
    background: #fbfbfd;
}

@media (max-width: 991px) {
    #social-feature {
        padding: 75px 0 50px;
    }
}

/* Saas Feature One */
#feature {
    padding: 100px 0 90px;
}

@media (max-width: 991px) {
    #feature {
        padding: 70px 0 0;
    }
}

.benefits-row {
    display:flex;
    align-items:stretch;
}

.benefits-row .benefit-col {
    display:flex;
}

.icon-box {
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* Feature Box Seo */
    /* Feature Analytics */
}



.icon-box .box-content .box-title {
    font-size: 1.35em;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 16px;
}

.icon-box .box-content .box-title:hover {
    color: #6e94cb;
}

.icon-box .box-content .box-title a {
    color: #4D5062;
}

.icon-box .box-content .box-title a:hover {
    color: #6e94cb;
}

.icon-box .box-content p {
    font-size: 1.25em;
    margin: 0;
    font-weight: 600;
    color: #797e87;
}

@media (max-width: 991px) {
    .icon-box .box-content p br {
        display: none;
    }

    .icon-box.style-one {
        text-align: center;
        margin-bottom: 90px;
    }
}

@media (max-width: 575px) {
    .icon-box.style-one {
        max-width: 400px;
        margin: 0 auto 40px;
    }
}

.icon-box.style-one .icon-container {
    font-size: 25px;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    color: #fff;
    background: #6e94cb;
    margin-bottom: 35px;
    -webkit-box-shadow: 0 20px 30px 0 rgba(247, 86, 135, 0.3);
    box-shadow: 0 20px 30px 0 rgba(247, 86, 135, 0.3);
}

@media (max-width: 991px) {
    .icon-box.style-one .icon-container {
        margin: 0 auto 35px;
    }
}

.icon-box.style-one .icon-container.color-one {
    background: #73c216;
    -webkit-box-shadow: 0 20px 30px 0 rgba(115, 194, 22, 0.3);
    box-shadow: 0 20px 30px 0 rgba(115, 194, 22, 0.3);
}

.icon-box.style-one .icon-container.color-two {
    background: #a159f9;
    -webkit-box-shadow: 0 20px 30px 0 rgba(161, 89, 249, 0.3);
    box-shadow: 0 20px 30px 0 rgba(161, 89, 249, 0.3);
}

.icon-box.style-one .icon-container.color-three {
    background: #f75687;
    -webkit-box-shadow: 0 20px 30px 0 rgba(247, 86, 135, 0.3);
    box-shadow: 0 20px 30px 0 rgba(247, 86, 135, 0.3);
}

.icon-box.style-one .icon-container.color-four {
    background: #5489fa;
    -webkit-box-shadow: 0 20px 30px 0 rgba(84, 137, 250, 0.3);
    box-shadow: 0 20px 30px 0 rgba(84, 137, 250, 0.3);
}

.icon-box.style-one .icon-container.color-five {
    background: #f7ab25;
    -webkit-box-shadow: 0 20px 30px 0 rgba(237, 163, 34, 0.3);
    box-shadow: 0 20px 30px 0 rgba(237, 163, 34, 0.3);
}

.icon-box.style-one .icon-container.color-six {
    background: #32b7fc;
    -webkit-box-shadow: 0 20px 30px 0 rgba(50, 183, 252, 0.3);
    box-shadow: 0 20px 30px 0 rgba(50, 183, 252, 0.3);
}

.icon-box.style-one .box-content .box-title {
    color: #4D5062;
}

.icon-box.style-one .box-content .box-title:hover,
.icon-box.style-one .box-content .box-title a:hover {
    color: #ff6344;
}

.icon-box.style-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0;
}

.icon-box.style-two .icon-container {
    width: 70px;
    height: 70px;
    font-size: 26px;
    text-align: center;
    line-height: 70px;
    background-color: rgba(255, 94, 133, 0.102);
    border-radius: 50%;
    margin-right: 30px;
    color: #ff5e85;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.icon-box.style-two .box-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.icon-box.style-two .box-content .box-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 13px;
    line-height: 34px;
}

@media (max-width: 991px) {
    .icon-box.style-two .box-content .box-title br {
        display: none;
    }
}

.icon-box.style-two .box-content .box-title:hover,
.icon-box.style-two .box-content .box-title a:hover {
    color: #ff5e85;
}

.icon-box.style-two .box-content p {
    font-size: 16px;
}

@media (max-width: 991px) {
    .icon-box.style-two .box-content p br {
        display: none;
    }
}

.icon-box.style-two.color--one .icon-container {
    background-color: rgba(83, 99, 253, 0.102);
    color: #5363fd;
}

.icon-box.style-two.color--two .icon-container {
    background-color: rgba(11, 202, 6, 0.102);
    color: #0bca06;
}

.icon-box.style-two:hover .icon-container {
    background: #ff5e85;
    border-color: #ff5e85;
    color: #fff;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(255, 94, 133, 0.2);
    box-shadow: 0px 20px 20px 0px rgba(255, 94, 133, 0.2);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.icon-box.style-two:hover.color--one .icon-container {
    background-color: #5363fd;
    color: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(83, 99, 253, 0.2);
    box-shadow: 0px 20px 30px 0px rgba(83, 99, 253, 0.2);
}

.icon-box.style-two:hover.color--two .icon-container {
    background-color: #0bca06;
    color: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(11, 202, 6, 0.2);
    box-shadow: 0px 20px 30px 0px rgba(11, 202, 6, 0.2);
}

.icon-box.style-three {
    text-align: center;
    padding: 0 50px;

}

.icon-box.style-three .icon-container {
    height: 100px;
    position: relative;
    margin-bottom: 25px;
    padding: 15px 0;
}

.icon-box.style-three .icon-container svg {
    position: absolute;
    margin: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
}

.icon-box.style-three .box-content .box-title a:hover {
    color: #6e94cb;
}

.icon-box.style-three .box-content p {
    margin-bottom: 45px;
}

.icon-box.style-three .gp-btn {
    border-color: #e0e3e8;
    color: #6a7695;
}

.icon-box.style-three .portfolio-image {
    min-height: 269px;
    display: flex;
    align-items: center;
}

.icon-box.style-three .portfolio-image img {
    width: 250px;
    margin: 0 auto;
}

.icon-box.style-three .gp-btn:hover {
    color: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(6, 16, 149, 0.2);
    box-shadow: 0px 20px 30px 0px rgba(6, 16, 149, 0.2);
}

.icon-box.style-four {
    padding: 40px 40px 50px;
    border-top: 5px solid transparent;
    border-radius: 6px;
}

.icon-box.style-four:hover {
    -webkit-box-shadow: 0px 50px 100px 0px rgba(1, 60, 64, 0.1), 0px -5px 0px 0px rgba(0, 192, 205, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(1, 60, 64, 0.1), 0px -5px 0px 0px rgba(0, 192, 205, 0.004);
    border-color: #6e94cb;
    background: #fff;
}

.icon-box.style-four.color-seven:hover {
    border-color: #6e58fc;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(10, 1, 64, 0.1), 0px -5px 0px 0px rgba(110, 88, 252, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(10, 1, 64, 0.1), 0px -5px 0px 0px rgba(110, 88, 252, 0.004);
}

.icon-box.style-four.color-seven .box-content .box-title:hover {
    color: #6e58fc;
}

.icon-box.style-four.color-seven .box-content .box-title a:hover {
    color: #6e58fc;
}



.icon-box.sosito-style {
    border: 1px solid #F2F2F2;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.icon-box.style-five {
    padding: 40px;
    padding-top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
    border-top: 4px solid transparent;

}

.icon-box.style-five.no-hover {
    transition: none;
    box-shadow: 0 10px 70px 0 rgba(0,0,0,.1);
    padding: 40px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
    border: 2px solid #F2F2F2;
}

.icon-box.sosito-style:hover .card-feature-image {
    opacity: .7;
}

.icon-box.style-five.no-hover .fas,
.icon-box .orange-icon svg, 
.icon-box.sosito-style svg {
    background: #ffaa61;
    padding: 10px;
    color: #fff;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: #fff;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #ededed;
    box-shadow: 0 4px 0px rgba(0, 5, 111, .1);
}

.icon-box.style-five.no-hover h3
 {
    margin: 16px 0;
    font-weight:700;
}



.icon-box.sosito-style svg {
    display:none;
}
.icon-box.sosito-style svg {
    background: #ffaa61;
    fill:#fff;
    transition:.2s all;
}

.icon-box.sosito-style:hover svg {
    background: #ffaa61;
}

.icon-box.sosito-style h3 {
    transition:.2s all;
    margin: 16px 0 0 0;
    font-weight:700;
    color: #4D5062;
    padding-bottom:10px;

}


.icon-box.style-five.no-hover .fas:before,
.icon-box.sosito-style svg {
    font-size: 25px;
    color: #ffaa61;
}


@keyframes float {
    0%, 100% {
        transform: translatey(0);
    }
    50% {
        transform: translatey(-1.5rem);
    }
}




.feature-agency {
    position: relative;
}

.feature-agency .bg-shape {
    position: absolute;
    top: -30%;
    left: 0;
    display: none;
}

.feature-agency.feature-padding {
    padding: 190px 0 100px;
}

@media (max-width: 991px) {
    .feature-agency.feature-padding {
        padding: 0 0 50px 0;
    }
}


@media (max-width: 991px) {
 
    .feature-agency .section-heading {
        text-align: center !important;
    }
}



/*--------------------------------------------------------------
  ##  Category Boxes
  --------------------------------------------------------------*/
.category {
    padding-top: 90px;
}

.featured-inner {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .featured-inner {
        padding: 80px 0;
    }
}


/*--------------------------------------------------------------
  ##  Image Content
  --------------------------------------------------------------*/
.image-content {
    padding: 150px 0 105px;
    overflow: hidden;
}

.image-content.overflow-visible {
    overflow: visible;
}

@media (max-width: 991px) {
    .image-content {
        padding: 80px 0;
    }
}

@media (min-width: 1200px) {
    .ml--55 {
        margin-left: -55px;
    }

    .mr--50 {
        margin-right: -50px;
    }
}


.image-content-wrapper {
    padding-top: 40px;
}

.image-content-wrapper .title {
    font-size: 40px;
  
    font-weight: 500;
    margin-bottom: 22px;
}

@media (max-width: 991px) {
    .image-content-wrapper.style-two {
        text-align: center;
    }
}

.image-content-wrapper.style-two .title {
    font-size: 36px;
  
    font-weight: 800;
    margin-bottom: 20px;
}

.image-content-wrapper.style-two p,
.image-content-wrapper.style-two ul li,
.image-content-wrapper.style-two ol li {
    font-size: 1.45em;
    margin-bottom: 0;
    font-weight: 600;
    color: #797e87;
    margin-bottom: 10px;
}

.image-content-wrapper.style-two p .coloured {
    color:#ffaa61;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.image-content-wrapper.style-two ul  {
    padding-left:0;
    padding-top: 10px;
}

.image-content-wrapper.style-two ul svg {
    margin-right:5px;
}
.image-content-wrapper.style-two ul li,
.image-content-wrapper.style-two ol li {
    list-style-type:none;
}

.image-content-wrapper.style-two p:last-child,
.image-content-wrapper.style-two ul li:last-child,
.image-content-wrapper.style-two ol li:last-child {
    margin-bottom: 0;
}

.image-content-wrapper.style-two .lead-text {
    font-weight: 500;
    color: #020e27;
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 26px;
}


.image-content-wrapper p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 34px;
}

.image-content-wrapper .listitem li i {
    color: #6e94cb;
    display: inline-block;
    vertical-align: middle;
}

.image-content-wrapper .listitem.color-theme li i {
    color: #6e94cb;
}

.anime-image-wrapper {
    position: relative;
    max-width: 700px;
}

@media (max-width: 991px) {
    .anime-image-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .anime-image-wrapper {
        max-width: 450px;
    }
}

.anime-image-wrapper .feature-image-wrap {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: visible;
}

.anime-image-wrapper .feature-image-wrap img {
    /* filter: drop-shadow(0px 10px 70px rgba(0, 0, 0, 0.15)); */
    border-radius: 12px;
}

.anime-image-wrapper .anime-dot {
    position: absolute;
    left: 165px;
    bottom: 45px;
    z-index: 1;
    -webkit-animation: wave 3s 0.1s infinite linear;
    animation: wave 3s 0.1s infinite linear;
}

.anime-image-wrapper .circle {
    display: block;
    height: 340px;
    width: 340px;
    background: #fefcf3;
    border-radius: 50%;
    position: absolute;
    bottom: -25px;
    left: -110px;
}

@media (max-width: 991px) {
    .anime-image-wrapper.style-two {
        margin-top: 40px;
    }
}

.anime-image-wrapper.style-two .anime-dot {
    right: 140px;
    left: auto;
    bottom: 50px;
}

.anime-image-wrapper.style-two .circle {
    background: #fcf8fc;
    right: -140px;
    left: auto;
    bottom: 100px;
}

@media (max-width: 1400px) {
    .anime-image-wrapper.style-two .circle {
        right: 0;
    }
}

.anime-image-wrapper.style-four {
    text-align: right;
    margin-left: auto;
}

.anime-image-wrapper.style-four .image-one,
.anime-image-wrapper.style-four .image-two {
    position: absolute;
}

.anime-image-wrapper.style-four .image-one {
    left: 190px;
    top: 210px;
}

@media (max-width: 768px) {
    .anime-image-wrapper.style-four .image-one {
        left: 0;
        top: 150px;
    }
}

.anime-image-wrapper.style-four .image-two {
    bottom: 210px;
    left: 104px;
}

@media (max-width: 767px) {
    .anime-image-wrapper.style-four .image-two {
        left: 0;
        bottom: 150px;
    }
}

@media (max-width: 767) {
    .anime-image-wrapper.style-four .feature-image-wrap>img.zoom {
        width: 310px;
    }
}

.anime-image-wrapper.style-four .circle {
    position: absolute;
    left: auto;
    right: 0;
    bottom: 30px;
    background-image: -o-linear-gradient(30deg, #504cfa 0%, #ff3695 100%);
    background-image: linear-gradient(60deg, #504cfa 0%, #ff3695 100%);
    height: 500px;
    width: 500px;
    opacity: 0.051 !important;
}

@media (max-width: 768px) {
    .anime-image-wrapper.style-four .circle {
        height: 400px;
        width: 400px;
    }
}

@media (max-width: 768px) {
    .anime-image-wrapper.style-four .circle {
        height: 300px;
        width: 300px;
    }
}

.anime-image-wrapper.style-four .anime-dot {
    right: 0;
    top: 100px;
}


.active-tab-1 .preview-slider .astriol-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #8463fd;
}

.active-tab-2 .preview-slider .astriol-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #32b7fc;
}

.active-tab-3 .preview-slider .astriol-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #f7ab25;
}

.active-tab-4 .preview-slider .astriol-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #73c216;
}

.active-tab-5 .preview-slider .astriol-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #5489fa;
}

.previewSlider {
    padding: 30px 0;
}

.previewSlider .swiper-slide.swiper-slide-active .slide-image-wrapper {
    visibility: visible;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1 !important;
}



.gp-tab .gp_tabs_item {
    display: none;
}

.gp-tab .gp_tabs_item:first-child {
    display: block;
}

.gp-tab .gp_tabs_item {
    display: none;
}

.gp-tab .gp_tabs_item:first-child {
    display: block;
}

.tab-swipe {
    position: relative;
}

.tab-swipe .indicator {
    background: #6e58fc;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 2px;
    bottom: 0;
}

.tab-style-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items:center;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
    border-radius: 12px;
    padding: 10px 0;
}

.tab-style-one .gp-tabs-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    
}




.tab-style-one .gp-tabs-nav a {
    color: #696c81;
    font-weight: 800;
    position: relative;
    padding-bottom: 5px;
    cursor: pointer;
    height: 120px;
    width: 150px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 17px;
    line-height: 18px;
    box-shadow: 0 4px 15px rgba(0, 5, 111, .1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    flex-direction:column;
    transition:.2s ease;
}

.tab-style-one .gp-tabs-nav a svg {
    margin-bottom: 15px;
    transition: .2s ease;
    height: 40px;
    width: 40px;
    min-width: 40px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #ededed;
    box-shadow: 0 4px 0px rgba(0, 5, 111, .1);
    fill: #ffaa61;
    min-height: 40px;
}
.tab-style-one .tab_content {

}

.tab-style-one .gp_tabs_item .tab-contents-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
  
        border: 0;
    padding: 25px;
 
}

.tab-style-one .gp_tabs_item .tab-contents-wrap img {
    width: 450px;
    max-width: 100%;
}


@media (max-width: 576px) {
    .tab-style-one .gp-tabs-nav {
        display: block;
        text-align: center;
        width: 100%;
        display: flex;
        overflow: auto;
        flex-wrap:nowrap;
        justify-content: flex-start;
    }

    
    .tab-style-one .gp-tabs-nav a {
        height: unset;
        font-size: 13px;
        padding: 0 5px;
        min-height: 103px;
    }

    .tab-style-one .gp-tabs-nav a svg {
        min-height: 35px;
        height:35px;
        width: 35px;
        min-width: 35px;
    }

    .tab-style-one .gp-tabs-nav li {
        min-width:fit-content;
        margin-right:35px;
    }

    .icon-box.style-three .portfolio-image {
        min-height:unset;
    }
}

.tab-style-one .gp-tabs-nav li {
    display: block;
    padding: 0;
    margin: 10px;
}

@media (max-width: 991px) {
    .tab-style-one .gp_tabs_item .tab-contents-wrap {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tab-style-one .gp_tabs_item .tab-contents-wrap {
        padding: 30px;
    }
}

.tab-style-one .gp_tabs_item .tab-contents-wrap .right-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 30px;
}

@media (max-width: 1200px) {
    .site-header .site-logo {
        width:20%;
    }
    .site-header .slogan {
        font-size:15px;
    }

    .tab-style-one .gp_tabs_item .tab-contents-wrap {
        flex-direction:column;
    }
    .tab-style-one .gp_tabs_item .tab-contents-wrap .left-content {
        margin:0 auto;
    }
    .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content {
        padding-left: 0;
        margin-top: 25px;
        text-align:center;
        justify-content:center;
    }
}

@media (max-width: 991px) {
    .site-header .site-logo {
        width:unset;
    }
    .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content {
        padding-left: 0;
      
    }

    .icon-box.sosito-style .link {
        justify-content: center;
    }
}

.tab-style-one .gp_tabs_item .tab-contents-wrap .right-content .icon-container {
    height: 70px;
    width: 70px;
    background: rgba(94, 44, 237, 0.102);
    text-align: center;
    line-height: 70px;
    color: #6e58fc;
    font-size: 1.35em;
    border-radius: 50%;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content .icon-container {
        margin: 0 auto 25px;
    }
}

.tab-style-one .gp_tabs_item .tab-contents-wrap .right-content h3 {

    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

.tab-style-one .gp_tabs_item .tab-contents-wrap .right-content p,

.jobs-form-container .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content ul li,
.icon-box.style-three .box-content p {
    line-height: 30px;
    font-size: 1.45em;
    margin-bottom: 0;
    font-weight: 600;
    color: #797e87;
    margin-bottom: 10px;
}

#features .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content a,
.link,
.sosito-link {
    color: #6e94cb;
    line-height: 30px;
    font-size: 1.45em;
    font-weight: 600;
}

#features .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content a:hover,
.link:hover,
.sosito-link:hover {
    text-decoration:underline;
}
.icon-box .box-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.icon-box .box-content .card-feature-image {
    transition:.2s all;
    border-radius: 12px;
    overflow: hidden;
}
.icon-box.sosito-style .link {
    color: #6e94cb;
    font-size: 1.25em;
    line-height: 1.25em;
    margin: 0;
    font-weight: 600;
    margin-top:10px;
    display: flex;
    flex-grow: 1;
    align-items: end;
    
}


.icon-box.sosito-style .link i,
.tab_content .link i {
    font-size: 16px;
    background: orange;
    color: #fff;
    height: 15px;
    width: 30px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    padding: 11px;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}

.icon-box.sosito-style:hover .link {
    text-decoration: underline;
}

.icon-box.sosito-style:hover .link i{
    opacity:.8;
}

.tab-style-one .gp_tabs_item .tab-contents-wrap .right-content ul li {
    font-size: 1.25em;
}

.tab-style-one .gp_tabs_item .tab-contents-wrap .right-content p:last-child {
    margin-bottom: 0;
}

.tab-style-one .current a,
.tab-style-one #tabs-container a:hover {
    background: #6e94cb;
    color: #fff;
}

.tab-style-one .current a svg ,
.tab-style-one #tabs-container a:hover svg {
    fill:#ffaa61;
}


.tab-style-one .current a:after {
    width: 100%;
}

.tab-style-two .gp-tabs-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab-style-two .gp-tabs-nav li {
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.tab-style-two .gp-tabs-nav a {
    color: #af96ed;
    font-weight: 300;
    display: block;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.tab-style-two .gp-tabs-nav a:after {
    content: "";
    position: absolute;
    width: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tab-style-two .gp_tabs_item {
    display: none;
    padding: 30px 0;
}

.tab-style-two .gp_tabs_item h4 {
    font-weight: bold;
    color: #f8b137;
    font-size: 1.35em;
}

.tab-style-two .gp_tabs_item img {
    width: 200px;
    float: left;
    margin-right: 30px;
}

.tab-style-two .gp_tabs_item:first-child {
    display: block;
}

.tab-style-two .current a {
    color: #fff;
}

.tab-style-two .current a:after {
    width: 100%;
}

.gp-tabs.style-two .gp-tabs-navigation {
    max-width: 100%;
    text-align: left;
    margin-bottom: 22px;
}

@media (max-width: 991px) {
    .gp-tabs.style-two .gp-tabs-navigation {
        text-align: center;
    }
}

.gp-tabs.style-two .gp-tabs-navigation li {
    position: relative;
    background: transparent;
    padding: 0;
    margin: 0;
    font-weight: 400;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block;
}

.gp-tabs.style-two .gp-tabs-navigation li:not(:last-child) {
    margin-right: 30px;
}

.gp-tabs.style-two .gp-tabs-navigation li:not(:last-child):after {
    content: "";
    position: absolute;
    top: 8px;
    right: -18px;
    height: 11px;
    background: #c7b1fe;
    width: 2px;
}

.gp-tabs.style-two .gp-tabs-navigation li a {
    color: #c7b1fe;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.gp-tabs.style-two .gp-tabs-navigation li.active-tab a {
    color: #fff;
}

.gp-tabs.style-two .gp-tabs-content {
    margin: 0 -220px 0 0;
}

@media (max-width: 1480px) {
    .gp-tabs.style-two .gp-tabs-content {
        margin: 0 -155px 0 0;
    }
}

@media (max-width: 1200px) {
    .gp-tabs.style-two .gp-tabs-content {
        margin: 0 -100px 0 0;
    }
}

@media (max-width: 991px) {
    .gp-tabs.style-two .gp-tabs-content {
        margin: 0;
    }
}

.gp-tabs.style-two .gp-tabs-content .feature-tab-image img {
    max-width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.overview-page {
    padding: 100px 0 120px;
}

.overview-page .tab-style-one .current a {
    color: #6e94cb;
}

.overview-page .tab-style-one .current a:before {
    background: #6e94cb;
}

.overview-page .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content .icon-container {
    background: rgba(26, 191, 104, 0.102);
    color: #6e94cb;
}

/*--------------------------------------------------------------
  ##  Feature Tabs
  --------------------------------------------------------------*/
.feature-image-tabs {
    background: #8240fc;
    padding-top: 110px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .feature-image-tabs {
        padding-top: 70px;
        padding-bottom: 40px;
    }
}

.feature-image-tabs:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 29%;
    height: 100%;
    background: #ff9b6f;
}

@media (max-width: 1600px) {
    .feature-image-tabs:before {
        width: 20%;
    }
}



.footnote {
    position: static;
    vertical-align: super;
}

.footnote a {
    color: #4D5062;
    font-size: 0.7em;
}

.footnote .tip {
    position: relative;
    bottom: 50px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .2s all;
    width: 100%;
    color: #a7a7a7;
    top: -83px;
}

.footnote:hover .tip {
    opacity: 1;
    pointer-events: all;
}

.footnote a:hover {
    color: rgb(0, 123, 255);
}

.contact-form-page sup {
    font-size: 15px;
    font-weight: bold;
    background: #6e94cb;
    display: inline-block;
    height: 20px;
    display: flex;
    align-items: center;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-flex;
    margin-top: 20px;
}


/*--------------------------------------------------------------
  ##  Faqs
  --------------------------------------------------------------*/
.faqs {
    padding-bottom: 150px;
}

.faq-page .sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}

.faq-agency {
    background: #f8f7fa;
}

@media (max-width: 991px) {
    .faq-agency {
        padding: 80px 0 50px;
    }
}

.image-wrapper-faq {
    text-align: center;
}

@media (min-width: 992px) {
    .image-wrapper-faq {
        margin: 0 60px 0 -370px;
    }
}

@media (min-width: 992px) {
    .faq-wrapper .faq.style-two {
        max-width: 475px;
    }
}

.card {
    border: 0;
    background: transparent;
}

.card .card-header {
    background-color: transparent;
    border: 0;
    border-radius: 6px;
}

.card .card-header .btn-link {
    padding: 0;
    color: #4D5062;
    font-size: 1.35em;
    font-weight: 600;
    text-decoration: none;
}

.card .card-body {
    padding: 0;
}

.card .card-body p {
    font-size: 16px;
    margin-bottom: 25px;
}

.faq {
    position: relative;
    z-index: 2;
}

.faq .card {
    border: 0;
    background: transparent;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 20px 60px 0 rgba(1, 33, 26, 0.1);
    box-shadow: 0 20px 60px 0 rgba(1, 33, 26, 0.1);
}

.faq .card .card-header {
    padding: 0;
}

.faq .card .card-header h5 {
    position: relative;
    margin: 0;
}

.faq .card .card-header .btn-link {
    background: #fff;
    font-size: 18px;
    font-weight: 800;
    color: #696c81;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: none;
}

.faq .card .card-header .btn-link:before {
    content: "2";
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    z-index: 9;
    font-family: eleganticons;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 26px;
    color: #6e94cb;
}

.faq .card .card-header .btn-link.collapsed:before {
    content: "3";
    color: #4d446b;
}

.faq .card .card-body {
    padding: 40px;
    background: #fbfbfd;
}

.faq .card .card-body p {
    font-size: 1.25em;
    font-weight: 600;
    color: #797e87;
    margin-bottom: 10px;
    line-height: 30px;
}

.faq .card .card-body li {
    font-size: 1.1em;
    font-weight: 600;
    color: #797e87;
    margin-bottom: 10px;
    line-height: 30px;
}

.faq .card.active .card-header .btn-link {
    color: #6e94cb;
}


.faq.style-three .card {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 10px;
}

.faq.style-three .card-header .btn-link[aria-expanded="true"] {
    color: #6e94cb;
}

.faq.style-three .card .card-body {
    background: transparent;
    padding: 23px 30px 30px;
}

.faq.style-three .card .card-header .btn-link {
    background-color: #f7f6fb;
    font-size: 21px;
}


@media (max-width: 768px) {
  
    .faq.style-three .card:first-child {
        margin-top: 10px;
    }
}


@media (max-width: 991px) {
  

    .faq-section {
        padding-top: 75px;
    }

    .faqs {
        padding: 80px 0;
    }

    .faq-forms {
        padding-top: 78px;
    }

    .faq-wrapper {
        margin-top: 60px;
    }

    .faq-wrapper .section-heading {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
  
    .faq .card .card-header h5:before {
        right: 20px;
    }

    .faq .card .card-header .btn-link {
        padding: 18px 20px;
    }
}

@media (max-width: 576px) {
    .faq .card .card-header .btn-link {
        padding: 18px 30px 18px 20px;
        font-size: 18px;
    }

    .faq .card .card-header h5:before {
        right: 10px;
    }

    .faq .card .card-body {
        padding: 5px 20px 25px;
    }
}

/** Faq **/
.faq-page {
    padding: 120px 0;
}

.gp-faq-tabs {
    display: block;
    background: #f7f6fb;
    padding: 40px 40px 40px 0;
    border-radius: 12px;
}

.gp-faq-tabs li {
    display: block;
    margin-bottom: 6px;
}

.gp-faq-tabs li a {
    font-size: 15px;
    padding: 4px 20px 4px 20px;
    color: #6b717c;
    max-width: 200px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.gp-faq-tabs li a.active {
    background-color: #6e94cb;
    color: #fff;
}


/* Logo Marque */
.client-logo-marque {
    padding: 280px 0 120px;
    padding-top: 50px;
}

.client-logo-marque .section-heading {
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .client-logo-marque {
        padding: 180px 0 80px;
        padding-top: 50px;
    }
}

@media (max-width: 720px) {
    .client-logo-marque {
        padding: 80px 0;
        padding-top: 50px;
    }
}

.marquee-wrap {
    overflow: hidden;
    padding: 25px 0 0;
    position: relative;
}

.marquee-wrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(left, #fff 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, #fff 100%);
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(20%, rgba(255, 255, 255, 0)), color-stop(80%, rgba(255, 255, 255, 0)), to(#fff));
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, #fff 100%);
    pointer-events: none;
}

.logo-marque {
    margin-bottom: 10px;
}

.logo-marque-items {
    margin: 0 -15px;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.logo-marque-items li {
    border-radius: 6px;
    /* background: #fff;
    -webkit-box-shadow: 0px 20px 50px 0px rgba(2, 19, 55, 0.12);
    box-shadow: 0px 20px 50px 0px rgba(2, 19, 55, 0.12); */
    width: 90px;
    height: 90px;
    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: 0 30px;
}

.logo-marque-items li a {
    display: block;
    height: 100%;
}


.nav-control {
    position: absolute;
    top: 50%;
    z-index: 222;
    width: 100%;
}

.nav-control .gp-nav-next,
.nav-control .gp-nav-prev {
    position: absolute;
    height: 35px;
    width: 35px;
    text-align: center;
    color: #677294;
    line-height: 35px;
    border: 2px solid #e0e3ed;
    border-radius: 8px;
    font-size: 1.35em;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: 0;
}

.nav-control .gp-nav-next:hover,
.nav-control .gp-nav-prev:hover {
    background: #6e94cb;
    border-color: #6e94cb;
    color: #fff;
}

.nav-control .gp-nav-prev {
    left: 20px;
}

.nav-control .gp-nav-next {
    right: 20px;
}

.testimonial-saas-wrapper .swiper-container {
    padding: 26px;
}

@media (min-width: 1400px) {
    .testimonial-saas-wrapper .swiper-container {
        margin: 0 -26px;
    }
}

@media (max-width: 667px) {
    .testimonial-saas-wrapper .swiper-container {
        padding: 0;
        margin: 0;
    }
}





/* Testimonial*/
.testimonials {
    padding: 120px 0;
    background: #fbfbfd;
    background-size: cover;
    background-position: center center;
}

@media (max-width: 991px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials #testimonial {
        padding: 0;
    }
}

.testimonia-single {
    padding-top: 30px;
}

@media (max-width: 576px) {
    .testimonia-single .nav-control {
        display: none;
    }
}

.testimonia-single .testimonial {
    text-align: center;
}

.testimonia-single .testimonial .user-avatar {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin: 0 auto 40px;
    overflow: hidden;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    border: 2px solid #6e94cb;
}

.testimonia-single .testimonial .review-title {
    font-size: 18px;
    font-weight: 500;
    color: #1f113a;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.testimonia-single .testimonial .testi-content {
    max-width: 750px;
    margin: 0 auto 43px;
}

@media (max-width: 991px) {
    .testimonia-single .testimonial .testi-content {
        max-width: 550px;
    }
}

@media (max-width: 767px) {
    .testimonia-single .testimonial .testi-content {
        max-width: 450px;
    }
}

.testimonia-single .testimonial .testi-content p {
    font-size: 1.35em;
    line-height: 36px;
    color: #4D5062;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}

@media (max-width: 768px) {
    .testimonia-single .testimonial .testi-content p {
        font-size: 18px;
        line-height: 34px;
    }
}

.testimonia-single .testimonial .info {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}

.testimonia-single .testimonial .info .ratings {
    margin-bottom: 15px;
}



.testimonia-single .testimonial .info .ratings li {
    font-size: 12px;
}

.testimonia-single .testimonial .info .user-name {
    font-size: 1.35em;
    color: #1f113a;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.5;
}

.testimonia-single .testimonial .info .designation {
    color: #6a7695;
    font-size: 14px;
}

.testimonia-single .testimonial.style-two {
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
    box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
    text-align: left;
    padding: 50px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testimonia-single .testimonial.style-two:hover {
    -webkit-box-shadow: 0 20px 60px 0 rgba(1, 33, 26, 0.1);
    box-shadow: 0 20px 60px 0 rgba(1, 33, 26, 0.1);
}

.testimonia-single .testimonial.style-two .user-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonia-single .testimonial.style-two .user-details .ratings {
    position: absolute;
    top: 0;
    right: 0;
}

.testimonia-single .testimonial.style-two .user-details .ratings li {
    font-size: 12px;
}

@media (max-width: 991px) {
    .testimonia-single .testimonial.style-two .user-details .ratings {
        position: static;
    }
}

.testimonia-single .testimonial.style-two .user-details .avatar {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonia-single .testimonial.style-two .user-details .avatar img {
    border-radius: 50%;
}

.testimonia-single .testimonial.style-two .info-content .name {
    font-size: 1.35em;
    font-weight: 600;
    margin: 0;
}

.testimonia-single .testimonial.style-two .info-content .designation {
    font-size: 14px;
    color: #868693;
}

.testimonia-single .testimonial.style-two .content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 45px;
    color: #6d6d82;
}

.testimonia-single .testimonial.style-two .wattermarker {
    position: absolute;
    right: 30px;
    bottom: -16px;
}

.testimonia-single .swiper-slide.swiper-slide-active .testimonial .user-avatar {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.testimonia-single .swiper-slide.swiper-slide-active .testimonial .review-title {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.testimonia-single .swiper-slide.swiper-slide-active .testimonial .testi-content p {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.testimonia-single .swiper-slide.swiper-slide-active .testimonial .info {
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.testimonia-single .swiper-slide.swiper-slide-active .testimonial .info,
.testimonia-single .swiper-slide.swiper-slide-active .testimonial .review-title,
.testimonia-single .swiper-slide.swiper-slide-active .testimonial .testi-content p,
.testimonia-single .swiper-slide.swiper-slide-active .testimonial .user-avatar {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

/* Testimonial Two*/
.testimonials-two {
    padding: 142px 0;
}

@media (max-width: 991px) {
    .testimonials-two {
        padding: 100px 0 60px;
    }
}

.testimonials-two .bg-shape {
    position: absolute;
    right: 0;
    top: 0;
}

.testimonials-two .nav-control {
    width: 120px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: auto;
    bottom: 0;
    position: static;
    margin: 0 auto;
}

.testimonials-two .nav-control .gp-nav-next,
.testimonials-two .nav-control .gp-nav-prev {
    position: static;
}

.testimonials-two .nav-control .gp-nav-next:hover,
.testimonials-two .nav-control .gp-nav-prev:hover {
    background: #6e94cb;
    border-color: #6e94cb;
   
}

@media (max-width: 768px) {
    .testimonials-two .nav-control {
        display: none;
    }
}

#testimonial-two {
    padding: 20px 0 68px 40px;
}

@media (max-width: 768px) {
    #testimonial-two {
        padding: 0;
    }
}

#testimonial-two .astriol-active-slide {
    -webkit-box-shadow: 0 20px 60px 0 rgba(0, 11, 40, 0.06);
    box-shadow: 0 20px 60px 0 rgba(0, 11, 40, 0.06);
    min-height: 350px;
}


.testimonial-two {
    border-radius: 6px;
    background-color: white;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
    box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
    min-height: 350px;
    border: 1px solid #F2F2F2;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
}

@media (max-width: 420px) {
    .testimonial-two {
        padding: 0;
    }
}

.testimonial-two .testmonial-info {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 480px) {
    .testimonial-two .testmonial-info {
        display: block;
    }

    .testimonial-two {
        text-align:center;
    }

    .testimonial-two .testmonial-info .ratings {
        margin-left: 0;
    }

    .testimonial-two .testimonial-logo {
        height:60px;
    }
}

.testimonial-two .testmonial-info .info-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.testimonial-two .testmonial-info .info-wrapper .user-avatar {
    height: 60px;
    width: 60px;
    margin-right: 20px;
}

.testimonial-two .testmonial-info .info-wrapper .user-avatar img {
    border-radius: 50%;
}

.testimonial-two .testmonial-info .info-wrapper .info {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}

.testimonial-two .testmonial-info .info-wrapper .info .user-name {
    font-size: 1.35em;
    margin: 0;
    font-weight: 700;
}

.testimonial-two .testmonial-info .info-wrapper .info span {
    font-size: 18px;
    font-weight: 600;
}

.testimonial-two .testi-content {
    font-weight: 400;
    line-height: 28px;
    position: relative;
    font-size: 1.25em;
    margin-bottom: 0;
    font-weight: 600;
    color: #797e87;
}

.testimonial-two .testimonial-logo {
    height: 100px;
}
.sosito-testimonial.testimonial-two {
    margin:15px;
}
.sosito-testimonial.testimonial-two .testi-content {
    font-size: 1.15em;
}


.testimonial-two .quote {
    position: absolute;
    right: 50px;
    bottom: -12px;
}

.ratings-row cite {
    font-weight:700;
}

.ratings {
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}



.ratings li {
    display: inline-block;
    color: #fbc509;
    font-size: 14px;
}

.section-heading {
    position: relative;
}

.section-heading .nav-control {
    width: 110px;
    top: 20px;
    right: 20px;
}

@media (min-width: 1200px) {
    .slider-right {
        width: calc(50% + 585px);
        overflow: hidden;
        margin-left: auto;
    }

    .slider-right .swiper-container {
        overflow: visible;
    }

    .container-wrap {
        width: 1170px;
    }
}



/*--------------------------------------------------------------
  ##  Pricing
  --------------------------------------------------------------*/
.pricing {
    padding: 120px 0;
    position: relative;
}


@media (max-width: 991px) {
    .pricing {
        padding: 80px 0;
    }
}

.pricing-page,
.pricing-two,
.pricings-two,

.social-pricing-page {
    padding: 115px 0 90px;
}

@media (max-width: 991px) {

    .pricing-page,
    .pricing-two,
    .pricings-two,
    .social-pricing-page {
        padding: 75px 0 50px;
    }
}

.pricing-page .section-heading.style-two .subtitle {
    color: #6e94cb;
}

.pricing-page .section-heading.style-two .section-title:before,
.pricing-page .section-heading.style-two .section-title:after {
    background: #6e94cb;
}

.pricing-table {
    text-align: center;
    padding: 55px 50px;
    border: 1px solid #f1f3f8;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .pricing-table {
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .pricing-table {
        padding: 55px 25px;
    }
}

@media (max-width: 420px) {
    .pricing-table {
        padding: 55px 30px;
    }
}

.pricing-table.dashed-border {
    border: 1px dashed #dbdfeb !important;
    background: transparent;
}

.pricing-table.feature-item {
    border: 3px solid #ff5e85;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0, 11, 40, 0.1);
    box-shadow: 0 30px 60px 0 rgba(0, 11, 40, 0.1);
}

.pricing-table .price-header {
    margin-bottom: 20px;
}

.pricing-table .price-header .price-type {
    color: #343e5d;
    font-size: 40px;
    font-weight: 600;
}

.pricing-table .price-header .price-title {
    font-size: 18px;
    font-weight: 400;
    color: #677294;
    margin: 0;
}

.pricing-table .price-period {
    margin-bottom: 30px;
}

.pricing-table .price-period .period {
    color: #ff5e85;
    text-transform: uppercase;
}

.pricing-table .price-period .price {
    margin-bottom: 0;
    color: #343e5d;
    font-size: 40px;
    font-weight: 600;
}

.pricing-table .price-period .price span {
    font-size: 24px;
}

.pricing-table .price-feature {
    margin-bottom: 45px;
    padding: 0;
    list-style: none;
    -moz-text-align-last: left;
    text-align-last: left;
}

.pricing-table .price-feature.text-center {
    text-align-last: center;
}

.pricing-table .price-feature li {
    color: #677294;
    line-height: 40px;
}

.pricing-table .price-feature li i {
    margin-right: 10px;
    font-size: 14px;
}

.pricing-table .price-feature li i.ei-icon_check {
    color: #6e94cb;
}

.pricing-table .price-feature li i.ei-icon_close {
    color: #f9284f;
}

.pricing-table .gp-btn {
    padding: 9px 44px;
}


.pricing-table.style-two {
    border: 3px solid #eff2f7;
    border-radius: 10px;
    padding-bottom: 90px;
    background: transparent;
    position: relative;
}

.pricing-table.style-two.color-theme .price-header .price {
    color: #6e94cb;
}

.pricing-table.style-two.color-one .price-header .price {
    color: #f3b806;
}

.pricing-table.style-two.color-two .price-header .price {
    color: #2dcd0e;
}

.pricing-table.style-two.feature-item {
    border-color: #6e94cb;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table.style-two.feature-item.color-theme.feature-item {
    border-color: #6e94cb;
}

.pricing-table.style-two.feature-item .gp-btn {
    color: #fff;
    border-color: #6e94cb;
    background: #6e94cb;
}

.pricing-table.style-two.feature-item .gp-btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table.style-two .price-header {
    border-bottom: 1px dashed #cecee9;
    padding-bottom: 33px;
    margin-bottom: 27px;
}

.pricing-table.style-two .price-header .price-period {
    margin-bottom: 15px;
}

.pricing-table.style-two .price-header .price {
    color: #6e94cb;
    font-size: 40px;
}

.pricing-table.style-two .price-header .price-title {
    font-size: 1.35em;
    text-transform: uppercase;
    font-weight: 500;
    color: #4D5062;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.pricing-table.style-two .price-header .period {
    color: #949aa9;
    font-size: 18px;
    display: block;
}

.pricing-table.style-two .price-feature li {
    color: #6a7695;
    font-size: 18px;
    font-weight: 400;
}

.pricing-table.style-two .price-feature li i {
    margin-right: 10px;
    font-size: 16px;
}

.pricing-table.style-two .price-feature li i.ei-icon_check {
    color: #4ec619;
}

.pricing-table.style-two .price-feature li i.ei-icon_close {
    color: #f92662;
}

.pricing-table.style-two .gp-btn {
    width: 160px;
    display: block;
    margin: 0 auto;
    padding: 10px 15px;
    border-color: #e0e3e8;
    color: #6a7695;
}

.pricing-table.style-two .trial {
    width: 100%;
    left: 0;
    text-align: center;
    bottom: 40px;
    position: absolute;
    color: #949aa9;
}


/*--------------------------------------------------------------
  ##  Careers
  --------------------------------------------------------------*/
.jobs-form-container {
    margin-top: 150px;
    padding-left: 69px;
}

.jobs-form-container .label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 25px;
}

.jobs-form-container select {
    width: 350px;
    max-width: 80%;
    display: block;
}

.jobs-form-container select:focus {
    box-shadow: 0 0 0 0.2rem rgba(110, 132, 203, 0.7);
}

.jobs-form-container .title {
    margin-top: 50px;
    font-weight: 700;
    margin-right: 100px;
}

.jobs-form-container #job-list {
    margin-top: 16px;
}

.jobs-form-container h4,
.partners h4 {
    font-weight: 700;
}

.jobs-form-container .tab-style-one .gp_tabs_item .tab-contents-wrap {
    border: 0;
    box-shadow: none;
    padding-top: 10px;
    padding-left: 0;
}

.jobs-form-container .tab-style-one .gp_tabs_item .tab-contents-wrap strong {
    font-weight: 700;
}

.jobs-form-container #sortSelect,
.jobs-form-container .label {
    display: none;
}

@media all and (max-width: 576px) {
    .jobs-form-container {
        padding-left: 0;
    }

    .jobs-form-container .title {
        margin: 0 auto;
    }

    .jobs-form-container .tab-style-one .gp_tabs_item .tab-contents-wrap .right-content p {
        text-align: center;
    }
}

.blog-content {
    padding: 30px;
    background: #fff;
}

.blog-content .post-meta {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-content .post-meta li {
    display: inline-block;
    margin-right: 10px;
}

.blog-content .post-meta li i {
    margin-right: 5px;
    color: #f8b137;
}

.blog-content .post-meta li a {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.blog-content .post-meta li a:hover {
    color: #f8b137;
}

.blog-content .entry-title {
    font-size: 1.35em;
    font-weight: 600;
    margin: 15px 0;
}

.blog-content .entry-title a {
    color: #222;
}

.blog-content .entry-title a:hover {
    color: #f8b137;
}

.blog-content .read-more-ntn {
    font-size: 12px;
    font-weight: 600;
    color: #f8b137;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-content .read-more-ntn i {
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-content .read-more-ntn:hover {
    color: #f39d09;
}

.blog-content .read-more-ntn:hover i {
    margin-left: 8px;
}

.blog-slider {
    padding: 110px 0 115px;
}

@media (max-width: 991px) {
    .blog-slider {
        padding: 70px 0 75px;
    }
}

.blog-slider-post {
    -webkit-box-shadow: 0 3px 5px 0 rgba(20, 3, 70, 0.06);
    box-shadow: 0 3px 5px 0 rgba(20, 3, 70, 0.06);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}

.blog-slider-post .blog-content {
    padding: 25px 30px 43px;
    min-height: 319px;
}

.blog-slider-post .blog-content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-slider-post .blog-content h3 a {
    color: #696c81;
}

.blog-slider-post .blog-content h3 a:hover {
    color: #6e94cb;
}

.blog-slider-post .blog-content p {
    margin: 0;
}

.blog-slider-post .post-meta {
    margin-bottom: 10px;
}

.blog-slider-post .post-meta li {
    color: #696c81;
    font-size: 14px;
    font-weight: 400;
}

.blog-slider-post .post-meta li a {
    color: #696c81;
    text-transform: capitalize;
    font-weight: 400;
}

.blog-slider-post .post-meta li i {
    color: #696c81;
    margin-right: 10px;
}

.blog-slider-post:hover {
    -webkit-box-shadow: 0 24px 30px 0 rgba(20, 3, 70, 0.1);
    box-shadow: 0 24px 30px 0 rgba(20, 3, 70, 0.1);
}


.blog-wrapper {
    position: relative;
}

.blog-wrapper .swiper-container {
    padding: 0 20px;
}

.blog-wrapper .swiper-pagination {
    margin-top: 35px;
}


#blog-slider .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#blog-slider .swiper-pagination .swiper-pagination-bullet:before {
    background: #cdd4e8;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#blog-slider .swiper-pagination .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    border: 2px solid transparent;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#blog-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}

#blog-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: #fff;
    z-index: 2;
    display: none;
}

#blog-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    border-color: #6e94cb;
    background: #6e94cb;
}

.entry-content .entry-meta,
.entry-content .meta-cat a {
    font-size: 12px;
    font-weight: 500;
    background: rgba(50, 186, 19, 0.102);
    color: #32ba13;
    border-radius: 3px;
    text-transform: uppercase;
    padding: 6px 9px;
    line-height: 1.1;
    display: inline-block;
}

.entry-content .entry-meta:hover,
.entry-content .meta-cat a:hover {
    background: #32ba13;
    color: #fff !important;
}

.entry-content .entry-meta.color-two,
.entry-content .meta-cat a.color-two {
    background-color: rgba(120, 74, 252, 0.102);
    color: #784afc;
}

.entry-content .entry-meta.color-two:hover,
.entry-content .meta-cat a.color-two:hover {
    background: #784afc;
}

.entry-content .entry-meta.color-three,
.entry-content .meta-cat a.color-three {
    background-color: rgba(26, 191, 104, 0.102);
    color: #6e94cb;
}

.entry-content .entry-meta.color-three:hover,
.entry-content .meta-cat a.color-three:hover {
    background: #6e94cb;
}

.entry-content .entry-meta.color-four,
.entry-content .meta-cat a.color-four {
    background-color: rgba(39, 120, 254, 0.102);
    color: #2778fe;
}

.entry-content .entry-meta.color-four:hover,
.entry-content .meta-cat a.color-four:hover {
    background: #2778fe;
}

.entry-content .entry-meta.color-five,
.entry-content .meta-cat a.color-five {
    background-color: rgba(238, 180, 21, 0.102);
    color: #eeb415;
}

.entry-content .entry-meta.color-five:hover,
.entry-content .meta-cat a.color-five:hover {
    background: #eeb415;
}

.entry-content .entry-meta.color-six,
.entry-content .meta-cat a.color-six {
    background-color: rgba(44, 44, 81, 0.102);
    color: #656577;
}

.entry-content .entry-meta.color-six:hover,
.entry-content .meta-cat a.color-six:hover {
    background: #656577;
}

.entry-content .entry-title {
    font-size: 1.35em;
    line-height: 1.5;
    font-weight: 500;
    margin: 15px 0 22px;
}

.entry-content .entry-title a {
    color: #696c81;
}

.entry-content .entry-title a:hover {
    color: #6e94cb;
}

.entry-content .blog-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.entry-content .blog-footer .post-author {
    display: inline-block;
    font-size: 13px;
    color: #92929f;
    font-weight: 500;
}

.entry-content .blog-footer .post-author img {
    border-radius: 50%;
    margin-right: 10px;
}

.entry-content .blog-footer .post-author:hover {
    color: #6e94cb;
}

.entry-content .blog-footer .date-meta {
    font-size: 13px;
    font-weight: 500;
    color: #92929f;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
  ##  Call To Action
  --------------------------------------------------------------*/
#call-to-action {
    padding: 123px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.call-to-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.call-to-action>div {
    width: 50%;
}

.call-to-action .action-content h2 {
    color: #fff;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 20px;
}

.call-to-action .action-content p {
    color: #fff;
}

.call-to-action .action-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.call-to-action .action-button .gp-btn {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 6, 26, 0.1);
    box-shadow: 0px 8px 16px 0px rgba(0, 6, 26, 0.1);
    padding: 12px 35px;
}

.call-to-action .action-button .gp-btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.call-to-action .action-button .btn-two {
    margin-left: 20px;
}

.call-to-action .action-button .btn-two:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

#call-to-action-two {
    background: #4d5afe;
    padding: 147px 0 138px;
}

#call-to-action-two.sosito {
    background: radial-gradient(circle farthest-corner at 100% 50%, #6e94cb, #9ebde9 129%);
    padding: 140px 0;
    margin-bottom: 50px;
    overflow:hidden;
    margin: 0 auto 50px auto;
    border-radius: 15px;
    padding: 30px !important;
}

@media all and (max-width:600px) {
    #call-to-action-two.sosito {
        border-radius: 0;
    }
}

#call-to-action-two.sosito .action-button {
    padding-left: 15px;
}

@media (max-width: 991px) {
    #call-to-action-two {
        padding: 120px 0;
    }
}

.call-to-action-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    .call-to-action-two {
        display: block;
    }
}

.call-to-action-two .action-content .action-title {
    font-size: 27px;
    line-height: 44px;
    font-weight: 700;
    color: #fff;
    max-width:850px;
    text-align:center;
    margin: 0 auto 20px auto;
}


@media (max-width: 768px) {
    .call-to-action-two .action-content .action-title {
        margin-bottom: 30px;
    }
}

.call-to-action-two .gp-btn {
    padding: 15px 32px;
}

#call-to-action-three .call-to-action-content {
    background: #fff;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(1, 33, 26, 0.08), 0px -20px 50px 0px rgba(1, 33, 26, 0.04);
    box-shadow: 0px 50px 100px 0px rgba(1, 33, 26, 0.08), 0px -20px 50px 0px rgba(1, 33, 26, 0.04);
    border-radius: 10px;
    padding: 67px 70px 80px;
    text-align: center;
    margin-bottom: -180px;
}

#call-to-action-three .call-to-action-content.custom {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    #call-to-action-three .call-to-action-content {
        padding: 67px 40px 80px;
    }
}

@media (max-width: 576px) {
    #call-to-action-three .call-to-action-content .action-button .gp-btn {
        margin-bottom: 20px;
    }
}

#call-to-action-three .call-to-action-content .action-button .btn-outline {
    margin-left: 20px;
}

@media (max-width: 576px) {
    #call-to-action-three .call-to-action-content .action-button .btn-outline {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    #call-to-action-three .call-to-action-content .action-button .btn-outline {
        margin-left: 0;
    }
}

#call-to-action-three .action-content-three h2 {
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 46px;
}

@media (max-width: 1024px) {
    #call-to-action-three .action-content-three h2 br {
        display: none;
    }
}

@media (max-width: 768px) {
    #call-to-action-three .action-content-three h2 {
        font-size: 34px;
        line-height: 44px;
    }
}

@media (max-width: 576px) {
    #call-to-action-three .action-content-three h2 {
        font-size: 28px;
        line-height: 38px;
    }
}

.background-shapewrap img {
    position: absolute;
}

.background-shapewrap .shape-one {
    top: -50%;
    left: 0;
}

.background-shapewrap .shape-two {
    right: 0;
    bottom: -70%;
}

.background-shapewrap .shape-three {
    right: 0;
    bottom: 0;
}

.action-vector {
    position: absolute;
    top: 72px;
    left: -58px;
}

.background-shapewrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.background-shapewrap img {
    position: absolute;
}

#call-to-action-agency-two {
    padding: 146px 0;
    position: relative;
}

@media (max-width: 991px) {
    #call-to-action-agency-two {
        padding: 100px 0;
    }
}

#call-to-action-agency-two:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(91, 44, 173, 0.7);
}

#call-to-action-agency-two .action-content .action-title {
    color: #fff;
    font-size: 44px;
    line-height: 54px;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 991px) {
    #call-to-action-agency-two .action-content .action-title {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    #call-to-action-agency-two .action-content .action-title {
        text-align: center;
    }
}

#call-to-action-agency-two .action-info .gp-btn:hover {
    border-color: #fff;
    color: #fff;
}

@media (min-width: 768px) {
    #call-to-action-agency-two .action-info {
        text-align: right;
    }
}

@media (max-width: 767px) {
    #call-to-action-agency-two .action-info {
        margin-top: 30px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .call-to-action {
        display: block;
        text-align: center;
    }

    .call-to-action>div {
        width: 100%;
    }

    .call-to-action .action-button {
        margin-top: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
  ##  Contact
  --------------------------------------------------------------*/
.contact {
    padding: 120px 0 110px;
    background: #fcfbff;
}

@media (max-width: 991px) {
    .contact {
        padding: 80px 0 60px;
    }
}




.comparison-table {
    width:100%;
    max-width: 1400px;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
    border: 1px solid #F2F2F2;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
    background: linear-gradient(179deg, #ffffff, #eff3fc);
    margin:0 auto;
    background:#fff;
}

.comparison-table th, .comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: #424360;
    color: white;
    line-height: 46px;
    font-weight: 800;
    font-size: 1.25em;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td {
    line-height: 1.6;
    font-weight: 600;
    color: #797e87;
    font-size: 1.10em;
}

.comparison-table .highlight {
    background-color: #fff4e7;
    font-weight:600;
  

}

.comparison-table td svg {
    padding: 2px;
    box-sizing: border-box;
    border-radius: 8px;
    margin-right: 10px;
    margin-left:15px;
}
.comparison-table .highlight svg {
    background: #3dda84;

 
}

.comparison-table .traditional svg {
    background: #8d8d8d;
    fill: #fff;
}


.comparison-table .row {
    display:flex;
    align-items:center;
}



@media (max-width: 768px) {
    .comparison-table th, .comparison-table td {
        padding: 10px 15px;
        font-size: 12px;
      
        text-align: center;
        line-height: 15px;
    }

    .comparison-table .row {
        flex-direction:column;
    }

    .comparison-table td svg {
        margin: 0 auto 5px auto;
        height: 18px;
        width: 18px;
        border-radius: 6px;
    }
}

/* Contact Form Main */
.contact-form-page {
    padding: 120px 0;
}

.contact-form-page .address-box {
    height: 100%;
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .contact-form-page {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
}

.gp-input {
    background: #fafafc;
    border: 1px solid #f1f1f6;
    height: 60px;
    padding: 15px 30px;
}

.gp-textarea {
    height: 200px;
}

.mt-140 {
    margin-top: 140px;
}

@media (max-width: 991px) {
    .mt-140 {
        margin-top: 60px;
    }
}

.address-box {
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.address-box.style-border {
    border: 1px solid #F2F2F2;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(1, 33, 26, 0.06);
}

.address-box.style-border:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 12px solid #6e94cb;
    bottom: -12px;
    left: 20px;
}

.address-box.style-border:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #ffffff;
    bottom: -10px;
    left: 22px;
    z-index: 1;
}

#contact-container .address-box.style-border:after,
#contact-container .address-box.style-border:before {
    content: none;
}

.address-box .address-title {
    color: #696c81;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 17px;
}

.address-box p {
    font-weight: 600;
    color: #797986;
    font-size: 1.35em;
}

.gmap3-area {
    height: 500px;
}




#documents .doc-img-cont img {
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.10));
    border-radius: 12px;
}

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

    
#footer-social .footer-widgets .row {
    justify-content: center;
    text-align: center;
}
#footer-social p {
    text-align: center;
    margin: 0 auto 20px auto;
}

.download-app-icons {
    justify-content:center;
   
    align-items: center;
}


    .feature-why .col-lg-4,
    #how-it-works .how-it-works-col,
    #contact-container .address-col {
        max-width: 100%;
        flex: 0 0 100%;
    }
    #documents .image-col {
        order: 2;
    }
    #documents, 
    #documents .section-title,
    #documents .about-feature-image .image-wrapper,
    #contact-container .address-box,
    #call-to-action-two.sosito {
        text-align: center;
    }

    #documents .about-feature-image {
        padding-top: 25px;
    }
}
#documents .links {
    margin-top:15px;  
    font-weight: 600;
    font-size: 20px;
    color: #797e87;
}
.sosito-link {
    font-weight: 600;
    font-size: 19px;
}

.sosito-link.bigger {
    font-size: 24px;
}
#contact-container a,
#footer-agency a,
.gp_tabs_item a,
.sosito-link {
    color: #6e94cb;
}

#contact-container a:hover,
#footer-agency a:hover,
.gp_tabs_item a:hover,
.sosito-link:hover {
    color: #6e94cb;
    opacity: .7;
}

#footer-agency .footer-inner .footer-widgets {
    padding: 120px 0 37px;
}

#footer-agency .footer-widgets .footer-logo {
    margin-bottom: 40px;
}

#footer-agency .footer-widgets .footer-menu li a {
    font-size: 16px;
    color: #6a7695;
}

#footer-agency .footer-widgets .footer-menu li a:after {
    background: #6e94cb;
}

#footer-agency .footer-widgets .footer-menu li a:hover {
    color: #6e94cb;
}

#footer-agency .widget-title {
    font-size: 1.35em;
    color: #4D5062;
    font-weight: 500;
    margin-bottom: 25px;
}

#footer-agency .contact-widget p {
    color: #6a7695;
    margin-bottom: 35px;
}

#footer-agency .contact-widget .phone {
    color: #6e94cb;
    font-size: 1.35em;
    font-weight: 500;
    display: block;
}

#footer-agency .site-info {
    padding: 22px 0;
    border-color: #ededfb;
}

#footer-agency .site-info .copyright-text {
    margin: 0;
    color: #999fae;
}

#footer-agency .site-info .copyright-text a {
    color: #6e94cb;
}



/* Footer Widget */
.footer-widgets {
    padding-bottom: 100px;
    position: relative;
    z-index: 3;
}

.footer-widgets .widget {
    margin-bottom: 45px;
}

.footer-widgets .widget-title {
    font-size: 24px;
    color: #222931;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-widgets .footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widgets .footer-menu li {
    line-height: 36px;
}

.footer-widgets .footer-menu li a {
    color: #707a8d;
    font-size: 15px;
    position: relative;
    display: inline-block;
    font-weight: 400;
}

.footer-widgets .footer-menu li a:after {
    position: absolute;
    content: "";
    display: block;
    bottom: 8px;
    height: 2px;
    left: 0;
    width: 100%;
    background: #6e94cb;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    transition: -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    -o-transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.footer-widgets .footer-menu li a:hover {
    color: #6e94cb;
}

.footer-widgets .footer-menu li a:hover:after {
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.footer-widgets .footer-logo {
    margin-bottom: 35px;
}

.footer-widgets .footer-mail {
    color: #6e94cb;
    font-size: 18px;
    margin-bottom: 23px;
}

.footer-widgets .footer-mail i {
    margin-right: 10px;
}

.footer-widgets .copyright-text {
    margin-bottom: 28px;
    max-width: 300px;
    color: #677294;
}


.foot-contact p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 34px;
}

.foot-contact p span {
    color: #222931;
    font-weight: 500;
}

.foot-contact p.con-email {
    color: #6e94cb;
}

.site-info {
    border-top: 1px solid #d6deeb;
}

.site-info .copyright {
    margin: 0;
    font-size: 14px;
    color: #acb3c0;
    font-weight: 400;
    padding: 22px 0;
}

.site-info .copyright a {
    color: #6e94cb;
}

.site-info .copyright a:hover {
    color: #009674;
}

.footer-bottom-menu {
    margin: 0;
    padding: 22px 0;
    list-style: none;
}

.footer-bottom-menu li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.footer-bottom-menu li:after {
    position: absolute;
    content: "|";
    font-size: 12px;
    top: 0;
    right: 5px;
    color: #acb3c0;
}

.footer-bottom-menu li:last-child {
    margin-right: 0;
}

.footer-bottom-menu li:last-child:after {
    display: none;
}

.footer-bottom-menu li a {
    font-size: 14px;
    color: #acb3c0;
    font-weight: 400;
    display: inline-block;
}

.footer-bottom-menu li a:hover {
    color: #6e94cb;
}

/* Footer Analytics */
.gp-site-footer .footer-social {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gp-site-footer .footer-social li {
    margin-right: 5px;
    display: inline-block;
    margin-right: 5px;
}

.gp-site-footer .footer-social li a {
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    background: rgba(255, 255, 255, 0.059);
    color: #afb4c0;
    border-radius: 12px;
    display: inline-block;
    font-size: 14px;
    border: 2px solid transparent;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gp-site-footer .footer-social li a:hover {
    color: #6e94cb;
    border-color: #6e94cb;
    background: transparent;
}


.gp-site-footer {
    position: relative;
}

.gp-site-footer .footer-contact-info {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gp-site-footer .footer-contact-info li {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.gp-site-footer .footer-contact-info li i {
    margin-right: 20px;
    color: #6e94cb;
}

.gp-site-footer .footer-contact-info li p {
    font-size: 15px;
    color: #69697b;
}

.gp-site-footer .footer-contact-info li.phone p {
    font-size: 1.35em;
    color: #6e94cb;
}

/* Footer Social */
#footer-social {
    background: #f7f7f7;
    padding-top: 100px;
}

#footer-social .footer-logo {
    margin-bottom: 30px;
}

#footer-social p {
    margin-bottom: 20px;
}

#footer-social .footer-social li a {
    background-color: #fff;
    color: #677294;
}

#footer-social .footer-social li a:hover {
    color: #6e94cb;
    background-color: #fff;
}

#footer-social .footer-widgets {
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    #footer-social .footer-widgets {
        padding-bottom: 30px;
    }
}

#footer-social .footer-widgets .widget-title {
    font-size: 1.35em;
    color: #6e94cb;
    font-weight: 800;
}

#footer-social .footer-widgets .copyright-text a {
    color: #cd50e2;
}

#footer-social .footer-widgets .footer-menu li a {
    color: #677294;
    font-size: 15px;
    font-weight: 600;
}

#footer-social .footer-widgets .footer-menu li a:after {
    background: #6e94cb;
}
#footer-social .footer-widgets .footer-menu.download-app-icons li a {
    display: flex;
    align-items: center;
}

#footer-social .footer-widgets .footer-menu.download-app-icons li a svg {
    margin-right:5px;
}
#footer-social .footer-widgets .footer-menu.download-app-icons li a:after {
    content:none;
}

#footer-social .footer-widgets .footer-menu li a:hover {
    color: #6e94cb;
}

#footer-social .footer-widgets .footer-menu.download-app-icons li a:hover {
    opacity:.8;
}

#footer-social .footer-widgets .footer-menu li.gdpr {
    margin-top:10px;
}


body.terms {
    padding-top: 200px;
}


.hero-image .play-button-container,
.hero-image .play-button-container-how-it-works {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    margin: auto;
    background: #fff;
    width: fit-content;
    height: fit-content;
    color: #696c81;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow: 0 20px 30px 0 rgba(6, 16, 149, 0.2);
    font-weight: 600;
}

.hero-image .play-button-container:hover,
.hero-image .play-button-container-how-it-works:hover {
    background: #dbdbdb;
}


.hero-image .play-button-container.hide,
.hero-image .play-button-container-how-it-works.hide {
    display: none;
}

.hero-image .play-button-container svg,
.hero-image .play-button-container-how-it-works svg {
    margin-right: 5px;
    background: #FF0000;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 2px 6px;
}

.hero-image.video .iframe-container,
.hero-image.video .iframe-container-how-it-works {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
}

.hero-image.video {
    z-index: 10;
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18.5px;
    overflow: hidden;
}

.hero-image.video .iframe-container.show,
.hero-image.video .iframe-container-how-it-works.show {
    display: block;
}


.hero-image.video iframe {
    width: 100%;
    height: 100%;

}

.next-button {
    width: 310px;
    height: 45px;
    position: absolute;
    cursor: pointer;
    margin: 0 auto;
    left: -7px;
    right: 0;
    top: 80px;
    z-index: 9999
}






.all-categories-container {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.all-categories-container .category-label {
    font-weight: 700;
    margin-right: 5px;
    display: block;
    color: #696c80;
}

.all-categories-container select {
    background:#000;
    border-radius:50px;
    color:#fff;
    margin-bottom: 0;
    box-shadow:none;
    width:unset;
}

.all-categories-container select:focus{
    background:#000;
    color:#fff;
    box-shadow:none;
}

.all-categories-container option {
    background:#000;
    color:#fff;
}
.all-campaigns-container,
.all-categories-container {
    margin-bottom: 0; 
    position:relative;
}



.all-campaigns-container h2,
.all-categories-container h2 {
    padding-left: 30px;
    font-size: 35px;
}
.scroll-buttons {
    display: flex;
    justify-content: center;
}

.all-campaigns-container {
    max-width:fit-content;
}
.all-campaigns-container button {
    border: 0;
    border-radius: 50px;
    height: 40px;
    width: 40px;
    background: #565454;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 10px;
    cursor:pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity:0;
}

.all-campaigns-container:hover button  {
    opacity:1;
}

.all-campaigns-container button:first-child {
    left: -70px;
}

.all-campaigns-container button:last-child {
    right: -70px;
}

.all-campaigns-container  button:hover {
    background:#1f1e1e;
}

.all-campaigns-container button svg,
.all-campaigns-container button path {
    fill:#fff;
    height:20px;
}


.link-campaigns-container {
    margin-bottom: 15px;
    border-top-left-radius: 18.5px;
    border-top-right-radius: 18.5px;
    position: relative;
    top: -100px
}

.campaigns-container .trigger-row {
    cursor: pointer
}

.campaigns-container .category-title {
    padding-top: 10px;
    padding-bottom: 20px
}

.campaigns-container .campaigns-content {
    max-height: 500px;
    opacity: 1;
    -webkit-transition: max-height 500ms ease-in-out, opacity 900ms ease-in-out;
    transition: max-height 500ms ease-in-out, opacity 900ms ease-in-out;
    display: block
}

.campaigns-container .campaigns-content.closed {
    position: relative;
    opacity: 0;
    max-height: 0;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    cursor: text;
    padding-bottom: 0;
    pointer-events: none
}

.all-campaigns-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-items: center;
    white-space: nowrap;
    list-style-type: none;
    margin-top: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 15px 50px 15px;
}

.all-campaigns-list.cities-list {
    flex-wrap:wrap;
}

.all-link-campaigns-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px
}

.all-link-campaigns-list .campaign-card {
    margin: 15px;
    cursor: pointer;
    position: relative;
    flex-direction: column
}

.all-link-campaigns-list .campaign-card img {
    height: 65px
}

.all-link-campaigns-list .campaign-card:last-child {
    margin-right: 15px
}

.all-link-campaigns-list .campaign-card .icon {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center
}

.campaign-card {
    min-height: 170px;
    min-width: 170px;
    width: 170px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 18.5px;
    margin-right: 35px;
    display: flex;
    align-items: flex-end;
    color: white;
    overflow: hidden;
    box-shadow: 0 25px 20px -15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position:relative;
}

.campaign-card.city-card {
    margin-bottom: 35px;
    cursor:pointer;
}

.campaign-card:last-of-type {
    margin-right: 0!important;
}


.campaign-card:hover {
    transform: scale(1.08);
   
}

/* Dark overlay effect */
.campaign-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 0.4s ease-in-out;
}

.campaign-card:hover::before  {
    background: rgba(0, 0, 0, 0.5);
}


.campaign-card:last-child {
    margin-right: 20px
}

.campaign-card .tag {
    position: absolute;
    top: 15px;
    margin: 0;
    right: 15px;
    box-shadow: none;
    font-size: 10px;
    background: #000;
    color: #fff;
    padding: 0 10px;
}

.blurred {
    filter: blur(5px); 
    pointer-events: none; 
    display:none;
}
.blurred:before {
    background: rgba(255, 255, 255, 0.8); 
}

.campaign-title {
    width: 100%;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-bottom-left-radius: 18.5px;
    border-bottom-right-radius: 18.5px;
    overflow: hidden
}



.campaign-title .blurry-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: 1;
    backdrop-filter: blur(5px);
    margin: auto;
    width: 100%;
    background: rgba(0, 0, 0, 0.6)
}

.campaign-card .title {
   
    white-space: break-spaces;
    padding: 0 5px;
    line-height: 25px;
    user-select: none;
    line-height: 18px;
    z-index: 2;
    padding: 0 5px;
    user-select: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.campaign-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    /* pointer-events: none; */
}

body:before {
    z-index: -1;
    background: url("../img/chef.png");
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .02;
    background-size: 500px;
}

@media all and (min-width:1200px) {


    .campaign-card {
        min-height: 300px;
        min-width: 300px;
        width: 300px;
    }

    .tag,
    .campaign-card .title {
        font-size: 19px;
        line-height: 23px;
    }

    .campaign-title {
        height: 60px;
    }
}
.first-category-color { color: rgb(53, 180, 202); }
.second-category-color { color: rgb(250, 171, 15); }
.third-category-color { color: rgb(42, 115, 192); }
.fourth-category-color { color: rgb(166, 102, 4); }
.fifth-category-color { color: rgb(62, 0, 128); }
.sixth-category-color { color: rgb(248, 92, 29); }

.all-categories-list {
    display: flex;
    flex-wrap: wrap;
}
.campaign-tags {
    display:flex;
    flex-wrap: wrap;
}

.gradient-title {

    background: linear-gradient(90deg, #00627e, #5eb7df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
}

.tag {
    margin-right: 30px;
    border-radius: 18.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    word-break: break-word;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 15px;
    min-width: 60px;
}

.tag:hover {
    transform: scale(1.08);
}

.tag:before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.scroll-container {
    cursor:grab;
    width: 100%; /* Full width */
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent wrapping */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
}

.scroll-content {
    display: inline-flex; /* Arrange items in a row */
    gap: 10px; /* Adjust space between cards */
}


@media all and (min-width:480px) {
    .visible-on-mobile {
        display:none;
    }
}
@media (max-width: 480px) {
    .visible-on-desktop {
        display:none;
    }
    .visible-on-mobile {
        display:block;
    }

    .hero-image {
        padding:0 35px;
    }
    .all-campaigns-container {
        margin-bottom: 0;
    }
    .all-campaigns-container button {
        display:none!important;
    }

    .all-categories-container select {
        width:100%;
    }

    .campaign-card {
        margin-right: 15px;
        min-height: 150px;
        min-width: 150px;
        width: 150px;
    }
   
    .all-categories-container {
        justify-content: flex-start;
        padding-left: 30px;
        padding-right: 15px;
        margin-bottom: 15px;
    }

    .all-categories-list {
        padding: 10px 0 5px 20px;
    }
    .all-campaigns-list {
        padding: 10px 0 35px 20px;
    }

    


    .all-campaigns-container h2, .all-categories-container h2 {
        padding-left: 30px;
        font-size:30px;
    }
    .container.cta.fixed {
        padding: 15px 0;
    }
    .hero-image.video {
        height:250px;
    }
    .gp-btn.color-eight.btn-light {
        font-size: 24px;
        width: 90%;
        text-align: center;
        justify-content: center;
        padding: 20px 10px;
    }

    .gp-btn.color-eight.btn-light svg {
        height: 25px;
        width: 25px;
        margin-left:10px;
    }
    .banner {
        min-height: 385px;
    }


    .banner-agency .banner-agency-content .banner-title {
        margin-top:0;
    }
    .banner-agency .banner-agency-content {
        margin-top:0;
        padding: 0;
    }

    .section-heading {
        margin-bottom:40px;
    }

    .icon-box.style-three .portfolio-image img {
        width:170px;
    }

    .call-to-action-two .action-content .action-title {
        line-height:35px;
    }

    .container.cta.fixed {
        height: 100px;
        margin: auto;
        bottom:0;
        top: 0;
    }

    .container.cta.fixed.scrolled {
        bottom:0;
    }
   
}

@keyframes pulsate {
    0% {
        transform: scale(1);
      
    }
    50% {
        transform: scale(1.1);
       
    }
    100% {
        transform: scale(1);
       
    }
}

@media all and (max-width:400px) {
    .all-campaigns-list .campaign-card {
        min-height: 140px;
        min-width: 140px;
        width: 140px;
        margin: 10px
    }

    .all-campaigns-list .campaign-card:last-child {
        margin-right: 10px
    }
}