﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #303030;
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    outline: none;
}

h1 {
    font-size: 30px;
    line-height: normal;
    color: #000;
    font-weight: 600;
}

h2 {
    font-size: 24px;
    line-height: normal;
    color: #000;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

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

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

.text-yellow {
    color: #fecf17;
}

.bg-yellow {
    background-color: #fecf17;
}

.bg-yellow-light {
    background-color: #fcf1c5;
}

.bg-black {
    background-color: #303030;
}

.btn-yellow,
.btn-yellow:hover,
.btn-yellow:focus {
    background-color: #fecf17;
}

.btn-orange,
.btn-orange:hover,
.btn-orange:focus {
    background-color: #ff7301;
}

.large-button {
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    padding: 11px 28px;
    min-height: 60px;
}

.stripe {
    background-color: #f7f7fa;
}

.tick-list li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.tick-list li {
    margin-bottom: 15px;
    margin-left: 30px;
}

.tick-list li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    float: left;
    margin-left: -30px;
}

.inner-header {
    background-color: #fcf1c5;
}

.inner-header a {
    color: #000;
    text-decoration: none;
}

.inner-content ul,
.inner-content ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.inner-content ul li {
    margin-bottom: 10px;
    margin-left: 25px;
}

.inner-content ul li:last-child {
    margin-bottom: 0;
}

.inner-content ul li:before {
    content: '\f138';
    font-family: 'FontAwesome';
    color: #fecf17;
    float: left;
    margin-left: -25px;
}

.inner-content h2 {
    position: relative;
    display: flex;
    /*align-items: center;*/
    padding-left: 15px;
}

.inner-content h2::before {
    width: 5px;
    height: 29px;
    content: '';
    background-color: #fecf17;
    position: absolute;
    left: 0;
	top: 4px;
}

.inner-content h5 {
    font-size: 18px;
    line-height: normal;
    color: #000;
    margin: 0 0 15px 0;
}

.blog-post h2,
.video-post h2,
.webinar h2 {
    font-size: 18px;
    line-height: normal;
}

.blog-post a,
.video-post a,
.webinar a {
    text-decoration: none;
}

.sidebar-widget ul {
    padding-left: 0;
}

.sidebar-widget ul li {
    padding-left: 16px;
    position: relative;
    line-height: 32px;
    list-style: none;
}

.sidebar-widget ul li:before {
    content: "\f105";
    font-family: 'FontAwesome';
    color: #000;
    position: absolute;
    left: 0;
}

.sidebar-widget li a {
    text-decoration: none;
    color: #303030;
}

.sidebar-widget li a:hover,
.sidebar-widget li a:focus {
    color: #000;
}

.sidebar-widget h2 {
    position: relative;
    font-size: 20px;
}

.sidebar-widget h2::before {
    content: "";
    height: 2px;
    width: 100%;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #eee;
}

.sidebar-widget h2::after {
    content: "";
    height: 2px;
    width: 50px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #fecf17;
}

