@font-face {
    font-family: CircularStd-Medium;
    src: url(../fonts/CircularStd-Medium.ttf);
}
@font-face {
    font-family: CircularStd-Bold;
    src: url(../fonts/CircularStd-Bold.ttf);
}
@font-face {
    font-family: CircularStd-Black;
    src: url(../fonts/CircularStd-Black.ttf);
}
@font-face {
    font-family: CircularStd-Book;
    src: url(../fonts/CircularStd-Book.ttf);
}

:root {
    --body-font-size: 20px;
    --body-font-family: 'CircularStd-Book';
    --headings-font-family: 'CircularStd-Bold';
    --headings_1-font-family: 'CircularStd-Black';
    --sg-color-primary: #990bf5;
}


body {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    line-height: 1.5em;
    color: #262626;
}

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

.font-weight-bold {
    font-weight: 700;
}
.font-weight-black {
    font-weight: 900;
    font-family: var(--headings_1-font-family);
}
b, strong, .font-weight-bold {
    font-family: var(--headings-font-family);
}

/* row */
.row,
.row > * {
    --bs-gutter-x: 2em;
}

/* colors */
.color-primary {
    color: var(--sg-color-primary);
}
.color-white {
    color: #fff;
}
.color-black {
    color: #000;
}
.color-light {
    color: #fafafa;
}
.color-dark {
    color: #111;
}
.color-purple {
    color: #990bf5;
}
.color-green {
    color: #66c036;
}

/* background colors */
.bgcolor-primary {
    background-color: var(--sg-color-primary);
}
.bgcolor-white {
    background-color: #fff;
}
.bgcolor-black {
    background-color: #000;
}
.bgcolor-light {
    background-color: #fafafa;
}
.bgcolor-dark {
    background-color: #111;
}
.bgcolor-purple {
    background-color: #990bf5;
}
.bgcolor-green {
    background-color: #66c036;
}

/* border radius */
.border-radius-0 {
    border-radius: 0;
}
.border-radius-5 {
    border-radius: 5px;
}
.border-radius-10 {
    border-radius: 10px;
}
.border-radius-15 {
    border-radius: 15px;
}
.border-radius-25 {
    border-radius: 25px;
}

/* text */
.text-spacing {
    letter-spacing: 1px;
}
.text-outlined {
    font-family: CircularStd-Black;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, 1px 1px 0 #fff, 1px 1px 0 #fff;
}

/* form controls */
.form-control {
    padding: 10px 15px;
}

/* containers */
.container {
    max-width: 1250px;
}

/* headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
    font-family: var(--headings-font-family);
}
h1, .h1 {
    font-size: 50px;
    font-weight: bold;
}
h2, .h2 {
    font-size: 40px;
}
h3, .h3 {
    font-size: 30px;
}

/* buttons */
.btn {
    font-family: 'Poppins';
    padding: 0.7em 2.75em;
    border-radius: 5px;
    border-width: 3px;
}
.btn.btn-primary {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    color: #fff;
}
.btn.btn-primary:hover {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    box-shadow: 0 0 0 0.25rem rgb(227 185 255);
}
.btn.btn-outline-primary {
    background-color: transparent;
    border-color: var(--sg-color-primary);
    color: var(--sg-color-primary);
}
.btn.btn-outline-primary:hover {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgb(227 185 255);
}
.btn-check:focus + .btn.btn-primary, 
.btn.btn-primary:focus {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    box-shadow: 0 0 0 0.25rem rgb(227 185 255);
}
.btn.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}
.btn.btn-outline-white {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.btn.btn-white:hover,
.btn.btn-outline-white:hover {
    background-color: #fafafa;
    border-color: #fafafa;
    color: #111;
    box-shadow: 0 0 0 0.25rem rgb(0 0 0 / 5%);
}
.btn-check:focus + .btn.btn-white, 
.btn.btn-white:focus,
.btn-check:focus + .btn.btn-outline-white, 
.btn.btn-outline-white:focus {
    background-color: #fafafa;
    border-color: #fafafa;
    color: #111;
    box-shadow: 0 0 0 0.25rem rgb(0 0 0 / 5%);
}

/* big cta */
.sg_bb-cta {
    display: block;
    background-color: #fff;
    border: 2px solid #e3e3e3;
    border-radius: 15px;
    padding: 25px;
    color: #000;
    transition: all 0.35s;
}
.sg_bb-cta > img {
    display: block;
    transition: all 0.35s;
}
.sg_bb-cta:hover {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    color: #fff;
}
.sg_bb-cta:hover > img {
    filter: brightness(0) invert(1);
}

/* box */
.sg_box {
    position: relative;
    display: block;
    padding: 50px;
    color: #111;
    background-color: #fff;
    border-radius: 5px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sg_box-shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* image video player */
.sg_video-image-player {
    position: relative;
    display: block;
    padding-bottom: 60%;
    border-radius: 5px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
}
.sg_video-image-player:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.25);
    transition: all 0.35s;
}
.sg_video-image-player:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 0;
    right: 0;
    background-image: url('../img/play-btn.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    transform: translateY(-50%);
    transition: all 0.35s;
    z-index: 2;
}
.sg_video-image-player:hover:before {
    display: none;
}
.sg_video-image-player:hover:after {
    width: 150px;
    height: 150px;
}
.sg_video-image-player img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* data info */
.sg_data-info {
    position: relative;
    padding-left: 150px;
}
.sg_data-info > .amount {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--headings_1-font-family);
    font-size: 40px;
    padding-bottom: 15px;
}
.sg_data-info > .amount:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    width: 75px;
    height: 4px;
    background-color: var(--sg-color-primary);
}
.sg_data-info > .info > h5 {
    font-size: 25px;
    font-family: var(--headings_1-font-family);
} 

