/* DEFAULTS */

html {
  height: 100%;
}

body {
  background-color: #fff;
  font-family: "Red Hat Display", sans-serif;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 148%;
  overflow-x: hidden;
}

img,
object,
embed {
  max-width: 100%;
}

a:hover,
a:focus,
a:active {
  outline: none !important;
  /* color: #d97421; */
}

strong,
b {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Red Hat Display", sans-serif;
  color: #161616;
  font-weight: bold;
  line-height: 130%;
  margin: 0;
}

h1,
.h1 {
  font-size: 70px;
}

h2,
.h2 {
  font-size: 45px;
  font-weight: 400;
}

h3,
.h3 {
  font-size: 30px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-size: 18px;
}

p {
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}

picture {
  display: flex;
  /* height: auto; */
  height: 100%;
}

button {
  outline: none !important;
  background-color: transparent;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.container {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
  padding: 0 140px;
}

.container-small {
  padding: 0 80px;
}

/* body .container-small .row,
body .container .row{
  padding: 0;
  margin: 0;
} */

@media screen and (min-width: 2000px) {
  .container {
    max-width: 1700px;
  }
}

main {
  display: flex;
  flex-direction: column;
  /* min-height: 100vh; */
  height: 100%;
  transition: padding 0.3s ease;
  overflow: hidden;
}

/* btns */

.btn {
  color: var(--link-color);
  font-size: 14px;
  font-weight: 700;
  padding: 20px 30px;
  line-height: 1;
  border-radius: 30px;
  display: inline-flex;
  text-transform: uppercase;
  border: 2px solid #92e200;
  background-color: transparent;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.btn svg path {
  fill: #fff;
}

.btn:hover,
.btn:active,
.btn:focus-within {
  background-color: #92e200;
}

.btn-primary {
  background: #fff;
  border-color: #92e200;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within {
  background: #92e200;
  border-color: #92e200;
}

/* btns */

.colored {
  color: #92e200;
}

@media only screen and (max-width: 1300px) {
  .container {
    position: relative;
    max-width: 1366px;
    margin: 0 auto;
    width: 100%;
    padding: 0 90px;
  }
}

@media only screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 60px;
  }

  h2,
  .h2 {
    font-size: 36px;
  }

  h3,
  .h3 {
    font-size: 26px;
  }

  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    font-size: 18px;
  }

  .container {
    max-width: 1366px;
    padding: 0 60px;
  }

  .no-move-page {
    overflow: hidden;
  }
}

@media only screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 44px;
  }

  h2,
  .h2 {
    font-size: 26px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    font-size: 16px;
  }
  .p,
  p {
    font-size: 16px;
  }

  .container {
    padding: 0 40px;
  }
}

/* Home blog */
.posts-new {
  background-color: #f0faff;
  padding-bottom: 58px;
  margin-bottom: 80px;
}

.posts-pagination .posts-page-pagination li a {
  color: #000;
  transition: color 0.3s ease-in-out;
}

.posts-pagination .posts-page-pagination li a:hover {
  color: #28a2f0;
}

.posts-new .blog-posts-heading {
  margin-bottom: 56px;
}

.blog-posts-heading h1 {
  color: #00a2f0;
  font-weight: 700;
  line-height: 1.2;
}

.blog-posts-fullContent {
  width: 100%;
  display: flex;
  gap: 30px;
}

.blog-posts-heading {
  margin-bottom: 30px;
}

.posts {
  padding-bottom: 80px;
}

.posts-home-all {
  padding-bottom: 80px;
}

.posts-box-home {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 33.333%;
  gap: 5px;
}

.posts-box-home-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.blog-posts .posts .post-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.new-single-post {
  display: flex;
  gap: 16px;
}

figure {
  margin: 0 auto 1rem auto;
}

.new-single-post-content {
  width: 50%;
}

.new-posts-home-title {
  padding-bottom: 10px;
}

.new-posts-home-date {
  padding-bottom: 25px;
  color: #28a2f0;
  font-size: 14px;
  font-weight: 400;
}

.new-posts-home-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.new-single-post-thumbnail {
  width: 50%;
}

.posts-new .new-single-post-thumbnail .post-thumbnail {
  /* min-height: 100%;
  max-height: 100%;
  border-radius: 40px 0 0 0;
  background-repeat: no-repeat;
  background-position: center; */
}