.card-tags a {
    background: #fff;
    border: 1px solid #777;
    color: #404040;
    display: inline-block;
    font-size: 14px;
    margin: 8px 5px 0 0;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.card-tags a:hover {
    background-color: #fecf17;
    border: 1px solid #fecf17;
    color: #000;
}

.blog-content strong {
    color: #000;
}

.blog-content img {
    background-color: #fff;
    border: 1px solid #c7c7c7;
    padding: 15px;
    border-radius: 6px;
    margin: 10px 0;
    display: block;
}

.blog-content table {
    width: 100%;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 25px;
    border-collapse: collapse;
    font-size: 16px;
}

.blog-content thead {
    border-bottom: 2px solid #ccc;
}

.blog-content td,
.blog-content th {
    border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    padding: 10px;
}

.blog-content tbody tr:nth-child(odd) {
    background-color: #f0f0f0;
}

.blog-share ul li:not(:last-child) {
    margin-right: 15px;
}

.blog-share ul li a {
    color: #666;
}

.blog-share ul li a:hover {
    color: #000;
}

.error-card h2 {
    font-size: 100px;
    line-height: normal;
}

.widget-form .card {
    border: 12px solid #ddd;
}

.widget-form .form-header p {
    margin-bottom: 0;
}

.widget-form .form-control {
    box-shadow: none;
    border-color: #ddd;
    font-size: 16px;
    min-height: 50px;
}

.widget-form textarea.form-control {
    min-height: 120px;
}

.widget-form [type=submit] {
    min-width: 150px;
}

.widget-contact h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.widget-contact .card p:last-child {
    margin-bottom: 0;
}

.abt-header {
    max-width: 800px;
    width: 100%;
    margin: auto;
    display: flex;
}

.media-row p {
    margin-top: 15px;
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
}

.related-post h2 {
    font-size: 18px;
    line-height: normal;
    margin: 10px 0 0 0;
}

.related-post p {
    margin: 0 0 0 0;
}

.related-post img {
    width: 100%;
}

.webinar .card-body span {
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.webinar .card-body small {
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
}

/*  */
.blog-content .heateor_sss_sharing_container {
    display: flex;
    justify-content: end;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.blog-content .heateor_sss_sharing_title {
    margin-right: 10px;
}

.blog-content .heateor_sss_sharing_title:before {
    content: "\f1e0";
    font-family: 'FontAwesome';
    background-color: #fecf17;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
}

.blog-content h2 {
    font-size: 16px;
    font-weight: bold;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: bold;
}

.blog-content a {
    font-style: italic;
}

.blog-post .card-img-top a,
.video-post .card-img-top a,
.webinar .card-img-top a {
    display: block;
}
.blog-post .card-img-top > a {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    text-decoration: none;
    border: 0;
    padding: 3px 5px;
    margin: 2px;
    color: #303030;
    border-radius: 4px;
}

.wp-pagenavi a,
.wp-pagenavi span:first-child {
    border: 0;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border-color: #000;
}

.wp-pagenavi a,
.wp-pagenavi .page,
.wp-pagenavi span.current {
    border: 1px solid #ddd;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.wp-pagenavi span.current {
    font-weight: bold;
    border: 1px solid #fe8917;
    background-color: #fecf17;
}

.wp-pagenavi {
    text-align: right;
}

.blog-content figure.aligncenter {
    margin-left: 0;
}

.blog-content figure {
    max-width: 100%;
}

.blog-details .main-image img {
    width: 100%;
}

/*  */

.focus-card p {
    margin-bottom: 0;
}

.focus-card img {
    width: 60px;
    margin: 0 auto 25px auto;
}

/*  */
.journey-slider .carousel-indicators {
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    position: relative;
}
.journey-slider .year {
    position: relative;
    text-indent: 0;
    text-align: center;
    width: max-content;
    height: auto;
    margin-right: 20px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    z-index: 1;
    opacity: 1;
}
.journey-slider .year:after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    position: absolute;
    background-color: #fff;
    border: 1px solid #303030;
}
.journey-slider .year span {
    margin-top: 20px;
}
.journey-slider .carousel-indicators:after {
    content:'';
    border-top:1px dashed #303030;
    position:absolute;
    width:100%;
    top: 15px;
}
.journey-slider .carousel-indicators [data-bs-target] {
    background-color: transparent;
}
.journey-slider .carousel-indicators .active::after  {
    background-color: #fecf17;
}
.journey-slider .carousel-item {
    height: auto;
}
.journey-slider .carousel-btns {
    position: relative;
    z-index: 3;
}
.journey-slider .carousel-control-next, 
.journey-slider .carousel-control-prev {
    height: 40px;
    width: 40px;
    top: auto;
    background-color: #fecf17;
    opacity: 1;
    border-radius: 50%;
}

.journey-slider .carousel-control-next-icon, 
.journey-slider .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
}

.journey-slider .carousel-caption {
    top: 0;
    position: static;
}
.journey-slider .carousel-inner {
    cursor: grab;
}
.j-box {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    padding: 16px;
    position: relative;
	min-height: 200px;
}
.j-box h5 {
    display: inline-block;
    font-weight: bolder;
    font-size: 60px;
    color: #555;
    padding: 5px 10px;
}
/* landing */
.banner-content h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
}
.why-carousel h3 {
    font-size: 100px;
    line-height: 100px;
    color: rgba(18, 18, 18, 0.1);
    font-weight: 700;
    margin-bottom: 15px;
}
.col-slider {
    position: relative;
}
.arw {
    position: absolute;
    bottom: -50px;
    text-align: center;
}
.arw-l {
    right: 50%;
}
.arw-r {
    left: 50%;
}
.features {
    display: inline-block;
    text-align: left;
}