/* exceed an image */
img.img-exceeded-right {
    margin-right: -200px;
    max-width: calc(100% + 200px);
}
img.img-exceeded-left {
    margin-left: -200px;
    max-width: calc(100% + 200px);
}

/* listed icons */
ul.sg_listed-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.sg_listed-icons li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
ul.sg_listed-icons li em {
    position: absolute;
    top: 4px;
    left: 0;
}

/* social icons */
ul.socials {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.socials > li {
    display: inline-block;
}
ul.socials > li > a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: inherit;
}

/* filter grayscale */
.sg_filter-grayscale {
    filter: grayscale(100%);
}
a.sg_filter-grayscale {
    opacity: 0.75;
    transition: all 0.35s;
}
a.sg_filter-grayscale:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* image blocks */
.sg_img-block {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 4em;
    padding-left: 5em;
    padding-bottom: 4em;
    max-width: 640px;
}
.sg_img-block img.i-1 {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sg_img-block img.i-2,
.sg_img-block img.i-3,
.sg_img-block img.i-4 {
    position: absolute;
    background-color: rgba(255,255,255,0.85);
    border-radius: 25px;
    padding: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sg_img-block img.i-2 {
    top: 0;
    left: 35%;
    z-index: 1;
}
.sg_img-block img.i-3 {
    top: 15%;
    left: 4.2%;
}
.sg_img-block img.i-4 {
    bottom: 0;
    right: 7%;
}
.sg_img-block.sg_img-block-2 {
    padding-top: 5em;
    padding-left: 2em;
    padding-right: 3em;
    padding-bottom: 5em;
    background-image: url('../img/shape.png');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}
.sg_img-block.sg_img-block-2 img.i-2 {
    top: 3%;
    left: 10%;
}
.sg_img-block.sg_img-block-2 img.i-3 {
    top: auto;
    left: 15%;
    bottom: 5%;
    background-color: #66c036;
}
.sg_img-block.sg_img-block-2 img.i-4 {
    bottom: 5%;
}
.sg_img-block.sg_img-block-3 {
    padding-top: 5em;
    padding-left: 3em;
    padding-right: 2em;
    padding-bottom: 5em;
    background-image: url('../img/shape.png');
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
.sg_img-block.sg_img-block-3 img.i-2 {
    top: 3%;
    left: auto;
    right: 5%;
}
.sg_img-block.sg_img-block-3 img.i-3 {
    top: 35%;
    right: 0;
    left: auto;
    background-color: #66c036;
}
.sg_img-block.sg_img-block-3 img.i-4 {
    bottom: 5%;
    left: 25%;
}

/* testimonials */
.sg_testimonials {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.sg_testimonials > .item {
    position: relative;
    padding: 50px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.7) 0px 7px 29px 0px;
}
.sg_testimonials > .item > .ratings {
    display: block;
    margin-bottom: 15px;
}
.sg_testimonials > .item > .ratings .checked {
    color: orange;
}
.sg_testimonials > .item > .details > .author {
    font-size: 20px;
    font-weight: bold;
}

/* site info */
.sg_site-info {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.sg_site-info > .item {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-justify-content: center;
    justify-content: center;
    background-color: #fff;
    flex: 0 0 calc(50% - 30px);
    -ms-flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    padding: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 15px;
    border-radius: 15px;
    transition: all 0.35s;
}
.sg_site-info > .item:hover {
    color: #fff;
    background-color: var(--sg-color-primary);
}
.sg_site-info > .item:nth-child(odd) {
    margin-top: 30px;
    margin-bottom: -5px;
}
.sg_site-info > .item:nth-child(even) {
    margin-top: -5px;
    margin-bottom: 30px;
}
.sg_site-info > .item h5 {
    font-size: 36px;
    font-weight: bold;
}
.sg_site-info > .item p {
    margin-bottom: 0;
}

/* block info */
.sg_block-info {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-justify-content: center;
    justify-content: center;
    background-color: #fff;
    padding: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 15px;
    width: 100%;
    border-radius: 15px;
    transition: all 0.35s;
}
.sg_block-info h5 {
    font-size: 36px;
    font-weight: bold;
}
.sg_block-info:hover {
    color: #fff;
    background-color: var(--sg-color-primary);
}

/* site wrapper */
.site-wrapper {
    position: relative;
    overflow: hidden;
}

/* header */
header#masterhead {
    position: relative;
    margin-top: 25px;
    z-index: 99999;
    transition: all 0.35s;
}
header#masterhead .topbar {
    padding: 10px 0;
}
header#masterhead .topbar ul.socials {
    display: inline-block;
    color: #fff;
}
header#masterhead .primary-navbar {
    position: relative;
    font-size: 15px;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
    background-color: #1e1e1e;
    /* background-image: url(../img/navbar-bg.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; */
}
header#masterhead .primary-navbar > ul.nav-menu {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
header#masterhead .primary-navbar > ul.nav-menu > .item {
    position: relative;
    padding: 5px 10px;
}
header#masterhead .primary-navbar > ul.nav-menu > .item a {
    display: block;
    font-family: var(--headings-font-family);
    padding: 7px 15px;
    text-decoration: none;
    text-transform: uppercase;
    color: inherit;
}
header#masterhead .primary-navbar > ul.nav-menu > .item a.btn.btn-primary {
    color: #fff;
    padding: 7px 25px;
}
header#masterhead .primary-navbar > ul.nav-menu > .item a.active,
header#masterhead .primary-navbar > ul.nav-menu > .item a:hover {
    color: var(--sg-color-primary);
}
header#masterhead .primary-navbar-mobile {
    position: relative;
    display: none;
    margin-top: 15px;
    font-size: 15px;
    padding: 15px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