.posts-new .new-single-post-thumbnail .post-thumbnail img {
  width: 100%;
  border-radius: 40px 0 0 0;
}

.post-date,
.post-description {
  color: #000;
}

.posts-pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 22px;
  justify-content: center;
}

.pagination-arrow.pagination-prev a svg {
  transform: rotate(180deg);
}

.posts-home-all {
  display: flex;
  gap: 16px;
}
.posts-home-all .single-post {
  width: 33.33333%;
}

.posts-home-all .post-thumbnail {
  margin-bottom: 20px;
}

.posts-home-all .single-post .post-thumbnail img {
  width: 100%;
}

.posts-home-all .single-post:first-child .post-thumbnail img {
  border-radius: 40px 40px 0 40px;
}

.posts-home-all .single-post:nth-child(2) .post-thumbnail img {
  border-radius: 0px 40px 0 40px;
}

.posts-home-all .single-post:last-child .post-thumbnail img {
  border-radius: 0px 40px 40px 40px;
}
/* .single-post .post-thumbnail{ */
/* width: 100%; */
/* height: 235px; */
/* background-repeat: no-repeat; */
/* background-size: cover; */
/* } */

/* .single-post:first-child .post-thumbnail{
  border-radius: 40px 40px 0 40px;
}

.single-post:nth-child(2) .post-thumbnail{
  border-radius: 0px 40px 0 40px;
}

.single-post:last-child .post-thumbnail{
  border-radius: 0px 40px 40px 40px;
} */

.posts-home-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-post .posts-home-title {
  padding-bottom: 6px;
}

.single-post .posts-home-date {
  padding-bottom: 20px;
  color: #28a2f0;
  font-size: 14px;
  font-weight: 400;
}

.single-post .button-link-single {
  padding-top: 25px;
}

.posts-home-all .posts-home-title h4,
.title-link .posts-home-title h4 {
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}

.posts-home-all .posts-home-title:hover h4,
.posts-home-all .title-link:hover .posts-home-title h4,
.title-link:hover .posts-home-title h4 {
  color: #28a2f0;
}

.posts-home-all .single-post a .post-thumbnail {
  transition: scale 0.3s ease-in-out;
}

.posts-home-all .single-post a:hover .post-thumbnail {
  scale: 0.9;
}

/* Home blog */

/* Single blog */
.single-blog-post {
  position: relative;
}

.single-blog-post-background::before {
  background-color: #f0faff;
  width: 100%;
  height: 15%;
  top: 0;
  left: 0;
  position: absolute;
  content: "";
}

.posts-pagination .current {
  font-weight: 700;
}

.current-post-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.current-post-title img {
  max-width: 1200px;
}

.current-post-image img {
  width: 100%;
  border-radius: 40px 0 0 0;
}

.current-post-image {
  padding-bottom: 40px;
}
.single-blog-post-content .current-post-content-text p {
  padding-top: 20px;
}

.single-blog-post-content .current-post-content-text span {
  font-size: 18px;
  color: #28a2f0;
}

.single-blog-post-content .current-post-content-text a {
  color: #28a2f0;
  transition: color 0.3s ease-in-out;
  font-weight: 700;
}

.single-blog-post-content .current-post-content-text a:hover {
  color: #000;
}

.social-media-blog {
  padding-top: 80px;
}

.social-media-blog a {
  display: flex;
}

.social-media-blog a svg {
  width: 24px;
  height: 24px;
}

.social-media-blog a .blog-fb path:first-child,
.social-media-blog a .blog-in path:first-child,
.social-media-blog a .blog-x g path {
  transition: fill 0.3s ease-in-out;
}

.social-media-blog a .blog-fb:hover path:first-child {
  fill: #92e200;
}

.social-media-blog a .blog-in:hover path:first-child {
  fill: #92e200;
}
.social-media-blog a .blog-x:hover g path {
  fill: #92e200;
}

.social-media-blog {
  display: flex;
  gap: 10px;
}

.single-blog-post-sidebar_ {
  display: flex;
  flex-direction: column;
  width: 33.33333%;
}

.single-blog-post-sidebar_ .button-link-single {
  padding-top: 20px;
}

.single-blog-post-sidebar-title {
  margin-top: 80px;
  padding: 47px 60px 60px 60px;
  background-color: #f0faff;
  border-bottom: 2px solid #fff;
}

.single-blog-post-sidebar-title h2 {
  text-align: left;
  padding-bottom: 33px;
}

