:root {
    --primary: #0391df;
    --secondary: #fd6a02;
    --accent: #e81500;
    --black: #3a3b3c;

    --font-1: "Open Sans", sans-serif;
    --font-2: "Roboto", sans-serif;

    --transition: all 250ms ease;
    --shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

/* Utilities */
body {
    line-height: normal;
}

.headline {
    font-family: var(--font-1);
    font-size: 52px;
    color: var(--black);
    line-height: normal;
    margin-bottom: 0;
    font-weight: 700;
}

.header1 {
    font-family: var(--font-1);
    font-size: 30px;
    color: var(--black);
    line-height: normal;
    margin-bottom: 0;
    font-weight: 600;
}

.header2 {
    font-family: var(--font-1);
    font-size: 26px;
    color: var(--black);
    line-height: normal;
    margin-bottom: 0;
    font-weight: 600;
}

.header3 {
    font-family: var(--font-1);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    line-height: normal;
    margin-bottom: 0;
}

.body {
    font-family: var(--font-2);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    line-height: normal;
    margin-bottom: 0;
}

.body2 {
    font-family: var(--font-2);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    line-height: normal;
    margin-bottom: 0;
}

.btn.btn-layout {
    padding: 8px 16px;
    border-radius: 5.6px;
    background-color: var(--secondary);
    font: 400 16px var(--font-2);
    color: white;
    transition: var(--transition);
}

.btn.btn-layout:hover {
    filter: brightness(0.8);
}

.color-primary {
    color: var(--primary);
}

.color-accent {
    color: var(--accent);
}

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

#assistanceIcon {
    width: 60px;
    height: 60px;
    background-color: white;
    transition: all 500ms;
    cursor: pointer;
}

.button-whatsapp {
    cursor: default;
}

.fab-container {
    z-index: 100;
    position: fixed;
    bottom: 16px;
    right: 24px;
}

.fab-container img {
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.float-package-container {
    background-color: var(--accent);
    width: 380px;
    height: auto;
    transition: all 1000ms ease;
    position: fixed;
    left: 24px;
    bottom: 16px;
    z-index: 1000;
    padding: 12px;
    border-radius: 8px;
    opacity: 0;
}

.float-package-container.active {
    opacity: 1;
}

.float-package-container.dismiss {
    opacity: 0;
}

.float-package-btn {
    padding: 8px;
    border-radius: 5.6px;
    background-color: var(--secondary);
    font: 400 16px var(--font-2);
    color: white;
    transition: var(--transition);
    background-color: var(--primary);
    display: block;
    width: 100%;
}

.float-package-btn:hover {
    color: white;
    filter: brightness(0.8);
}

.float-package-close {
    position: absolute;
    right: 8px;
    top: 0px;
    color: white;
}

.float-person-close {
    position: absolute;
    right: 8px;
    top: 4px;
}

.float-person-container {
    opacity: 1;
    transition: all 1000ms ease;
    z-index: 99999;
}

.float-person-container.dismiss {
    opacity: 0;
}

.float-person-item {
    position: fixed;
    bottom: -20%;
    left: 50%;
    z-index: 1000;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
    width: fit-content;
    transition: all 1000ms ease;
}

.float-person-item.active {
    bottom: 12px;
}

.float-person-card {
    height: fit-content;
    width: 300px;
}

.float-person-card .card-body {
    padding: 12px;
}

.float-person-name {
    font-family: var(--font-2);
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    line-height: normal;
    margin-bottom: 8px;
}

.float-person-description {
    font-family: var(--font-2);
    font-size: 12px;
    font-weight: 400;
    color: var(--black);
    line-height: normal;
    margin-bottom: 8px;
}

.float-person-time {
    font-family: var(--font-2);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
}

.float-person-profile {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
/* End Utilities */

/* Header */
.header-title {
    font-size: 34px;
}

.header-desc {
    font-size: 20px;
}

header {
    background-color: #0391df;
    padding-bottom: 24px;
}

.navbar {
    padding-top: 16px;
    padding-bottom: 24px;
}

.navbar-nav {
    margin-left: auto;
    padding: 0 !important;
}

.nav-link {
    padding: 0 !important;
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 400 !important;
    font-size: 18px;
    color: #ffffff;
}

.navbar-marketing .navbar-nav .nav-item {
    margin-right: 48px;
}

.header-package {
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin-top: 4px;
}

.header-package-card {
    border-radius: 8px;
    padding: 16px;
    box-shadow: none;
    background-color: white;
    margin-top: 4px;
    width: 95%;
}

.header-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* Header */

/* Clients */
#clients {
    margin-top: 48px;
    padding: 0 8px;
}

.clients-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.clients-item {
    margin: 32px 24px 0 24px;
}

.clients-carousel .slick-next:before,
.clients-carousel .slick-prev:before {
    color: var(--secondary);
}

.clients-carousel .slick-slide {
    opacity: 0.5;
    transition: var(--transition);
}

.clients-carousel .slick-center {
    opacity: 1;
}
/* End Clients */

/* Solutions */
#solutions {
    margin-top: 48px;
    padding: 48px 0;
    background: rgba(3, 145, 223, 0.03);
}