header#masterhead .primary-navbar-mobile .ctas {
    margin-left: auto;
}
header#masterhead.sticky {
    position: fixed;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(75px);
}

/* mobile burger toggler */
.mobile-toggler-burger {
    position: relative;
    display: none;
    padding-top: 5px;
    width: 40px;
    height: 40px;
    z-index: 15;
}
.mobile-toggler-burger > span {
    position: relative;
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px auto;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.35s;
}
.mobile-toggler-burger.close > span.top-bun {
  transform: rotate(-45deg);
  margin-top: 12px;
}
.mobile-toggler-burger.close > span.bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}
.mobile-toggler-burger.close > span.meat {
  transform: rotate(45deg);
  margin-top: -9px;
}
/* header#masterhead .primary-navbar-mobile .mobile-toggler-burger > span {
    background-color: #111;
} */

/* mobile nav */
#mobile-nav {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 15px;
    padding: 15px;
    border-radius: 0;
    box-shadow: rgba(100, 100, 111, 0.2);
    z-index: 999999;
}
#mobile-nav:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 15;
}
#mobile-nav > .inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 50px 25px 25px;
    width: 320px;
    height: 100%;
    color: #fff;
    background-color: #1e1e1e;
    background-image: url(../img/full-bg-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateX(320px);
    transition: all 0.35s;
    overflow: auto;
    z-index: 22;
}
#mobile-nav > .inner img {
    max-width: 100%;
}
#mobile-nav > .inner > .navi {
    position: relative;
    display: block;
    margin-top: 25px;
}
#mobile-nav > .inner > .navi > ul.nav,
#mobile-nav > .inner > .navi > ul.nav ul {
    list-style: none;
}
#mobile-nav > .inner > .navi > ul.nav li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
#mobile-nav > .inner > .navi > ul.nav ul {
    margin-bottom: 25px;
}
#mobile-nav > .inner > .navi > ul.nav li:last-child {
    border-bottom: 0;
}
#mobile-nav > .inner > .navi > ul.nav li a {
    display: block;
    text-transform: uppercase;
    padding: 15px;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #e3e3e3;
    transition: all 0.35s;
}
#mobile-nav > .inner > .navi > ul.nav li a:hover {
    background-color: rgba(255,255,255,0.16);
}
#mobile-nav .close {
    position: absolute;
    top: 5px;
    left: 5px;
}