.single-blog-post-sidebar {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.single-blog-post-sidebar .single-blog-post:first-child img {
  border-radius: 40px 40px 0 40px;
}

.single-blog-post-sidebar .single-blog-post:nth-child(2) img {
  border-radius: 0px 40px 0 40px;
}

.single-blog-post-sidebar .single-blog-post:nth-child(3) img {
  border-radius: 0px 40px 40px 40px;
}

.single-blog-post .link-title-blog-post {
  padding-bottom: 5px;
  padding-top: 19px;
}

.single-blog-post .link-title-blog-post:hover h4 {
  color: #00a2f0;
}

.single-blog-post .link-title-blog-post h4 {
  font-size: 18px;
  transition: color 0.3s ease-in-out;
  font-weight: 700;
  color: #000;
}

.single-blog-post-sidebar .single-blog-post .post-date {
  color: #28a2f0;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 20px;
}

.single-blog-post-bottom {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 25px;
}

/* Single blog */

.section-breadcrumb_blog {
  background-color: var(--main-color);
  padding-bottom: 65px;
  padding-top: 20px;
}

.section-breadcrumb_title_blog h1 {
  font-weight: 700;
  color: #00a2f0;
}

.single-blog-post-content {
  padding: 0 90px;
}

.current-post-date {
  color: #00a2f0;
  font-size: 14px;
  padding-top: 6px;
  padding-bottom: 21px;
}

.button-link-single {
  padding: 40px 0 0 0;
  display: inline-flex;
}

.button-link-single a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  display: inline-flex;
  align-items: center;
  line-height: 1.3;
}

.button-link-single a:hover span {
  width: 36px;
}

.button-link-single a span {
  margin-right: 10px;
  width: 26px;
  height: 2px;
  text-transform: uppercase;
  background-color: #91e200;
  padding-right: 10px;
  display: flex;
  transition: width 0.3s ease-in-out;
}

.subtitle-section span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #28a2f0;
}

@media only screen and (max-width: 991px) {
  .single-blog-post::before {
    height: 10%;
  }

  .single-blog-post-content {
    padding: 0 0px;
  }

  .single-blog-post-sidebar {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
  }

  .single-blog-post-sidebar .single-blog-post-sidebar_ {
    width: calc(50% - 15px);
  }

  .single-post.new-single-post {
    flex-direction: column;
  }

  .new-single-post-content {
    width: 100%;
  }

  .new-single-post-thumbnail {
    width: 100%;
  }

  /* .posts-new .new-single-post-thumbnail .post-thumbnail{
    min-height: 350px;
  } */

  .new-single-post-thumbnail .post-thumbnail {
    text-align: center;
  }

  .new-single-post-thumbnail .post-thumbnail img {
    max-width: 80%;
  }

  .posts-home-all {
    flex-wrap: wrap;
    gap: 20px;
  }

  .posts-home-all .single-post {
    width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
  .container-full {
    padding: 0;
  }

  .single-blog-post-sidebar {
    gap: 50px;
  }

  .single-blog-post-sidebar .single-blog-post-sidebar_ {
    width: 100%;
  }

  .posts-home-all .single-post {
    width: 100%;
  }

  .single-blog-post-sidebar-title {
    padding: 47px 20px 20px 20px;
  }

  .single-blog-post-background
    .single-blog-post-sidebar-title
    .single-blog-post-sidebar
    .single-blog-post-sidebar_
    a
    img {
    width: 100%;
  }
}

/* Newsletter mailerlite */
/* LOADER */
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.g-recaptcha {
  transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  height: ;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #000 #000 #000 transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}
@keyframes ml-form-embedSubmitLoad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-control:focus {
  box-shadow: none;
}

#mlb2-14865202.ml-form-embedContainer {
  box-sizing: border-box;
  display: table;
  margin: 0 auto;
  position: static;
  width: 100% !important;
}
#mlb2-14865202.ml-form-embedContainer .ml-form-embedWrapper {
  border-width: 0px;
  border-color: transparent;
  border-radius: 4px;
  border-style: solid;
  box-sizing: border-box;
  display: inline-block !important;
  margin: 0;
  padding: 0;
  position: relative;
}
/* #mlb2-14865202.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
#mlb2-14865202.ml-form-embedContainer .ml-form-embedWrapper.embedDefault {
  width: 100%;
} */
#mlb2-14865202.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  max-width: 100%;
  width: 100%;
}