.solution-gutter {
    margin-left: -8px;
    margin-right: -8px;
}

.solution-gutter > [class^="col-"],
.solution-gutter > [class^=" col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.solution-spacing {
    padding: 0 8px;
}

.solution-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    border: 4px solid var(--secondary);
    box-shadow: var(--shadow);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    text-decoration: none;
}

.solution-img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-content {
    position: absolute;
    bottom: 0;
    padding: 8px;
}

.solution-content-container {
    background-color: #fd6a02;
    padding: 4px 8px;
    border-radius: 4px;
}

.solution-divider {
    border-color: #b7b7b7;
    margin-top: 24px;
    margin-bottom: 48px;
}

.solution-table-container {
    box-shadow: var(--shadow);
    border-radius: 8px;
    border: 1px solid var(--black);
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    background-color: white;
}

.solution-table-left-column {
    width: 75%;
}

.solution-table-right-column {
    width: 25%;
}

.solution-table-header {
    border-bottom: 1px solid var(--black);
    padding: 8px 16px;
}

.solution-table-item {
    border-bottom: 1px solid var(--black);
    padding: 8px 16px;
    height: 39px;
}

.solution-table-item:last-of-type {
    border-bottom: 0;
}

.solution-table-right-column .fa-times {
    color: var(--accent);
    font-size: 24px;
}

.solution-table-center {
    border-radius: 8px;
    border: 3px solid var(--secondary);
    filter: drop-shadow(0px 3px 11px rgba(0, 0, 0, 0.39));
    position: absolute;
    background-color: white;
    left: 52%;
    top: -8px;
    transform: scale(1.06);
}

.solution-table-center .solution-table-header,
.solution-table-center .solution-table-item {
    border-bottom: 3px solid var(--secondary);
}

.solution-table-center .solution-table-item:last-child {
    border-bottom: 0;
}

.solution-table-center .fa-check {
    color: var(--secondary);
    font-size: 24px;
}
/* End Solutions */

/* advantage */
#advantage {
    margin-top: 48px;
}

.advantage-spacing {
    padding: 0 16px;
}

.advantage-pills .nav-link {
    padding: 16px 8px !important;
    margin-bottom: 16px !important;
    background-color: white;
    border-radius: 8px;
    text-align: left;
    border: 0;
}

.advantage-pills .nav-link:last-child {
    margin-bottom: 0;
}

.advantage-pills .nav-link.active {
    background-color: white;
    background: rgba(3, 145, 223, 0.25);
}

.advantage-content-container {
    background: rgba(3, 145, 223, 0.25);
    border-radius: 8px;
    padding: 24px;
}

.advantage-content-container.team {
    padding-left: 0;
    padding-right: 0;
}

.advantage-content-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid white;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.advantage-team-img {
    margin-bottom: 8px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    border: 4px solid white;
    width: 300px;
    object-position: top;
    height: 260px;
    object-fit: cover;
    background-color: rgb(235, 235, 235);
}

.advantage-team-graduate {
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #000000;
}