/* section */
section.section {
    position: relative;
    padding: 75px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
section.section.section-sm {
    padding: 25px 0;
}
.section-title {
    position: relative;
    margin-bottom: 25px;
}
.section-title h5 {
    font-size: 20px;
    margin: 0;
}
.section-title h2 {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

/* insights */
.sg_insights {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-family: var(--headings-font-family);
}
.sg_insights > .item {
    -ms-flex: 0 0 calc(25% - 30px);
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
}
.sg_insights .item {
    display: block;
    width: 100%;
    padding: 40px 15px;
    margin: 25px;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 
}
.sg_insights .item > h5 {
    font-family: CircularStd-Black;
    font-size: 42px;
    margin: 0;
}

/* service block */
.sg_service-block {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 25px;
    padding: 50px;
    height: 100%;
    transition: all 0.35s;
}
.sg_service-block:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sg_service-block > .thumb {
    margin-bottom: 15px;
}
.sg_service-block > h4.title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}
.sg_service-block > .cta {
    display: block;
    text-align: center;
    margin-top: auto;
}
.sg_service-block > .cta > .btn {
    width: 100%;
    max-width: 200px;
}

/* work progress */
.sg_work-progress {
    position: relative;
    display: block;
}
.sg_work-progress > .row-title {
    position: relative;
    display: block;
    margin-bottom: 50px;
    text-align: center;
}
.sg_work-progress .row-title:before {
    position: absolute;
    content: '';
    top: auto;
    left: 0;
    right: 0;
    bottom: -50px;
    width: 1px;
    height: 50px;
    background-color: var(--sg-color-primary);
    margin: 0 auto;
}
.sg_work-progress .row-title > h2 {
    display: inline-block;
    padding: 15px;
    background-color: #fff;
    margin: 0;
}
.sg_work-progress > .item {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding: 150px 0;
}
.sg_work-progress > .item:not(:last-child):before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: var(--sg-color-primary);
    margin: 0 auto;
}
.sg_work-progress > .item > .step-legend {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.sg_work-progress > .item > .step-legend:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    right: 0;
    width: 200px;
    height: 1px;
    background-color: var(--sg-color-primary);
    margin: 0 auto;
    transform: translate(135px, -50%);
}
.sg_work-progress > .item > .step-legend:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: var(--sg-color-primary);
    margin: 0 auto;
    transform: translate(245px, -50%) rotate(45deg);
}
.sg_work-progress > .item > .step-legend > .title {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 90px;
    height: 90px;
    background-color: var(--sg-color-primary);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto;
}
.sg_work-progress > .item > .step-legend > .title > span:not(.num) {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1em;
    letter-spacing: 1px;
}
.sg_work-progress > .item > .step-legend > .title > span.num {
    font-size: 30px;
    font-family: var(--headings_1-font-family);
}
.sg_work-progress > .item > .step-legend > .title:before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    display: block;
    border-bottom: calc(90px / 2) solid #fff;
    border-left: calc(90px / 2) solid transparent;
}
.sg_work-progress > .item > .thumb,
.sg_work-progress > .item > .details {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 50px;
}
.sg_work-progress > .item.opp {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.sg_work-progress > .item.opp > .step-legend:before {
    transform: translate(-135px, -50%);
}
.sg_work-progress > .item.opp > .step-legend:after {
    transform: translate(-245px, -50%) rotate(45deg);
}
.sg_work-progress > .item:last-child {
    padding-bottom: 0;
}

/* account */
body.sgauth header#masterhead,
body.sgauth footer#masterfoot,
body.sgauth .animated-site--bg {
    display: none;
}
body.sgauth .site-content {
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-justify-content: center;
    justify-content: center;
    color: #fff;
    background-color: #1e1e1e;
    background-image: url(../img/full-bg-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 25px 15px;
}
body.sgauth .site-content .section.section-auth {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}
body.sgauth .site-content .section.section-auth > .brand {
    text-align: center;
    margin-bottom: 25px;
}
body.sgauth .site-content .section.section-auth .card {
    padding: 25px;
    font-size: 16px;
    line-height: 1.5em;
    color: #777;
}
body.sgauth .site-content .section.section-auth .card > .card-header {
    text-align: center;
    border-radius: 0;
    border: 0;
    background-color: transparent;
}
body.sgauth .site-content .section.section-auth .card > .card-header > h4 {
    font-size: 30px;
    margin-bottom: 0;
    color: #000;
}
body.sgauth .site-content .section.section-auth .card > .card-body .control-label {
    display: none;
}
body.sgauth .site-content .section.section-auth .card > .card-body .form-group {
    display: block;
    margin-bottom: 15px;
}
body.sgauth .site-content .section.section-auth .card > .card-body .form-control {
    background-color: #ebebeb;
    border: 1px solid #ebebeb;
    border-left: 5px solid var(--sg-color-primary);
    border-radius: 5px;
    padding: 15px;
}
body.sgauth .site-content .section.section-auth .card > .card-body .form-control:focus {
    background-color: #f9f9f9;
    box-shadow: none;
}
body.sgauth .site-content .section.section-auth .card > .card-body .btn {
    font-size: 16px;
}

/* footer */
footer#masterfoot {
    position: relative;
    margin-top: 100px;
    padding: 400px 0 30px;
    background-image: url('../img/footer-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    /* overflow: hidden; */
}
footer#masterfoot .footer-widgets {
    position: relative;
}
footer#masterfoot .footer-widgets .widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
footer#masterfoot .footer-widgets a {
    color: inherit;
}
footer#masterfoot .footer-widgets ul {
    list-style: none;
    padding: 0;
}
footer#masterfoot .footer-widgets ul > li {
    margin-bottom: 10px;
}