#mlb2-14865202.ml-form-embedContainer .ml-form-align-center {
  text-align: center;
}
#mlb2-14865202.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody {
  padding: 0px;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody.ml-form-embedBodyHorizontal {
  padding-bottom: 0;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedContent,
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody
  .ml-form-successContent {
  text-align: left;
  margin: 0 0 20px 0;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedContent
  h4,
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody
  .ml-form-successContent
  h4 {
  color: #000000;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 10px 0;
  text-align: left;
  word-break: break-word;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedContent
  p,
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody
  .ml-form-successContent
  p {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 10px 0;
  text-align: left;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedContent
  p
  a,
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody
  .ml-form-successContent
  p
  a {
  color: #000000;
  text-decoration: underline;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-block-form
  .ml-field-group {
  text-align: left !important;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-block-form
  .ml-field-group
  label {
  margin-bottom: 5px;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
  line-height: 20px;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedContent
  p:last-child,
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-successBody
  .ml-form-successContent
  p:last-child {
  margin: 0;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  form {
  margin: 0;
  width: 100%;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-formContent.horozintalForm {
  height: auto;
  width: 100%;
  float: left;
  display: flex;
  gap: 16px;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-fieldRow
  input:-moz-placeholder,
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-horizontalRow
  input:-moz-placeholder {
  color: #000;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-fieldRow
  input.custom-control-input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 5px;
  margin-left: -1.5rem;
  overflow: visible;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .custom-control-label::before {
  position: absolute;
  top: 4px;
  left: -1.5rem;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .custom-control-label::after {
  position: absolute;
  top: 2px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-horizontalRow {
  height: auto;
  width: 100%;
  float: left;
}
.ml-form-formContent.horozintalForm
  .ml-form-horizontalRow
  .ml-input-horizontal {
  width: 70%;
  float: left;
}
.ml-form-formContent.horozintalForm
  .ml-form-horizontalRow
  .ml-button-horizontal {
  width: 30%;
  float: left;
}
.ml-form-formContent.horozintalForm
  .ml-form-horizontalRow
  .ml-button-horizontal.labelsOn {
  padding-top: 25px;
}
.ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  float: left;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-horizontalRow
  input {
  background-color: transparent;
  color: #000;
  border-color: #000000;
  border-radius: 35px;
  border-style: solid;
  border-width: 1px;
  font-size: 16px;
  font-weight: 400;
  /* line-height: 20px; */
  margin-bottom: 0;
  margin-top: 0;
  padding: 19px 0px 19px 30px;
  width: 100%;
  box-sizing: border-box;
  overflow-y: initial;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-horizontalRow
  button {
  background-color: #fff !important;
  box-shadow: none;
  color: #000 !important;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 700;
  margin: 0 !important;
  padding: 21px 30px !important;
  width: 100%;
  max-width: 140px;
  border: 2px solid #91e200;
  height: auto;
  border-radius: 30px;
  transition: background-color 0.3s ease-in-out;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-horizontalRow
  button:hover {
  background-color: #92e200 !important;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-checkboxRow
  input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 5px;
  margin-left: -1.5rem;
  overflow: visible;
}
/* #mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-checkboxRow
  .label-description {
  color: #000000;
  display: block;
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
  position: relative;
  vertical-align: top;
} */
/* #mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-checkboxRow
  label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  min-height: 24px;
  padding-left: 24px;
} */
/* #mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-checkboxRow
  label
  a {
  color: #000000;
  text-decoration: underline;
} */
/* #mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-checkboxRow
  label
  p {
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: normal !important;
  line-height: 18px !important;
  padding: 0 !important;
  margin: 0 5px 0 0 !important;
} */
/* #mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-checkboxRow
  label
  p:last-child {
  margin: 0;
} */
/* #mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedSubmit {
  margin: 0 0 20px 0;
  float: left;
  width: 100%;
} */
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedSubmit
  button {
  background-color: #fff !important;
  border: none !important;
  border-radius: 15px !important;
  box-shadow: none !important;
  color: #000 !important;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 21px !important;
  height: auto;
  padding: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedSubmit
  button.loading {
  display: none;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedSubmit
  button:hover {
  background-color: #92e200 !important;
}
.ml-subscribe-close {
  width: 30px;
  height: 30px;
  background: url("https://assets.mlcdn.com/ml/images/default/modal_close.png")
    no-repeat;
  background-size: 30px;
  cursor: pointer;
  margin-top: -10px;
  margin-right: -10px;
  position: absolute;
  top: 0;
  right: 0;
}
.ml-error input,
.ml-error textarea,
.ml-error select {
  border-color: red !important;
}

.ml-error .custom-checkbox-radio-list {
  border: 1px solid red !important;
  border-radius: 4px;
  padding: 10px;
}

.ml-error .label-description,
.ml-error .label-description p,
.ml-error .label-description p a,
.ml-error label:first-child {
  color: #ff0000 !important;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-checkboxRow.ml-error
  .label-description
  p,
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-checkboxRow.ml-error
  .label-description
  p:first-letter {
  color: #ff0000 !important;
}
@media only screen and (max-width: 400px) {
  /* .ml-form-embedWrapper.embedDefault,
  .ml-form-embedWrapper.embedPopup {
    width: 100% !important;
  } */
  .ml-form-formContent.horozintalForm {
    float: left !important;
  }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow {
    height: auto !important;
    width: 100% !important;
    float: left !important;
  }
  .ml-form-formContent.horozintalForm
    .ml-form-horizontalRow
    .ml-input-horizontal {
    width: 100% !important;
  }
  .ml-form-formContent.horozintalForm
    .ml-form-horizontalRow
    .ml-input-horizontal
    > div {
    padding-right: 0px !important;
    padding-bottom: 10px;
  }
  .ml-form-formContent.horozintalForm .ml-button-horizontal {
    width: 100% !important;
  }
  .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn {
    padding-top: 0px !important;
  }
}

.ml-mobileButton-horizontal {
  display: none;
}

#mlb2-14865202 .ml-mobileButton-horizontal button {
  background-color: #fff !important;
  border-color: #fff !important;
  border-style: solid !important;
  border-width: 1px !important;
  border-radius: 15px !important;
  box-shadow: none !important;
  color: #000 !important;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  padding: 10px !important;
  width: 100% !important;
}

.ml-form-embedPermissionsContent.horizontal.privacy-policy a {
  color: #28a2f0;
  transition: color 0.3s ease-in-out;
}

.ml-form-embedPermissionsContent.horizontal.privacy-policy a:hover {
  color: #000;
}

@media only screen and (max-width: 400px) {
  /* .ml-hide-horizontal {
    display: none !important;
  } */
  /* .ml-form-formContent.horozintalForm .ml-button-horizontal {
    display: none !important;
  } */
  .ml-form-embedPermissionsContent.horizontal.privacy-policy p {
    font-size: 14px;
  }

  .ml-mobileButton-horizontal {
    display: inline-block !important;
    margin-bottom: 20px;
    width: 100%;
  }
  .ml-form-formContent.horozintalForm
    .ml-form-horizontalRow
    .ml-input-horizontal
    > div {
    padding-bottom: 0px !important;
  }
}

@media only screen and (max-width: 1200px) {
  #mlb2-14865202.ml-form-embedContainer
    .ml-form-embedWrapper
    .ml-form-embedBody
    .ml-form-horizontalRow
    button {
    padding: 21px 20px !important;
  }
}

@media only screen and (max-width: 1200px) {
  #mlb2-14865202.ml-form-embedContainer
    .ml-form-embedWrapper
    .ml-form-embedBody
    .ml-form-horizontalRow
    button {
    padding: 21px 16px !important;
  }
}

@media only screen and (max-width: 400px) {
  .ml-form-formContent.horozintalForm
    .ml-form-horizontalRow
    .horizontal-fields {
    margin-bottom: 10px !important;
    width: 100% !important;
  }
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedPermissions {
  text-align: left;
  float: left;
  width: 100%;
}
/* #mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedPermissions
  .ml-form-embedPermissionsContent {
  margin: 0 0 15px 0;
  text-align: left;
} */
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedPermissions
  .ml-form-embedPermissionsContent.horizontal {
  margin: 13px 0 0 0;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedPermissions
  .ml-form-embedMailerLite-GDPR {
  padding-bottom: 20px;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedPermissions
  .ml-form-embedMailerLite-GDPR
  p {
  color: #000000;
  font-size: 10px;
  line-height: 14px;
  margin: 0;
  padding: 0;
}
#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedPermissions
  .ml-form-embedMailerLite-GDPR
  p
  a {
  color: #000000;
  text-decoration: underline;
}

#mlb2-14854356.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  form {
  margin: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-copy-top {
    flex-direction: column;
  }
  .footer-copy-top {
    padding: 50px 0px 30px 0px;
  }

  #mlb2-14865202.ml-form-embedContainer
    .ml-form-embedWrapper
    .ml-form-embedBody
    .ml-form-horizontalRow {
    flex-direction: column;
  }

  .ml-button-horizontal {
    width: 100%;
    margin: 0 auto;
  }

  .ml-field-group .ml-field-email .ml-validate-email .ml-validate-required {
    width: 100%;
  }

  .ml-form-formContent.horozintalForm
    .ml-form-horizontalRow
    .ml-input-horizontal {
    width: 100%;
  }

  .ml-form-formContent.horozintalForm
    .ml-form-horizontalRow
    .horizontal-fields {
    padding-right: 0px;
  }

  .ml-form-formContent.horozintalForm
    .ml-form-horizontalRow
    .ml-button-horizontal {
    width: 100%;
    float: left;
  }
  /* Newsletter mailerlite */
}

.footer-copy-top {
  display: flex;
  gap: 16px;
}

#mlb2-14865202.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-horizontalRow {
  height: auto;
  width: 100%;
  float: left;
  display: flex;
  gap: 13px;
}

/* FAQ PAGE */
.section-tab-faq {
  padding-top: 80px;
  padding-bottom: 80px;
}

.tab-faq-heading {
  padding-bottom: 33px;
}

.tab-faq-all_ {
  display: flex;
  gap: 20px;
}

.tab-faq-menu_ {
  width: 25%;
}

.tab-faq-content {
  width: 75%;
}

.tab-accordion-button {
  width: 100%;
}

.tab-faq-menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.tab-faq-menu ul li {
  list-style: none;
  font-size: 18px;
  font-weight: 400;
}

.tab-faq-menu ul li a {
  background-color: #f0faff;
  color: #000;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .3s ease,background .3s ease;
  width: 100%;
  padding: 15px 20px;
}

.tab-faq-menu ul li a:hover {
  background-color: #28a2f0;
  color: #fff;
}

.tab-faq-menu ul li.active a{
  background-color: #28a2f0;
  color: #fff;
}

.tab-faq-menu ul li.active a{
  color: #fff;
}

.tab-accordion-button {
  display: flex;
  justify-content: space-between;
}

.tab-accordion-header {
  color: #000;
  /* margin-right: 90px; */
  width: 100%;
}

.tab-accordion-button{
  font-weight: bold;
  line-height: 130%;
}

.tab-accordion-button.collapsed{
  color: #000;
}

.tab-accordion-button{
  color: #FFF;
  transition: color .3s ease-in-out;
}

.tab-accordion-button.collapsed .tab-accordion-icon {
  transform: rotate(0deg);
}

.tab-accordion-button .tab-accordion-icon {
  transition: transform 0.3s ease-in-out;
}

.tab-accordion-button .tab-accordion-icon {
  transform: rotate(180deg);
}

.tab-accordion-button svg g {
  transition: fill 0.3s ease-in-out, stroke 0.3s ease-in-out;
}

.tab-accordion-button.collapsed svg g g {
  fill: #fff;
}

.tab-accordion-button svg g g {
  fill: #91e22f;
}

.tab-accordion-button.collapsed svg g g line {
  fill: #91e22f;
}

.tab-accordion-button.collapsed svg g g path,
.tab-accordion-button.collapsed svg g g line {
  stroke: #91e22f;
}

.tab-accordion-button svg g g path,
.tab-accordion-button svg g g line {
  stroke: #fff;
}

.tab-accordion-button.collapsed {
  background-color: #f0faff;
}

.tab-accordion-icon {
  margin-left: 20px;
}

.tab-accordion-button {
  align-items: center;
  background-color: inherit;
  border: none;
  /* color: #000000; */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  overflow-anchor: none;
  position: relative;
  text-align: left;
  width: 100%;
  background-color: #f0faff;
  transition: background-color 0.3s ease-in-out;
  padding: 16px 21px 16px 37px;
  background-color: #28a2f0;
}

.tab-accordion-body {
  line-height: 24px;
  font-weight: 400;
  color: #000;
  font-weight: 400;
  padding: 25px 90px 0 37px;
  background-color: #fff;
}

.tab-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ PAGE */