.advantage-team-item {
    margin-left: 4px;
    margin-right: 4px;
}

.advantage-team-carousel .slick-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 600ms ease;
}

.advantage-content-container .slick-slide.slick-center {
    opacity: 1;
    transform: scale(1);
}

#advantage-team-prev-btn,
#advantage-team-next-btn {
    color: var(--secondary);
}

/* bootstrap hack: fix content width inside hidden tabs */
.tab-content > .tab-pane,
.pill-content > .pill-pane {
    display: block; /* undo display:none          */
    height: 0; /* height:0 is also invisible */
    overflow-y: clip; /* no-overflow                */
}
.tab-content > .active,
.pill-content > .active {
    height: auto; /* let the content decide it  */
} /* bootstrap hack end */
/* End advantage */

/* pricing */
.pricing-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 10%);
    border: 2px solid transparent;
    text-align: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border: 2px solid #0391df;
}

.pricing-card .card-header {
    border: none;
}

.pricing-card .card-header {
    background: linear-gradient(to right, #0391df, #19abfc);
    margin: 10px;
    border-radius: 4px;
}

.pricing-card .card-header h4 {
    margin: auto;
    color: #fff;
}

.pricing-card .card-body {
    padding-left: 16px;
    padding-right: 16px;
    text-align: left;
}

.pricing-card .card-body .check-container {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.pricing-card .card-body .check-container .check {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.pricing-card .card-body h3 {
    color: #fd6a02;
    font-size: 28px;
    font-weight: 700;
}

.pricing-card .card-body p {
    color: #666;
}

.pricing-card .card-body .btn-layout {
    border: 1px solid #ffab09;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #ffab09;
    transition: all 0.2s ease;
    margin-top: 8px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .card-body .btn-layout:hover {
    background-color: #ffab09;
    color: #fff;
    filter: brightness(1);
}
/* end pricing */

/* Package */
#package {
    margin-top: 48px;
}

.package-spacing {
    padding: 0 16px;
}

.package-card {
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    background: url(../../../assets/img/sales/landing-page/package-background.jpg)
        no-repeat top right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.package-card .card-body {
    padding: 16px;
}

.package-name {
    padding: 4px 8px;
    border-radius: 4px;
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 400;
    color: white;
    display: block;
    margin-bottom: 32px;
    width: fit-content;
}

.package-price {
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 600;
    margin-bottom: 24px;
}

.package-btn {
    width: 100%;
    display: block;
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    padding: 8px;
    border-radius: 5.6px;
    transition: var(--transition);
    margin-bottom: 24px;
}

.package-benefit-label {
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 700;
    margin-bottom: 16px;
}

.package-btn:hover {
    color: #fff;
    filter: brightness(0.8);
}

.package-benefit-item {
    margin-bottom: 12px;
}

.package-benefit-item:last-of-type {
    margin-bottom: 0;
}

.package-benefit-item > .fa-check {
    font-size: 16px;
    margin-right: 8px;
}

.package-benefit-item .media-body > p {
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 400;
    color: #3a3b3c;
    margin-bottom: 0;
}

.black .package-benefit-item > .fa-check {
    color: var(--primary);
}

.black .package-benefit-item .media-body > p {
    font-size: 14px;
}

.black .package-benefit-label {
    font-size: 16px;
    color: #3a3b3c;
}

.black .package-name {
    background-color: #3a3b3c;
    font-size: 14px;
}

.black .package-price {
    color: #3a3b3c;
    font-size: 24px;
}

.black .package-btn {
    background-color: var(--primary);
    border-color: var(--primary);
}

.steel .package-benefit-item > .fa-check {
    color: #a2a2a2;
}

.steel .package-benefit-item .media-body > p {
    font-size: 14px;
}

.steel .package-benefit-label {
    font-size: 16px;
    color: #a2a2a2;
}

.steel .package-name {
    background-color: #a2a2a2;
    font-size: 14px;
}

.steel .package-price {
    color: #a2a2a2;
    font-size: 24px;
}

.steel .package-btn {
    background-color: #a2a2a2;
    border-color: #a2a2a2;
}

.orange .package-benefit-item > .fa-check {
    color: var(--secondary);
}

.orange .package-benefit-item .media-body > p {
    font-size: 14px;
}

.orange .package-benefit-label {
    font-size: 16px;
    color: var(--secondary);
}

.orange .package-name {
    background-color: var(--secondary);
    font-size: 14px;
}

.orange .package-price {
    color: var(--secondary);
    font-size: 24px;
}

.orange .package-btn {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.silver .package-benefit-item > .fa-check {
    color: #2d3033;
}

.silver .package-benefit-item .media-body > p {
    font-size: 14px;
}

.silver .package-benefit-label {
    font-size: 16px;
    color: #2d3033;
}

.silver .package-name {
    background-color: #2d3033;
    font-size: 14px;
}

.silver .package-price {
    color: #2d3033;
    font-size: 24px;
}

.silver .package-btn {
    background-color: #2d3033;
    border-color: #2d3033;
}

.gold .package-benefit-item > .fa-check {
    color: #edca03;
}

.gold .package-benefit-item .media-body > p {
    font-size: 14px;
}

.gold .package-benefit-label {
    font-size: 16px;
    color: #edca03;
}

.gold .package-name {
    background-color: #edca03;
    font-size: 14px;
}

.gold .package-price {
    color: #edca03;
    font-size: 24px;
}

.gold .package-btn {
    background-color: #edca03;
    border-color: #edca03;
}

.platinum .package-benefit-item > .fa-check {
    color: #373d65;
}

.platinum .package-benefit-item .media-body > p {
    font-size: 16px;
}

.platinum .package-benefit-label {
    font-size: 18px;
    color: #373d65;
}

.platinum .package-name {
    background-color: #373d65;
    font-size: 16px;
}

.platinum .package-price {
    color: #373d65;
    font-size: 36px;
}

.platinum .package-btn {
    background-color: #373d65;
    border-color: #373d65;
}

.diamond .package-benefit-item > .fa-check {
    color: #0006ff;
}

.diamond .package-benefit-item .media-body > p {
    font-size: 16px;
}

.diamond .package-benefit-label {
    font-size: 18px;
    color: #0006ff;
}

.diamond .package-name {
    background-color: #0006ff;
    font-size: 16px;
}

.diamond .package-price {
    color: #0006ff;
    font-size: 36px;
}

.diamond .package-btn {
    background-color: #0006ff;
    border-color: #0006ff;
}

.package-vector {
    position: absolute;
    top: 0;
    right: 0;
    /* z-index: 1; */
}

.package-card-content {
    z-index: 2;
}

.package-small {
    font-family: var(--font-2);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    text-decoration: line-through;
}

.package-gutter {
    margin-left: -12px;
    margin-right: -12px;
}

.package-gutter > [class^="col-"],
.package-gutter > [class^=" col-"] {
    padding-left: 12px;
    padding-right: 12px;
}
/* End Package */

/* Testimony Video */
#testimonyVideo {
    margin-top: 48px;
}

.testimony-video-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: left top;
}

.testimony-video-button {
    font-family: "Open Sans", sans-serif !important;
    background: var(--primary) !important;
    border: 1px solid var(--primary);
    color: #ffffff !important;
}

.testimony-video-spacing {
    padding: 0 24px;
}

.testimony-video-name {
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 0;
}

.testimony-video-carousel .slick-dots li button:before {
    color: var(--secondary);
    font-size: 16px;
    opacity: 0.25;
}

.testimony-video-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary) !important;
}
/* End Testimony Video */

/* Testimony Whatsapp */
.testimony-whatsapp-spacing {
    padding: 0 24px;
}

.testimony-whatsapp-image {
    width: 100%;
    object-fit: cover;
}

#testimonyWhatsapp {
    margin-top: 48px;
}

