/* style-2.css */
/* ======= Base ======= */
body {
    font-family: 'Lato', arial, sans-serif;
    color: #4d4d4d;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #343a40;
}

a {
    color: #607026;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    text-decoration: none !important;
}

a:hover {
    text-decoration: underline;
    color: #3f4a19;
}

.btn,
a.btn {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    font-family: 'Montserrat', arial, sans-serif;
    padding: 8px 16px;
    font-weight: bold;
}

.btn .fa,
a.btn .fa {
    margin-right: 5px;
}

.btn:focus,
a.btn:focus {
    color: #fff;
}

a.btn-cta-primary,
.btn-cta-primary {
    background: #607026;
    border: 1px solid #607026;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

a.btn-cta-primary:hover,
.btn-cta-primary:hover {
    background: #4f5d20;
    border: 1px solid #4f5d20;
    color: #fff;
}

a.btn-cta-secondary,
.btn-cta-secondary {
    background: #3679e7;
    /* border: 1px solid #bf225a; */
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

a.btn-cta-secondary:hover,
.btn-cta-secondary:hover {
    background: #a91e50;
    border: 1px solid #a91e50;
    color: #fff;
}

.text-highlight {
    color: #607026;
}

pre code {
    font-size: 16px;
}

ul {
    margin-top: 24px;
}

/* ======= Promo Section ======= */
.promo {
    /* background: #1e47b3;*/
    background: #ffffff;
    color: #fff;
    padding-top: 130px;
}

.promo .title {
    font-size: clamp(16px,10vw,56px);
    color: #343a40;
    margin-top: 0;
}

.promo .title .highlight {
    color: #212930;
}

.promo .intro {
    font-size: clamp(16px,5vw,18px);
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    color: #6c7d8f;
    text-align:left;
    line-height: 200%;
    text-indent: 40px;
}

.promo .btns {
    padding: 20px 0;
}

.promo .btns .btn {
    margin-right: 15px;
    font-size: 18px;
    padding: 8px 30px;
}

.promo .banner {
    padding: 50px 0;
}

.promo .meta {
    margin-top: 60px;
    margin-bottom: 30px;
    color: #668CFF;
}

.promo .meta li {
    margin-right: 15px;
}

.promo .meta a {
    color: #668CFF;
}

.promo .meta a:hover {
    color: #607026;
}

.promo .social-media {
    /* background: #1e47b3; */
    padding: 10px 0;
    margin: 0 auto;
}

.promo .social-media li {
    margin-top: 15px;
}

.promo .social-media li.facebook-like {
    margin-top: 0;
    position: relative;
    top: -5px;
}

.main-banner {
    padding: 20px 0;
    text-align: center!important;
}

/* ======= features Section ======= */
.features {
    padding: 50px 0;
    background: #f7f9fb;
}

.features .title {
    margin-top: 0;
    margin-bottom: 25px;
}

.features .intro {
    max-width: 860px;
    margin: 0 auto 30px;
    font-size: 18px;
    text-indent: 40px;
    line-height: 200%;
}

.features .item {
    position: relative;
    margin-bottom: 30px;
}

.features .item .icon-holder {
    position: absolute;
    left: 30px;
    top: 0;
}

.features .item .icon-holder .fa {
    font-size: 24px;
    color: #a91e50;
}

.features .item .content {
    padding-left: 25px;
}

.features .item .content .sub-title {
    margin-left: 20px;
    color: #212930;
    font-size: 20px;
}

.features-list {  
    display: flex;  
    margin-bottom: 20px; 
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid#d9e1ec;
}

.features-title {
    font-size: 24px;
}

.features-name {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;  
    cursor: pointer;  
    display: flex;
    align-items: center;
}

.features-name:hover{
    color: #3679e7;
}  
     
    
.features-name.active {  
    font-size: 18px;
    padding: 10px 20px;  
    cursor: pointer;  
    display: flex;
    align-items: center;
    border-bottom: 2px solid#3679e7;
    color: #3679e7;
}  
    
.features-content {  
    padding: 20px;  
}

.features-info {
    display: flex;
    max-height: 320px;
}

.features-img {
    width: 100%;
    text-align: center;
}

.features-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    box-shadow: 4px 4px 4px #0000000f;
    border: 1px solid #c2e3e7; 
}

.features-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 10px 30px;
    width: 40%;
}