/* animated site bg */
.animated-site--bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.animated-site--bg .top > img {
    position: absolute;
    right: 0;
    top: 0;
}
.animated-site--bg .top > img:nth-child(2) {
    bottom: -150px;
}
.animated-site--bg .top > img:nth-child(3) {
    bottom: -300px;
}
.animated-site--bg .bottom > img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.animated-site--bg .bottom > img:nth-child(2) {
    bottom: -150px;
}
.animated-site--bg .bottom > img:nth-child(3) {
    bottom: -300px;
}
.animated-site--bg .floating-particles > div {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: -moz-linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(233,233,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(233,233,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(233,233,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#e9e9ff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.animated-site--bg .floating-particles > div:first-child {
    width: 100px;
    height: 100px;
    top: 100px;
    left: 50px;
}
.animated-site--bg .floating-particles > div:nth-child(2) {
    width: 250px;
    height: 250px;
    top: 250px;
    left: -100px;
}
.animated-site--bg .floating-particles > div:nth-child(3) {
    top: 1000px;
    left: -110px;
}
.animated-site--bg .floating-particles > div:nth-child(4) {
    top: 3800px;
    width: 100px;
    height: 100px;
    left: -10px;
}
.animated-site--bg .floating-particles > div:nth-child(5) {
    top: 3000px;
    width: 250px;
    height: 250px;
    left: auto;
    right: -100px;
}
.animated-site--bg .floating-particles > div:nth-child(6) {
    top: 4200px;
    width: 700px;
    height: 700px;
    left: auto;
    right: -185px;
}
.animated-site--bg .floating-particles > div:nth-child(7) {
    top: 5000px;
    width: 100px;
    height: 100px;
    left: -30px;
}
.animated-site--bg .floating-particles-1 > div {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--sg-color-primary);
}
.animated-site--bg .floating-particles-1 > div:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #000;
}
.animated-site--bg .floating-particles-1 > div:first-child {
    top: 250px;
    left: 50%;
}
.animated-site--bg .floating-particles-1 > div:nth-child(2) {
    top: 1200px;
    right: 15%;
}
.animated-site--bg .floating-particles-1 > div:nth-child(3) {
    top: 2000px;
    left: 5%;
}
.animated-site--bg .floating-particles-1 > div:nth-child(4) {
    top: 2800px;
    right: 10%;
}

/* see more text */
.sg_seemore-text--js {
    position: relative;
    transition: all 0.35s;
    overflow: hidden;
}
.sg_seemore-text--js:not(.show) > .text {
    display: -webkit-box;
    max-width: 90%;
    margin: 0 auto;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sg_seemore-text--js a[href="#seemore"] {
    display: block;
    margin-top: 10px;
    text-align: center;
}

/* carousel */
.owl-theme.owl-carousel .owl-stage {
    display: -ms-flex;
    display: flex;
}
.owl-theme.owl-carousel .owl-stage .owl-item {
    display: -ms-flex;
    display: flex;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}
.owl-theme.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: -ms-flex;
    display: flex;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    margin: 0;
}
.owl-theme.owl-carousel .owl-nav.disabled {
    display: none;
}
.owl-theme.owl-carousel .owl-nav > button[class^="owl-"] {
    position: absolute;
    font-size: 24px;
    border: 0;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.owl-theme.owl-carousel .owl-nav > button[class^="owl-"]:focus {
    background-color: #222;
    color: #fff;
}
.owl-theme.owl-carousel .owl-nav > button[class^="owl-"] > span {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}
.owl-theme.owl-carousel .owl-nav > button.owl-next {
    right: 0;
}

/* selectric */
.selectric .label,
.selectric-items ul, 
.selectric-items li {
    font-size: inherit;
} 
.selectric-items li {
    padding: 15px;
}

/* block carousels */
.sg-blocks--carousel {
    position: relative;
    display: -ms-flex;
    display: flex;
    opacity: 0;
    overflow: hidden;
}
/* .sg-blocks--carousel .item {
    display: block;
    width: 100%;
    padding: 15px;
} */

/* request demo box */
.request-demo--box {
    position: relative;
    display: block;
    padding: 50px;
    color: #111;
    background-color: #fff;
    border-radius: 5px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* wizard steps */
.wizard-content .wizard > .steps > ul > li.done .step,
.wizard-content .wizard > .steps > ul > li.current .step {
    border-color: var(--sg-color-primary);
    background-color: var(--sg-color-primary);
    color: #fff;
}
.wizard-content .wizard.wizard-circle > .steps > ul >li:after, 
.wizard-content .wizard.wizard-circle > .steps > ul >li:before {
    background-color: var(--sg-color-primary);
}
.wizard-content .wizard > .content >.body {
    padding: 20px;
}
.wizard-content .wizard > .actions {
    text-align: center;
}
.wizard-content .wizard > .actions > ul {
    display: -ms-flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center;
    float: none;
}
.wizard-content .wizard >.actions > ul > li,
.wizard-content .wizard >.actions > ul > li + li {
    float: none;
    padding: 10px;
    margin: 0;
}
.wizard-content .wizard > .actions > ul > li.disabled > a {
    border-color: #e3e3e3;
}
.wizard-content .wizard > .actions > ul > li > a {
    font-family: 'Poppins';
    border-color: var(--sg-color-primary);
    background-color: var(--sg-color-primary);
    padding: 0.7em 2.75em;
    border-radius: 5px;
    border-width: 3px;
    text-transform: uppercase;
    font-weight: bold;
}
.wizard-content .wizard > .actions > ul > li > a[disabled] {
    opacity: 0.75;
    cursor: not-allowed;
}

/* demo wizard */
.sg_demo-wizard--form {
    display: none;
    font-size: 16px;
    line-height: 1.5em;
}
.sg_demo-wizard--form section {
    text-align: left;
}
.sg_demo-wizard--form .form-group {
    display: block;
    margin-bottom: 15px;
}
.sg_demo-wizard--form .form-control.error {
    border-color: #dd7070;
    background-color: #fff3f3;
}
.sg_demo-wizard--form label.error {
    color: #cf2d2d;
    font-size: 12px;
    float: right;
}
.sg_demo-wizard--form .demo-schedule--selection {
    display: -ms-flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.sg_demo-wizard--form .demo-schedule--selection > .demo-schedule {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 10px;
    text-align: center;
}
.sg_demo-wizard--form .demo-schedule--selection > .demo-schedule .form-control {
    text-align: center;
}
.sg_demo-wizard--form .demo-schedule--selection > .demo-calendar--field {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
}
.sg_demo-wizard--form .demo-schedule--selection > .demo-time--field {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-height: 320px;
    padding: 0 10px;
    overflow: auto;
}
.sg_demo-wizard--form .demo-schedule--selection > .demo-time--field > .t {
    position: relative;
    margin-bottom: 5px;
}
.sg_demo-wizard--form .demo-schedule--selection > .demo-time--field > .t > .btn {
    padding: 5px;
    border: 1px solid #e3e3e3;
    width: 100%;
    border-radius: 0;
}
.sg_demo-wizard--form .demo-schedule--selection > .demo-time--field > .t > .btn-check:checked ~ .btn {
    background-color: #222;
    color: #fff;
}
.sg_demo-wizard--form .demo-calendar--field input.date {
    text-align: center;
    margin-bottom: 15px;
}
.sg_demo-wizard--form .demo-calendar--field input[type="date"]::-webkit-inner-spin-button,
.sg_demo-wizard--form .demo-calendar--field input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.sg_demo-wizard--form .demo-calendar--field .datepicker.datepicker-inline {
    margin: 0 auto;
    max-width: 100%;
}
.sg_demo-wizard--form .success-msg > h4 {
    color: #3eb541;
}

body.page-request-demo .site-content {
    display: -ms-flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    padding: 50px;
    min-height: 100vh;
}
body.page-request-demo .site-content .request-demo--box {
    max-width: 700px;
}
body.page-request-demo header#masterhead,
body.page-request-demo footer#masterfoot {
    display: none;
}
body.page-request-demo .animated-site--bg .top {
    display: none;
}

.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #990bf5;
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    z-index: 9999;
    transition: all 0.35s;
}
.back-to-top:hover {
    background-color: #333;
    color: #fff;
}


@media only screen and (max-width: 991px) {
    
    header#masterhead .primary-navbar > ul.nav-menu > .item {
        padding: 0;
    }
    header#masterhead .primary-navbar > ul.nav-menu > .item a {
        font-size: 13px;
        line-height: 1em;
    }

}

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

    header#masterhead .primary-navbar-mobile {
        display: none;
    }

    .sticky-mobile-ctas {
        display: none;
    }

    body.page-case_studies section.section,
    body.page-contact section.section {
        z-index: 2;
    }
    body.page-case_studies footer#masterfoot,
    body.page-contact footer#masterfoot {
        margin-top: -450px;
    }

}

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

    header#masterhead {
        margin-top: 0;
    }
    header#masterhead.sticky {
        top: -25px;
        transform: translateY(25px);
    }
    
    section.section {
        padding: 35px 0;
    }
    section.section .btn {
        width: 100%;
    }

    #mobile-nav.open,
    .mobile-toggler-burger {
        display: block;
    }
    #mobile-nav.open > .inner {
        transform: translateX(0);
    }

    header#masterhead .primary-navbar {
        display: none;
    }
    header#masterhead .primary-navbar-mobile {
        display: -ms-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
        margin-top: 0;
        margin-left: -15px;
        margin-right: -15px;
        background-color: #1e1e1e;
        background-size: cover;
        background-repeat: no-repeat;
        color: #fff;
        border-radius: 0;
    }

    .back-to-top {
        bottom: 70px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
    
    img.img-exceeded-left,
    img.img-exceeded-right {
        margin: 0 auto;
        max-width: 100%;
    }

    ul.sg_listed-icons li {
        padding-left: 0;
    }
    ul.sg_listed-icons li em {
        position: relative;
        top: 0;
    }

    .sticky-mobile-ctas {
        position: fixed;
        display: -ms-flex;
        display: flex;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px;
        z-index: 9999;
    }
    .sticky-mobile-ctas > a.btn {
        position: relative;
        -ms-flex: 1;
        flex: 1;
        font-family: var(--headings_1-font-family);
        letter-spacing: 1px;
        box-shadow: rgb(0 0 0 / 50%) 0px 10px 50px;
    }
    .sticky-mobile-ctas > a.btn > em {
        position: absolute;
        left: 5px;
        top: 5px;
        bottom: 5px;
        padding: 10px;
        background-color: #fff;
        color: var(--sg-color-primary);
        border-radius: 5px;
    }

    .page-case_study--single .sg_case-stats--row {
        display: block;
    }
    .page-case_study--single .sg_case-stats--row > .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .page-case_study--single .sg_case-stats--row > .item:not(:last-child):after {
        top: auto;
        right: 0;
        width: 100%;
        height: 1px;
    }

    .page-case_study--single .sg_case-keyphrase--info {
        display: block;
        margin: 0 auto;
    }
    .page-case_study--single .sg_case-keyphrase--info > .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sg_insights {
        display: block;
    }
    .sg_insights > .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sg_data-info {
        text-align: center;
        padding: 0;
    }
    .sg_data-info > .amount {
        position: relative;
        padding-bottom: 20px;
    }
    .sg_data-info > .amount:after {
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .sg_case-studies {
        display: block;
    }
    .sg_case-studies > .article {
        margin-bottom: 50px;
    }

    .sg_work-progress > .item {
        display: block;
        padding: 25px 0 75px;
    }
    .sg_work-progress > .item > .step-legend {
        position: relative;
        margin-bottom: 50px;
    }
    .sg_work-progress > .item > .thumb, 
    .sg_work-progress > .item > .details {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }
    .sg_work-progress > .item > .thumb {
        margin-bottom: 25px;
    }
    .sg_work-progress > .item:before,
    .sg_work-progress > .item > .step-legend:before,
    .sg_work-progress > .item > .step-legend:after {
        display: none;
    }

    footer#masterfoot {
        margin-top: 0;
        padding-top: 100px;
        padding-bottom: 100px;
        text-align: center;
        background-image: url('../img/footer-bg-sm.png');
    }
    
    .animated-site--bg .top > img {
        max-width: 70%;
    }
    .animated-site--bg .floating-particles-1 > div {
        opacity: 0.25;
    }

}

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

    body {
        font-size: 18px;
    }
    
    section.section {
        text-align: center;
    }

    h1, .h1 {
        font-size: 42px;
        line-height: 1em;
    }
    h2, .h2 {
        font-size: 26px;
    }
    h3, .h3 {
        font-size: 22px;
    }
    h4, .h4 {
        font-size: 20px;
    }
    h5, .h5 {
        font-size: 18px;
    }
    h6, .h6 {
        font-size: 18px;
    }
    .animated-site--bg .top > img {
        top: 50px;
    }

    .sg_box {
        padding: 25px;
    }

    .wizard-content .wizard > .steps {
        /* display: none; */
    }
    /* .wizard-content .wizard > .steps > ul > li.disabled,
    .wizard-content .wizard > .steps > ul > li.done {
        display: none;
    } */
    .wizard-content .wizard > .steps > ul {
        display: -ms-flex;
        display: flex;
    }
    .wizard-content .wizard > .content > .body {
        padding: 20px 0;
    }
    .wizard-content .wizard > .actions {
        padding: 0;
    }
    .wizard-content .wizard > .actions > ul {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .wizard-content .wizard > .actions > ul > li {
        padding: 0;
        margin-bottom: 5px;
    }
    .wizard-content .wizard > .actions > ul > li + li {
        padding: 0;
    }
    .wizard-content .wizard.wizard-circle > .steps > ul .step {
        top: 5px;
        width: 40px;
        height: 40px;
        line-height: 35px;
        font-size: 16px;
    }

    body.page-request-demo .animated-site--bg .top > img {
        top: 0;
    }

    /* body.page-home .section-home-banner {
        padding: 50px 0 150px;
        color: #fff;
        background-image: url('../img/header-bg-sm.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom center;
        text-align: center;
    }
    body.page-home .section-home-banner .animated-site--bg .top {
        display: none;
    }
    body.page-home .section-home-banner .sg_seemore-text--js a[href="#seemore"] {
        color: #fff;
    } */

    body.page-request-demo .site-content {
        -ms-align-items: inherit;
        align-items: inherit;
        padding: 0;
    }
    body.page-request-demo .site-content .request-demo--box {
        padding: 25px;
        border-radius: 0;
        width: 100%;
    }

    .sg_bb-cta > img {
        margin: 0 auto;
    }

    .sg_demo-wizard--form .demo-schedule--selection > .demo-calendar--field,
    .sg_demo-wizard--form .demo-schedule--selection > .demo-time--field {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .sg_demo-wizard--form .demo-schedule--selection > .demo-time--field {
        display: none;
        margin-top: 10px;
        max-height: 100%;
        padding: 0;
    }

}