.testimony-whatsapp-carousel .slick-dots li button:before {
    color: var(--secondary);
    font-size: 16px;
    opacity: 0.25;
}

.testimony-whatsapp-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary) !important;
}
/* End Testimony Whatsapp */

/* Have Website */
#haveWebsite {
    margin-top: 48px;
    padding: 80px 0;
    background: url(../../../assets/img/sales/landing-page/hawe-bg.jpg)
        no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.hawe-container {
    padding: 0 24px;
}

.hawe-btn {
    background: #e81500;
    border-radius: 5.6px;
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff !important;
    padding: 8px 16px;
    transition: var(--transition);
}

.hawe-btn:hover {
    filter: brightness(0.8);
}

#haveWebsiteModal .modal-header {
    border-bottom: 0;
}

#haveWebsiteModal .card {
    background: url(../../../assets/img/sales/landing-page/package-background.jpg)
        no-repeat top right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: contain;
    background-color: white;
}

#haveWebsiteModal .card-header {
    background-color: transparent;
    border-bottom: 1px solid #c4c4c4;
}

#haveWebsiteModal .card-footer {
    background-color: transparent;
    border-top: 1px solid #c4c4c4;
}

#haveWebsiteModal .btn {
    width: 100%;
    display: block;
    font-family: var(--font-1);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    padding: 8px;
    border-radius: 5.6px;
    transition: var(--transition);
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}