.features img {
    width: 80px;
    margin-right: 15px;
}

.features li {
    margin-bottom: 15px;
}
.years {
    position: relative;
    font-family: 'Anton', sans-serif;
    display: inline-block;
}

.years span {
    font-size: 80px;
    position: absolute;
    left: 60px;
    top: 12px;
}

.highlight-review-card {
    background-color: #2f3032;
    color: #fff;
}

.highlight-review {
    width: 90%;
    padding: 15px 20px;
    font-size: 20px;
    letter-spacing: -.025rem;
    margin: -90px auto 30px auto;
}
.awards li {
    width: 50%;
}
.breadcrumb {
    overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
    flex-wrap: nowrap;
}
.breadcrumb li:not(:first-child) {
    display: inline;
    overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
    flex-wrap: nowrap;
}
.breadcrumb li:not(:first-child):hover {    
    white-space: normal;
}
.category-case-study .main-image img {
    width:auto;
}
.category-webinar img.wp-post-image {
	display:none;
}
.category-webinar .wp-block-embed iframe {
	width:100%;
}
.calendly-form input[type=submit] {
	margin-top:15px;
}
.modal .widget-form .form-header {
	display:none;
}
/*  */
@media (max-width: 1023px) {
    .journey-slider .year span {
        display: none;
    }
    .journey-slider .year {
        width: 18px;
        height: auto;
        margin-right: 0;
        margin-left: 0;
    }
    .journey-slider .carousel-indicators:after {
        display: none;
    }
}
@media (max-width: 991px) {
    .journey-slider .carousel-control-next, 
    .journey-slider .carousel-control-prev {
        position: relative;
    }   
}
@media (max-width: 500px) {
    .recaptcha iframe {
        transform:scale(0.77);
        transform-origin:0 0;
        max-width:100%;
    }
}
@media(max-width:480px) {
    /* .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        content: '—';
    } */
    .features {
        width: 90%;
    }
	.j-box h5 {
       font-size: 40px;
   }
}

@media (max-width:800px) and (orientation:landscape) {
    .container {
        max-width: 100%;
    }

    .widget-contact .card {
        width: 48.5%;
    }
}
@media (min-width:576px) {
    .awards {
        flex-wrap: nowrap;
    }
    .journey-slider .carousel-inner {
        width: 80%;
        margin: auto;
    }
    .journey-slider .carousel-caption {
        padding: 30px;
    }
    .arw {
        position: static;
        display: contents;
    }
}

@media (min-width:768px) {
    h1 {
        font-size: 36px;
        line-height: 48px;
    }

    h2 {
        font-size: 25px;
        line-height: 35px;
    }

    h3 {
        font-size: 22px;
        line-height: 30px;
    }

    h4 {
        font-size: 20px;
    }

    .error-card h2 {
        font-size: 200px;
    }

    .widget-contact .card {
        width: 48.5%;
    }
}

@media (min-width:992px) {
    .highlight-review {
        width: 80%;
        padding: 20px 40px;
        font-size: 36px;
        margin: -100px auto 30px auto;
    }
}
@media (min-width:1024px) {
    .journey-slider .carousel-btns {
        top: -48px;
    }
}
@media (min-width:1100px) {
    .year-box {
        display: inline-flex;
        align-items: center;
    }
}