.features-txt p {
    line-height: 200%;
}

.features-btn {
    color: #fff;
    margin-right: 15px;
    background: #3679e7;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
}

.features-btn:hover {
    color: #fff;
    background: #a91e50;
}

/* ======= community Section ======= */
.community {
    padding: 50px 0;
}

.community .title {
    margin-top: 0;
    margin-bottom: 30px;
}

.community .intro {
    max-width: 860px;
    margin: 0 auto;
    font-size: 18px;
    margin-bottom: 45px;
    text-indent: 40px;
    line-height: 200%;
}

.community .explain {
    position: relative;
    margin-bottom: 20px;
}

.community .support-inner {
    max-width: 800px;
    padding: 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    margin: 0 auto;
}

/* .community img {
    height:200px;
    width: 420px;
    border:1px #CCC solid;
} */

.community a {
    color: #607026;
}

.community a:hover {
    color: #3f4a19;
}

.community span {
    color: #343a40;
}

.community .feature-list li {
    margin-bottom: 10px;
    color: #000;
}

.community .feature-list li .fa {
    margin-right: 5px;
    color: #a91e50;
}

.community-more {
    margin: 10px 0;
    text-align: center;
}

.community-btn {
    color: #fff !important;
    background: #3679e7;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
}

.community-btn:hover {
    color: #fff;
    background: #a91e50;
}

.example-name {
    margin: 10px 0;
}

.example-name h3 {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* example list */

/* #AGAW-Selected-Community-Cases {
    overflow: hidden;
} */

.community-examples {
    overflow: hidden; 
    -webkit-mask: linear-gradient(to left,transparent 0%,#000 3%,#000 97%,transparent 100%);
}

.examples-list {  
    display: flex;  
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    width: fit-content;
    animation: scroll 20s linear infinite;
    margin: 20px 0;
}  

.examples-list:hover {  
    animation-play-state: paused;
}  

.examples-list2 {  
    display: flex;  
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    width: fit-content;
    animation: scroll2 20s linear infinite;
    margin: 20px 0;
}  

.examples-list2:hover {  
    animation-play-state: paused;
}  

.community-example {
    background-color: #d7e6f5;
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin: 10px;
    padding: 10px;
    box-shadow: 4px 4px 4px #0000000f;
    border-radius: 10px;
}

.examples-list2 .community-example {
    width: 220px;
}


.community-example img {  
    width: auto;
    height: 150px;
    box-shadow: 4px 4px 4px #0000000f;
    border: 1px solid #c2e3e7;
  }  


@keyframes scroll {  
    0% {  
        transform: translateX(0px);  
    }  
    100% {  
        transform: translateX(-1547px);
    }  
}

@keyframes scroll2 {  
    0% {  
        transform: translateX(-2160px);  /*  宽度/2 */
    }  
    100% {  
        transform: translateX(0px);
    }  
}

/* ======= Support Section ======= */
.support {
    padding: 50px 0;
    background: #f5f5f5;
    padding-bottom: 100px;
}

.support .title {
    margin-top: 0;
    margin-bottom: 50px;
}

.support .support-inner {
    max-width 800px;
    height: 280px;
    background: #fff;
    padding: 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    margin: 0 auto;
    border: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 8px 24px#0000000d;
}

.support h3 a {
    color: #a91e50;
    text-decoration: none;
}

.support .block {
    margin-bottom: 45px;
}

.support .block:last-child {
    margin-bottom: 0px;
}

.float-img {
    position: relative;
    width:100%;
    display: block;
    transition: all 0.3s;
}
    
.float-img:hover {
    box-shadow: 0 5px 10px#0000000f;
    transform: translate(0, -3px); 
}

/* ======= API Section ======= */
.api {
    font-size: 16px;
    padding: 20px 0px;
    margin-top: 100px;
}


/* ======= Responsive Style  ======= */
body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .features-info {
    display: flex;
    flex-direction: column;
  }

  .features-txt {
    width: 100%;
  }

  .features-list {
    display: block;
  }

  .features-img img {
    height: 147px;
    object-fit: contain; 
  }

  footer p {
    line-height: 30px !important;
  }

  .agaw-examples-list {
    justify-content: center;
  }
}

.image-container {  
    position: relative;  
    overflow: hidden;  
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 392px; 
  }  
    
  .image-container img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
    transition: opacity 0.5s ease;  
  }  
    
  .image-overlay {  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 100%;  
    background: rgba(255, 255, 255, 0.5);  
    transition: background-position 0.5s ease;  
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);  
    background-size: 200% 100%;  
    background-position: 100% 0;  
  }  
    
  .image-container:hover .image-overlay {  
    background-position: -100% 0;  
  }  
    
  .image-container:hover img {  
    opacity: 0.5; 
  }

  /* ======= agaw-community Section ======= */

