:root {
    --body-font-size: 16px;
    --body-font-family: 'Poppins';
    --headings-font-family: 'Poppins';
    --headings_1-font-family: 'Poppins';
    --sg-color-primary: #ff6600;
    --sg-color-secondary: #ffc000;
}


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

/* fix color picker */
.sp-original-input-container .sp-add-on {
    width: 40px !important;
}

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

p {
    line-height: 1.5em;
}

.font-large {
    font-size: 25px;
}
.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);
}

/* spacer */
.v-spacer {
    display: block;
    height: 150px;
}

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

/* colors */
.color-primary {
    color: var(--sg-color-primary);
}
.color-white {
    color: #fff;
}
.color-black {
    color: #000;
}
.color-light {
    color: #fafafa;
}
.color-gray {
    color: #777;
}
.color-dark {
    color: #111;
}
.color-orange {
    color: #ff6600;
}
.color-yellow {
    color: #ffc000;
}
.color-green {
    color: #66c036;
}

/* background colors */
.bgcolor-primary {
    background-color: var(--sg-color-primary);
}
.bgcolor-primary-gradient {
    background: var(--sg-color-primary); /* Old browsers */
    background: -moz-linear-gradient(top,  #ff6600 0%, #ffa400 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ff6600 0%,#ffa400 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ff6600 0%,#ffa400 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6600', endColorstr='#ffa400',GradientType=0 ); /* IE6-9 */

}
.bgcolor-white {
    background-color: #fff;
}
.bgcolor-black {
    background-color: #000;
}
.bgcolor-light {
    background-color: #fafafa;
}
.bgcolor-dark {
    background-color: #111;
}
.bgcolor-orange {
    background-color: #ff6600;
}
.bgcolor-yellow {
    background-color: #ffc000;
}
.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;
}

/* alerts */
.alert a {
    text-decoration: underline;
}
.alert.alert-success {
    background-color: #02951a;
}
.alert.alert-success {
    background-color: #02951a;
}

/* text */
.text-spacing {
    letter-spacing: 1px;
}
.text-outlined {
    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;
    border-radius: 0;
}
.input-group-text, .form-control:not(.dropdown), .form-control:not(.bootstrap-select), select.form-control:not([size]):not([multiple]), .form-control:not(.form-control-sm):not(.form-control-lg) {
    height: auto;
}

/* input groups */
.input-group-text {
    border-radius: 0;
    border: 0;
    background-color: #e7e7e7;
}

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

/* accordion */
.accordion .accordion-item {
    margin-bottom: 15px;
    border: 0;
    border-radius: 0;
}
.accordion .accordion-header {
    padding: 0;
    line-height: 1em;
    background-color: #f5f5f5;
    border: 0;
    border-radius: 0;
}
.accordion .accordion-header {
    padding: 15px;
    line-height: 1em;
    border: 0;
    border-radius: 0;
    background-color: #f5f5f5;
}
.accordion .accordion-header[aria-expanded="true"] {
    color: #fff;
    background-color: var(--sg-color-primary);
}
.accordion .accordion-header[aria-expanded="true"]::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.accordion .accordion-body {
    padding: 25px;
    line-height: 1.5em;
}

/* table */
.table-row-tools {
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.25em;
}
.table-row-tools a {
    display: inline-block;
    color: #4e4e4e;
    padding-left: 7px;
    padding-right: 7px;
    border-right: 1px solid #e3e3e3;
}
.table-row-tools a:first-child {
    padding-left: 0;
}
.table-row-tools a:last-child {
    border-right: 0;
}

/* card */
.card {
    border: 1px solid #e4e6fc;
    border-top-width: 3px;
}
.card .card-header h4 {
    color: var(--sg-color-primary) !important;
}

/* headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
    font-family: var(--headings-font-family);
    line-height: 1.5em;
}
h4, .h4,
h5, .h5,
h6, .h6 {
    line-height: 1.25em;
}
h1, .h1 {
    font-size: 72px;
    line-height: 72px;
    font-weight: bold;
}
h2, .h2 {
    font-size: 60px;
    line-height: 60px;
}
h3, .h3 {
    font-size: 40px;
    line-height: 40px;
}

/* buttons */
.btn {
    font-size: inherit;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 0;
    border-width: 2px;
    box-shadow: none;
}
.btn.btn-lg {
    font-size: 20px;
}
.btn:hover {
    background-color: var(--sg-color-primary) !important;
    border-color: var(--sg-color-primary) !important;
    color: #fff !important;
}
.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-secondary) !important;
    border-color: var(--sg-color-secondary) !important;
    color: #fff !important;
}
.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) !important;
    border-color: var(--sg-color-primary) !important;
    color: #fff;
}
.btn-check:focus + .btn.btn-primary, 
.btn.btn-primary:focus {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
}
.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 !important;
    border-color: #fafafa !important;
    color: #111 !important;
}
.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;
}

/* 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;
}

/* pricing card */
.sg-card_pricing {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #e3e3e3;
    text-align: center;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sg-card_pricing > h3.title {
    display: block;
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    padding: 25px 15px;
    background-color: var(--sg-color-secondary);
    margin: 0;
}
.sg-card_pricing > .inner {
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 25px;
}
.sg-card_pricing > .inner > .price {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 20px;
}
.sg-card_pricing > .inner > .price > h4 {
    font-size: 42px;
    line-height: 1em;
    font-weight: bold;
    color: var(--sg-color-secondary);
    margin: 0 0 5px;
}
.sg-card_pricing > .inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sg-card_pricing > .inner > .cta {
    padding-top: 25px;
    margin-top: auto;
}
.sg-card_pricing > .inner > .cta .btn.btn-primary {
    border-color: var(--sg-color-secondary);
    background-color: var(--sg-color-secondary);
}
.sg-card_pricing.alt > h3.title {
    background-color: var(--sg-color-primary);
    color: #fff;
}
.sg-card_pricing.alt > .inner > .price > h4 {
    color: var(--sg-color-primary);
}
.sg-card_pricing.alt > .inner > .cta .btn.btn-primary {
    border-color: var(--sg-color-primary);
    background-color: var(--sg-color-primary);
}

/* pricing card */
.sg-card_cta {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #e3e3e3;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sg-card_cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--sg-color-primary);
    opacity: 0;
    z-index: 1;
    transition: all 0.35s;
}
.sg-card_cta > .thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
}
.sg-card_cta > .thumbnail > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sg-card_cta > .details {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 25px;
    text-align: center;
    color: #000;
    opacity: 0.7;
    z-index: 2;
    transform: translateY(-50%);
    transition: all 0.35s;
}
.sg-card_cta:hover:before {
    opacity: 0.8;
}
.sg-card_cta:hover > .details {
    color: #fff;
    opacity: 1;
}

/* info icon */
.sg-info_icons {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    justify-content: space-between;
}
.sg-info_icons:before {
    position: absolute;
    content: '';
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: 0;
    border-bottom: 4px dashed var(--sg-color-primary);
    transform: translateY(-50%);
}
.sg-info_icons > .item {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 25px;
    width: 250px;
    text-align: center;
}
.sg-info_icons > .item > em {
    font-size: 70px;
    color: var(--sg-color-primary);
}
.sg-info_icons > .item > h5 {
    font-size: 24px;
    margin-top: 15px;
    font-weight: 500;
}

/* card icon */
.sg-card_icon {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #e3e3e3;
    background-color: #fff;
    padding: 25px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 25px;
}
.sg-card_icon > .icon {
    font-size: 40px;
    color: var(--sg-color-primary);
    margin-bottom: 15px;
}
.sg-card_icon > .icon img {
    width: 70px;
    height: 70px;
}
.sg-card_icon > .details > h4 {
    font-size: 20px;
}
.sg-card_icons {
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.sg-card_icons > .sg-card_icon {
    -ms-flex: 0 0 calc(50% - 30px);
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin: 15px;
}

/* 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);
}
img.img-exceeded-top {
    margin-top: -200px;
    max-width: calc(100%);
}
img.img-exceeded-bottom {
    margin-bottom: -200px;
    max-width: calc(100%);
}

/* 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;
}

/* testimonials */
.sg_testimonials {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.sg_testimonials .item {
    position: relative;
    padding: 50px;
    margin: 25px;
    text-align: center;
    background-color: #fff;
    border-radius: 0;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}
.sg_testimonials .item > .icon {
    font-size: 40px;
    color: var(--sg-color-primary);
    margin-bottom: 15px;
}
.sg_testimonials .item > .comment > .thumb {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background-color: #e3e3e3;
    margin: 0 auto 25px;
}
.sg_testimonials .item > .comment > .name {
    position: relative;
}
.sg_testimonials .item > .comment > .name > h4 {
    font-size: 20px;
    line-height: 1em;
}
.sg_testimonials .item > .comment > .name > h6 {
    font-size: 16px;
    line-height: 1em;
    font-weight: 500;
}

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

/* header */
header#masterhead {
    position: relative;
    background-color: #151618;
    color: #fff;
    background-image: url(../img/nav-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    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;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    font-size: 15px;
}
header#masterhead .primary-navbar > ul.nav-menu {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: 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:not(.btn) {
    display: block;
    padding: 7px 10px;
    font-family: var(--headings-font-family);
    text-decoration: none;
    text-transform: uppercase;
    color: inherit;
}
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;
}
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(50px);
}

