.editorial-guidelines-h2 {
    margin: 25px 0 15px 0;
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
}
.editorial-guidelines-p {
    font-size: 16px;
    line-height: 22px;
}
.contact-form {
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    width: calc(100% - 42px);
    max-width: 600px;
    margin: 20px auto;
    border-radius: 9px;
    position: relative;
    overflow: hidden;
}
.contact-form-success {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: white;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeoutcheckmark 3s forwards;
}
@keyframes fadeoutcheckmark {
    0% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
        visibility: hidden;
    }
}
.contact-form-success p {
    color: var(--primary-text);
    font-size: 23px;
    margin-top: 30px;
    line-height: 30px;
}
.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position:relative;
    top: 5px;
    right: 5px;
   margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
 
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}
.contact-form h2 {
    color: var(--primary-text);
    font-size: 25px;
    margin-bottom: 20px;
}
.contact-form h2>span {
    color: var(--secondary-color);
}
.contact-form-flex {
    display: flex;
    gap: 15px;
}
#contactmessage {
    color: var(--red);
    margin: 10px 0;
}
.contact-form-input, .contact-form-textarea {
    padding: 10px 12px;
    background: var(--primary-background);
    font-family: var(--primary-font);
    color: var(--primary-text);
    font-size: 16px;
    outline: none;
    width: 100%;
    border: 0;
    border-radius: 5px;
    width: calc(100% - 24px);
}
.contact-form-textarea {
    resize: vertical;
    max-height: 300px;
    min-height: 120px;
    margin-top: 15px;
    margin-bottom: 0;
}
.contact-form button {
    padding: 10px 15px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    background: var(--secondary-color);
    border: 0;
    outline: 0;
    border-radius: 9px;
    cursor: pointer;
}
.contact-faq {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 80px;
}
.contact-faq-item {
    
}
.contact-faq-item h2 {
    font-size: 25px;
    color: var(--primary-text);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 30px;
}
.contact-faq-item p {
    line-height: 25px;
    color: var(--primary-text);
}
.trustpage-p, .about-flexbox ol li {
    font-size: 18px;
    line-height: 25px;
    color: var(--primary-text);
}
.trustpage-learn-more {
    padding: 12px;
    position: relative;
    border-radius: 9px;
    transition: 0.3s ease;
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 40px;
    text-decoration: none;
    width: fit-content;
    left: 0;
}
.trustpage-learn-more:hover {
    transition: 0.3s ease;
    background: var(--primary-background-rgba);
    left: 3px;
}
.trustpage-learn-more i {
    font-size: 18px;
    margin-right: 3px;
}
/* index page css start */
.index-header-wrapper {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
}
.index-banner-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
}
.index-banner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
}
.index-banner h1 {
  font-size: 55px;
  text-align: center;
  line-height: 70px;
  margin-bottom: 20px;
}
.index-banner-header-p {
  font-size: 12px;
  margin-top: 15px;
  font-weight: 400;
  color: var(--secondary-text);
}
.index-search-bar {
  display: flex;
  align-items: center;
}
.index-search-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--secondary-text);
    border-radius: 100px;
    padding: 2px;
    transition: 0.3s all ease;
    background: white;
    position: relative;
}
.index-search-bar input {
    padding: 10px 12px;
    width: 220px;
    border: none;
    outline: none;
    transition: 0.4s all ease;
    flex-grow: 1;
    border-radius: 100px;
  }