.agaw-community {
    /* padding: 120px 0; */
}

.agaw-community .title {
    margin-top: 0;
    margin-bottom: 30px;
}

.agaw-community .intro {
    max-width: 860px;
    margin: 0 auto;
    font-size: 18px;
    margin-bottom: 20px;
    text-indent: 40px;
    line-height: 200%;
}

.agaw-community .explain {
    position: relative;
    margin-bottom: 20px;
}

.agaw-community .support-inner {
    max-width: 800px;
    padding: 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    margin: 0 auto;
}

.agaw-community img {
    height:200px;
    width: 420px;
    border:1px #CCC solid;
}

.agaw-community a {
    color: #607026;
}

.agaw-community a:hover {
    color: #3f4a19;
}

.agaw-community span {
    color: #343a40;
    font-size: 14px;
}

.agaw-community .feature-list li {
    margin-bottom: 10px;
    color: #000;
}

.agaw-community .feature-list li .fa {
    margin-right: 5px;
    color: #a91e50;
}

.agaw-community-more {
    margin: 10px 0;
    text-align: center;
}

.agaw-community-btn {
    color: #fff !important;
    background: #3679e7;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
}

.agaw-community-btn:hover {
    color: #fff;
    background: #a91e50;
}

.agaw-example-name {
    margin: 10px 0;
}

.agaw-example-name h2 {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* agaw-community-example list */

.agaw-examples-list {  
    display: flex;  
    flex-wrap: wrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    width: fit-content;
    /* margin: 20px auto; */
    margin: 20px;
    /* justify-content: center; */
}  

.agaw-examples-list:hover {  
    animation-play-state: paused;
}  

.agaw-comnunity-box {
    width: 250px;
}

.agaw-community-example {
    background-color: #d7e6f5;
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin: 10px;
    padding: 10px;
    box-shadow: 4px 4px 4px #0000000f;
    border-radius: 10px;
}

.agaw-community-example:hover {
    transform: translate(0, -3px); 
}

.agaw-community-example img {  
    background-color: #fff;
    width: 100%;
    height: auto;
    box-shadow: 4px 4px 4px #0000000f;
    border: 1px solid #c2e3e7;
  }  

/* community nav */

  .article-tabs {  
    display: flex;  
    /* border-bottom: 1px solid #c0c4c9; */
  }  
  
  .article-tab-link-active {  
    color: #3679e7 !important;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 2px solid#3679e7;
  }  

  .article-tab-link {  
    color: #343a40 !important;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
  }  
    
  .article-tab-link:hover {  
    color: #3679e7 !important;
  }  
    