/* 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;
}

/* 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: 100px 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-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;
}

/* account */
body.sgauth header#masterhead,
body.sgauth footer#masterfoot,
body.sgauth .section.section-newsletter {
    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-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 {
    display: block;
    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;
}
body.sgaccount .section.section-newsletter {
    display: none;
}

/* newsletter section */
.section.section-newsletter {
    padding: 50px 0;
    background-color: #1a1a1a;
    color: #fff;
}

/* footer */
footer#masterfoot {
    position: relative;
    padding: 50px 0;
    background-color: #000;;
    color: #fff;
    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;
    color: var(--sg-color-primary);
    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;
}

/* 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 > *[class^="owl-"] {
    position: absolute;
    font-size: 24px;
    border: 0;
    font-weight: bold;
    background-color: var(--sg-color-primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    text-indent: -9999px;
}
.owl-theme.owl-carousel .owl-nav > *[class^="owl-"]:focus {
    background-color: #222;
    color: #fff;
}
.owl-theme.owl-carousel .owl-nav > *[class^="owl-"]:before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: '\f30a';
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-indent: 0;
    transform: translateY(-50%);
}
.owl-theme.owl-carousel .owl-nav > .owl-next {
    right: 0;
}
.owl-theme.owl-carousel .owl-nav > .owl-next:before {
    content: '\f30b';
}

/* 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;
}

/* back to top */
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--sg-color-primary);
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0;
    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;
    }

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

    .sg-info_icons > .item {
        width: 150px;
    }
    .sg-info_icons > .item > em {
        font-size: 42px;
    }
    .sg-info_icons > .item > h5 {
        font-size: 16px;
    }

    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;
    }

    .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;
    }

    footer#masterfoot {
        text-align: center;
    }
    
    .v-spacer {
        height: 50px;
    }

}

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

    body {
        font-size: 16px;
    }

    header#masterhead {
        padding: 10px 0;
    }
    header#masterhead .primary-navbar-mobile .navbar-brand img {
        width: 100px;
    }
    
    section.section {
        text-align: center;
    }

    h1, .h1 {
        font-size: 42px;
        line-height: 1.25em;
    }
    h2, .h2 {
        font-size: 36px;
        line-height: 1.25em;
    }
    h3, .h3 {
        font-size: 22px;
        line-height: 1.25em;
    }
    h4, .h4 {
        font-size: 20px;
    }
    h5, .h5 {
        font-size: 18px;
    }
    h6, .h6 {
        font-size: 18px;
    }

    .font-large {
        font-size: 18px;
    }

    .sg_box {
        padding: 25px;
    }

    .sg_bb-cta > img {
        margin: 0 auto;
    }
    
    .sg-info_icons {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .sg-info_icons:before {
        width: 0;
        height: 95%;
        border-right: 3px dashed var(--sg-color-primary);
        border-bottom: 0;
        margin: 0 auto;
    }
    .sg-info_icons > .item {
        width: auto;
        padding: 15px;
        margin-bottom: 50px;
    }
    .sg-info_icons > .item:last-child {
        margin-bottom: 0;
    }
    .sg-info_icons > .item > em {
        font-size: 70px;
    }
    .sg-info_icons > .item > h5 {
        font-size: 20px;
    }

    .sg-card_icons {
        margin: 0;
    }
    .sg-card_icons > .sg-card_icon {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 15px 0;
    }

    .v-spacer {
        height: 50px;
    }

}