.index-search-bar i {
    font-size: 22px;
    color: var(--secondary-text);
    margin-right: 8px;
    cursor: pointer;
    transition: 0.3s all ease;
}
.index-search-bar:focus-within input {
    width: 240px;
}
.index-search-bar:focus-within #results {
    visibility: visible;
    display: flex;
    flex-direction: column;
    z-index:10;
}
.index-search-bar:focus-within i {
    color: var(--secondary-color);
}
.index-search-bar:focus-within {
  border: 1px solid var(--secondary-color)
}
.index-search-bar:hover input {
    width: 240px;
}
.index-banner-sp {
    height: 200px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: center;
}
.index-banner-sp-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
}
.gradient-left {
    left: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
.gradient-right {
    right: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
.logo-slider-container {
  width: auto;
  overflow-x: auto;
  white-space: nowrap;
}

.logo-slider {
  display: flex;
  flex-wrap: nowrap;
  animation: slide 50s linear infinite;
}

.logo-slider img {
  height: 40px;
  margin: 0 30px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  opacity: 0.5;
}

.logo-slider img:hover {
    filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  opacity: 1;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media screen and (min-width: 900px) {
    .index-banner-sp-gradient {
        width: 150px;
    }
}
.index-coupons {
    display: grid;
    grid-template-columns: auto;
    gap: 25px;
    margin-top: 40px;
}
.index-coupons-item-img {
    width: 85px;
    height: 85px;
    padding-right: 15px;
}
@media screen and (min-width: 1300px) {
    .index-coupons {
    grid-template-columns: auto auto;
    gap: 30px;
}
}
/* index page css end */
/* about us page start */
.about-h1 {
    font-size: 40px;
    color: #6f6f6f;
    font-weight: 500;
    margin-bottom: 50px;
}
.about-h1 span {
    color: var(--secondary-color);
}
.about-flexbox {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 50px;
    margin: 50px auto 0 auto;
}
.about-flexbox-content {
    
}
.about-flexbox ol {
    margin: 10px 0;
     list-style-position: inside;
 }
.about-h2, .about-team-h2 {
    font-size: 50px;
    color: var(--primary-text);
    font-weight: 500;
}
.about-team-h2 {
    text-align: center;
}
.about-stats {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px auto;
}
.about-stats-item {
    padding: 30px;
    border-radius: 9px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 10px;
    min-width: 150px;
}
.about-stats-item-title {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.about-stats-item-description {
    font-size: 20px;
    color: var(--secondary-text);
    text-align: center;
}
.about-stats {
    margin: 100px auto;
}
.about-team {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.about-team-item {
    padding: 20px;
    border-radius: 9px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    max-width: 350px;
    text-decoration: none;
}
.about-team-item-img {
    max-height: 100px;
    margin: 0 auto;
    border-radius: 9px;
}
.about-team-item h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 15px auto;
    color: var(--primary-text);
}
.about-team-item-tag {
    font-size: 12px;
    color: var(--primary-text);
    background: var(--primary-background);
    border-radius: 3px;
    padding: 7px 10px;
    margin-bottom: 20px;
}
.about-team-item-description {
    font-size: 16px;
    line-height: 25px;
    color: var(--primary-text);
}
.about-team-anchor {
    margin-top: 20px;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background: var(--primary-background);
    color: var(--primary-text);
    text-decoration: none;
    border-radius: 5px;
}
.contact-notice {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: var(--primary-background-rgba);
    border-radius: 9px;
    margin-top: 100px;
}
.contact-notice-head {
    display: flex;
    flex-direction: column;
}
.contact-notice-head-title {
   font-size: 25px;
   font-weight: 600;
   margin-bottom: 12px;
   color: var(--secondary-color);
}
.contact-notice-head-description {
    font-size: 16px;
    color: var(--primary-text);
    line-height: 20px;
}
.contact-notice-btn {
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 20px;
    color: white;
    font-weight: 600;
    background: var(--secondary-color-hover);
    border-radius: 9px;
    white-space: nowrap;
    margin-top: 20px;
}
@media screen and (min-width: 500px) {
    .about-h1 {
        font-size: 60px;
    }
    .contact-notice {
        flex-direction: row;
    align-items: center;
    justify-content: space-between;;
    }
    .contact-notice-btn {
        margin: 0 0 0 15px;
    }
}
@media screen and (min-width: 800px) {
    .about-flexbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
}
.author-content {
    grid-template-columns: 1fr 1fr!important;
}
}
/* about us page end */
/* author page start */
.author-wrap {
    width: calc(100% - 60px);
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 9px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.author-img {
    width: 110px;
    height: 110px;
    border-radius: 9px;
}
.author-name {
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0;
}
.author-hr {
    width: 100%;
    height: 1px;
    background: var(--border);
}
.author-content {
    width: 100%;
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
}
.author-content-item {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.author-description {
    line-height: 25px;
    font-size: 16px;
    margin-top: 20px;
}
.author-content-item h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-text);
}
.author-content-codes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.author-stats {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: wrap;
}
.author-stats-item {
    padding: 20px;
    border-radius: 9px;
    background: var(--primary-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: fit-content;
    justify-content: center;
}
.author-stats-item-heading {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px
}
.author-stats-item-description {
    font-size: 20px;
    color: var(--secondary-text);
    text-align: center;
    line-height: 24px;
}
.blog-articles-snippet {
    gap: 20px;
}
.blog-article-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    border-radius: 9px;
    background: var(--primary-background);
    height: fit-content;
}
.blog-article-item h3 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}
.blog-article-item h3 a {
    color: var(--primary-font);
    text-decoration: none;
}
.blog-article-item h3 a:hover {
    text-decoration: underline;
}
.blog-article-item h4 {
    color: var(--tertiary-text);
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    font-weight: 400;
}
.blog-article-item-link {
    text-decoration: none;
    color: var(--primary-text);
    position: relative;
    transition: 0.3s all ease;
    left: 0;
}
.blog-article-item-link i {
    font-size: 15px;
    margin-right: 4px;
    color: var(--secondary-color);
}
.blog-article-item-link:hover {
    left: 3px;
    transition: 0.3s all ease;
}
/* author page end */
.fourofour {
    height: calc(100vh - 256px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}
.fourofour h1 {
    font-size: 70px;
    margin-bottom: 20px;
}
.fourofour p {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 30px;
}
.fourofour a {
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    border-radius: 9px;
    width: fit-content;
    text-decoration: none;
    margin-bottom: 130px;
}
.fourofour a>i {
    margin-right: 5px;
}
@media screen and (max-width: 590px) {
    .contact-faq {
    grid-template-columns: 1fr!important;
}
}
@media screen and (min-width: 591px) and (max-width: 780px) {
    .contact-faq {
    grid-template-columns: 1fr 1fr!important;
}
}