#haveWebsiteModal .btn:hover {
    filter: brightness(0.8);
}
/* End Have Website */

/* Buy Template */
#buyTemplate {
    padding: 48px 0;
    background: rgba(3, 145, 223, 0.02);
}

.buy-template-spacing {
    padding: 0 24px;
}

.buy-template-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 4px solid white;
    object-fit: cover;
}

.buy-template-btn {
    background: #e81500;
    border-radius: 5.6px;
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    color: #ffffff;
    padding: 8px 16px;
    display: block;
    margin: 0 auto;
    transition: var(--transition);
}

.buy-template-btn:hover {
    color: white;
    filter: brightness(0.8);
}
/* End Buy Template */

/* Footer */
footer {
    padding: 16px 0;
    background-color: #f8f9f9;
}
.footer-spacing {
    padding: 0 32px;
}

.footer .fa {
    font-size: 24px;
}

.footer-copyright {
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #3a3b3c;
    display: block;
    text-align: center;
}
/* End Footer */

@media (max-width: 767.98px) {
    /* Utilities */
    .headline {
        font-size: 24px;
    }

    .header1 {
        font-size: 20px;
    }

    .header2 {
        font-size: 18px;
    }

    .header3 {
        font-size: 16px;
    }

    .body {
        font-size: 14px;
    }
    /* End Utilities */

    /* Navbar */
    .navbar-nav {
        margin-top: 24px;
    }

    .nav-link {
        padding: 8px 16px !important;
    }
    /* End Navbar */

    /* Advantage */
    .mobile-advantage {
        background: rgba(3, 145, 223, 0.25);
    }
    /* End Advantage */

    /* Header */
    .header-img {
        width: 100%;
        height: auto;
    }
    /* End Header */

    /* Clients */
    .clients-img {
        width: 100px;
    }

    .advantage-team-img {
        width: 30vh;
    }
    /* End Clients */

    /* Testimony Video */
    .testimony-video-image {
        height: 200px;
    }
    /* End Testimony Video */

    /* Buy template */
    .buy-template-img {
        height: 240px;
        margin-bottom: 24px;
    }
    /* End Buy template */

    .fab-container {
        bottom: 3%;
        right: 2px;
        transition: all 1200ms ease;
    }

    .fab-container.dismiss {
        bottom: 1%;
    }

    .float-package-container {
        width: 95%;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        bottom: 8px;
    }

    .advantage-team-carousel .slick-slide {
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    #layoutDefault,
    #layoutDefault_footer {
        overflow-x: hidden !important;
    }

    /* Solution */
    .solution-divider {
        margin-bottom: 24px;
    }

    .mobile-solution-table {
        background-color: white;
        border-radius: 8px;
    }

    .mobile-solution-table .check {
        background-color: var(--secondary);
        text-align: center;
        color: white;
    }

    .mobile-solution-table .minus {
        color: var(--accent);
        text-align: center;
    }

    .mobile-solution-table th,
    .mobile-solution-table td {
        border-color: var(--black);
    }
    /* End Solution */
}
