/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* Font import */
@font-face {
  font-family: "All Round Gothic";
  src: url('/fonts/AllRoundGothic-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "All Round Gothic";
  src: url('/fonts/AllRoundGothic-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "All Round Gothic";
  src: url('/fonts/AllRoundGothic-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
  --black: #021239;
  --white: #ffffff;
  --lightgrey: #EDF2F4;
  --grey: #CFD0DB;
  --lightgreen: #30bf78;
  --blue: #006bff;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* navbar */
.nav {
  padding: 50px 0;
}
.nav-logo {
  text-align: left;
}
.nav-logo img {
  height: 50px;
}
.menu ul {
  text-align: right;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  text-align: center;
  padding: 0;
  margin: 0;
}
.menu ul li {
  color: var(--black);
  text-transform: uppercase;
  font-size: 18px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  transition: all 0.5s ease;
  margin: 0 15px;
}
.menu ul li:hover {
  color: var(--lightgreen);
  border-bottom: 4px solid var(--lightgreen);
}
/* header */
.header-content {
  background: var(--lightgrey);
  border-radius: 60px;
  padding: 0 15px;
}
.selo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.selo img:nth-of-type(1) {
  height: 25px;
  margin: 0;
}
.selo img {
  height: 20px;
  margin: 0 8px;
}
#selo-p {
  margin: 0;
  font-size: 16px;
  color: var(--lightgreen);
}
.header-txt h1 {
  font-family: "All Round Gothic", sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 30px;
  text-wrap: balance;
}
.header-txt h1 span {
  color: var(--lightgreen);
  font-weight: 700;
}
.header-txt p {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  max-width: 75%;
  margin: 20px 0;
}
.header-txt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-txt ul li {
  background: url(/img/bullet.svg) no-repeat left top;
  background-size: 20px;
  height: 30px;
  padding-left: 30px;
  margin: 8px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  max-width: 80%;
  line-height: 1.1;
}
.form-box {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.form-img {
  position: absolute;
  z-index: 1;
  width: 450px;
  left: -150px;
  bottom: 0;
}
/* form */
#contactform {
  position: relative;
  z-index: 99;
  right: 0;
  width: 420px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 12px 6px 0px rgba(59, 67, 147, 0.15);
  padding: 30px;
  text-align: center;
  margin: 30px 0 30px auto;
}
#contactform h3 {
  color: var(--lightgreen);
  font-size: 24px;
  font-weight: 700;
  max-width: 85%;
  margin: 0 auto;
}
#contactform h6 {
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  margin: 20px auto;
}
#contactform hr {
  width: 100%;
  opacity: 1;
  background: var(--lightgreen);  
  height: 2px;
  border: none;
  border-radius: 10px;
}
.extra-question {
  display: none;
}
.inputs1 {
  margin-bottom: 20px;
}
.input-title {
  margin-bottom: 10px;
}
.input-title h5 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.input-title p {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0 0 0;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--grey);
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 8px 0 0 0;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--lightgreen);
  color: var(--white);
  border: 1px solid var(--lightgreen);
}
.form-button {
  width: 255px;
  height: 45px;
  background: var(--lightgreen);
  border: 2px solid var(--lightgreen);
  border-radius: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0 auto;
  transition: all 0.6s ease;
}
.form-button img {
  width: 7px;
  height: 12px;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}
.form-button:hover {
  background: var(--white);
  color: var(--lightgreen);
  border: 2px solid var(--lightgreen);
}
.form-button:hover img {
  filter: none;
}
.error {
  font-size: 12px;
  color: red;
  width: 100%;
  margin: 8px 0 0 0;
}
/* section 1 */
.section1 {
  padding: 70px 0 80px 0;
  text-align: center;
}
.sec1-txt {
  margin-bottom: 40px;
}
.sec1-txt h3 {
  color: var(--lightgreen);
  font-family: "All Round Gothic";
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
.partner-container {
  padding: 0;
}
.part-img img {
  width: 70%;
  margin: 0 auto;
}
.sec1-cta {
  margin-top: 60px;
}
.sec1-cta button {
  width: 345px;
  height: 45px;
  border-radius: 10px;
  border: 2px solid var(--lightgreen);
  background: var(--lightgreen);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.6s ease;
}
.sec1-cta button img {
  width: 7px;
  margin-left: 10px;  
  filter: brightness(0) invert(1);
}
.sec1-cta button:hover {
  background: var(--white);
  color: var(--lightgreen);
}
.sec1-cta button:hover img {
  filter: none;
}
/* section2 */
.section2 {
  text-align: center;
}
.sec2-outer {
  background: var(--lightgrey);
  border-radius: 60px;
  padding: 60px 30px 70px 30px;
}
.vant-box {
  background: var(--white);
  border-radius: 25px;
  padding: 40px 30px;
  width: 90%;
  height: 210px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  transition: all 0.5s ease;
}
.vant-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.vant-box img {
  height: 60px;
  margin-bottom: 20px;
}
.vant-box p {
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
  max-width: 92%;
  line-height: 1.1;
  margin: 0 auto;
}
/* section 3 */
.section3 {
  text-align: center;
  padding: 60px 0 50px 0;
}
.sec3-txt {
  margin-bottom: 20px;
}
.sec3-txt h3 {
  color: var(--lightgreen);
  font-family: "All Round Gothic";
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
.article-slider .slick-list {
  padding: 35px 0;
}
.article-box {
  width: 90%;
  margin: 0 auto;  
  cursor: pointer;
  transition: all 0.5s ease;
}
.article-box:hover {
  transform: scale(1.05);
}
.article-box img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.article-txt {
  width: 100%;
  min-height: 110px;
  background: var(--lightgrey);
  border-radius: 0 0 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-txt p {
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  line-height: 1.2;
}
.article-txt p span {
  font-weight: 700;
}
.custom-dots {
    text-align: center;
    margin-top: 0px;
}
.custom-dots .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}
.custom-dots .slick-dots li {
    margin: 0 5px;
}
.custom-dots .slick-dots li button {
    background-color: var(--lightgrey); 
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: block;
    padding: 0;
    cursor: pointer;
    font-size: 0;
}
.custom-dots .slick-dots li.slick-active button {
    background-color: var(--lightgreen);
}
/* footer */
.footer {
  padding: 60px 0 0 0;
}
.footer-outer {
  background: var(--black);
  border-radius: 60px;
  position: relative;
  padding: 65px 20px;
}
.footer-txt {
  color: var(--white);
}
.footer-txt p {
  color: var(--white);
  font-family: "All Round Gothic";
  font-size: 35px;
  font-weight: 350;
  margin: 0;
  line-height: 1;
}
.footer-txt h3 {
  color: var(--white);
  font-family: "All Round Gothic";
  font-size: 35px;
  font-weight: 700;
}
.footer-txt button {
  background: var(--lightgreen);
  width: 255px;
  height: 45px;
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0 0;
  transition: all 0.6s ease;
}
.footer-txt button img {
  width: 7px;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}
.footer-txt button:hover {
  background: var(--white);
  color: var(--lightgreen);
}
.footer-txt button:hover img {
  filter: none;
}
.footer-img img {
  position: absolute;
  bottom: 0;
  right: 30px;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .menu ul li {
    font-size: 16px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  .header-txt p {
    font-size: 16px;
    max-width: 75%;
  }
  .header-txt ul li {
    font-size: 17px;
    max-width: 90%;
  }
  .form-img {
    width: 400px;
  }
  .vant-box {
    padding: 35px 20px;
  }
  .vant-box p {
    max-width: 100%;
  }
  .article-box {
    max-width: 95%;
  }
  .article-txt p {
    font-size: 16px;
  }
  .footer-txt p {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .nav-logo img {
    height: 60px;
  }
  .menu ul li {
    font-size: 13px;
  }
  .header-txt h1 {
    font-size: 26px;
  }
  .header-txt p {
    font-size: 14px;
    max-width: 80%;
  }
  .header-txt ul li {
    font-size: 14px;
    max-width: 75%;
  }
  #contactform {
    width: 350px;
    padding: 30px 20px;
  }
  #contactform h6 {
    font-size: 13px;
  }
  .vant-box {
    height: 200px;
  }
  .footer-txt p {
    font-size: 26px;
  }
  .footer-txt h3 {
    font-size: 30px;
  }
  .footer-img img {
    height: 300px;
    right: 0;
  }
  .vant-box p {
    font-size: 15px;
  }
  .footer {
    padding: 30px 0 0 0;
  }
}
@media only screen and (max-width: 1080px) {
  .article-txt p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  .menu ul li {
    font-size: 11px;
  }
  .header-content {
    padding: 0 30px;
  }
  .header-txt h1 {
    font-size: 24px;
  }
  .header-txt p {
    max-width: 90%;
  }
  .header-txt ul li {
    font-size: 14px;
    max-width: 95%;
  }
  .form-img {
    display: none;
  }
  #contactform h6 {
    font-size: 12px;
  }
  .sec1-txt h3 {
    font-size: 24px;
  }
  .sec2-outer {
    padding: 60px 20px 50px 20px;
  }
  .vant-box {
    margin: 0 0 20px 0;
  }
  .footer-img img {
    height: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .nav {
    padding: 30px;
  }
  .nav-logo {
    text-align: center;
  }
  .nav-logo img {
    height: 50px;
  }
  .header {
    text-align: center;
  }
  .header-content {
    padding: 40px;
  }
  .selo {
    justify-content: center;
  }
  .header-txt h1 {
    margin-top: 40px;
    font-size: 35px;
  }
  .header-txt p {
    font-size: 18px;
    margin: 20px auto 10px auto;
    max-width: 100%;
  }
  .header-txt ul {
    text-align: left;
    max-width: 80%;
    margin: 0 auto;
  }
  .header-txt ul li {
    max-width: 100%;
    font-size: 15px;
  }
  .form-box {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    margin: 20px auto 0 auto;
  }
  /*.form-img {
    display: block;
    position: relative;
    left: 0;
    margin: 20px auto 0 auto;
    width: 350px;
  }*/
  #contactform {
    margin: 0 auto;
    width: 100%;
    padding: 30px;
  }
  #contactform h3 {
    max-width: 75%;
  }
  #contactform h6 {
    font-size: 15px;
  }
  .sec1-txt h3 {
    font-size: 26px;
    max-width: 68%;
    margin: 0 auto;
  }
  .vant-box {
    margin: 10px auto;
    height: auto;
    padding: 30px;
  }
  .vant-box p {
    font-size: 18px;
    max-width: 70%;
  }
  .article-txt p {
    font-size: 18px;
  }
  .footer {
    padding: 0;
    text-align: center;
  }
  .footer-outer {
    padding: 50px 30px 0 30px;
  }
  .footer-txt button {
    margin: 30px auto;
  }
  .footer-img img {
    position: relative;
  }
}
@media only screen and (max-width: 575px) {
  .header, .section2, .footer {
    padding: 0 15px;
  }
  .footer-txt p {
    font-size: 24px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 550px) {
  .header-txt p {
    font-size: 16px;
  }
  .sec1-txt h3 {
    max-width: 78%;
  }
  .sec3-txt h3 {
    font-size: 26px;
  }
  .footer-txt p {
    font-size: 21px;
  }
  .footer-img img {
    height: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .header-txt ul {
    max-width: 90%;
  }
  .footer-txt p {
    font-size: 18px;
  }
  .header-txt h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt h1 {
    font-size: 24px;
  } 
  .header-txt p {
    max-width: 90%;
  }
  #contactform h6 {
    max-width: 85%;
  }
  #contactform h3 {
    max-width: 95%;
  }
  .sec1-txt h3 {
    max-width: 88%;
  }
  .footer-txt h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 414px) {
  .form-img {
    width: 100%;
  }
  #contactform {
    padding: 25px;
  }
  .header-content {
    padding: 35px 30px;
  }
  .sec1-txt h3 {
    max-width: 96%;
  }
  .header-txt h1 {
    font-size: 22px;
  }
  .footer-txt p {
    font-size: 22px;
    max-width: 80%;
    margin: 0 auto;
  }
  .sec1-cta button {
    width: 100%;
    font-size: 18px;
  }
  .article-txt p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 390px) {
  .header-txt h1 {
    font-size: 22px;
  }
  .footer-txt h3 {
    font-size: 28px;
  }
  .header-txt p {
    max-width: 95%;
  }
  .header-content {
    padding: 30px 25px;
  }
  .sec1-txt h3 {
    max-width: 100%;
  }
  .footer-outer {
    padding: 40px 25px 0 25px;
  }
  .input-title h5 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 20px;
  }
  .footer-txt h3 {
    font-size: 24px;
  }
  #contactform h6 {
    max-width: 80%;
  }
  .sec1-cta button {
    font-size: 16px;
  }
  .sec1-cta button img {
    display: none;
  }
  .header-txt p {
    max-width: 95%;
    font-size: 13px;
  }
  #contactform h3 {
    max-width: 100%;
    font-size: 22px;
  }
  .form-button {
    width: 100%;
  }
  .vant-box p {
    max-width: 100%;
    font-size: 16px;
  }
  .form-button img, .footer-txt button img{
    display: none;
  }
  .footer-txt p {
    max-width: 90%;
  }
  .sec1-txt h3, .sec3-txt h3 {
    font-size: 24px;
  }
  .header, .section2, .footer {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 345px) {
  .header-content {
    padding: 25px 15px;
  }
  .header-txt h1 {
    font-size: 20px;
  }
  .header-txt p {
    max-width: 100%;
    font-size: 12px;
  }
  #contactform h3 {
    font-size: 20px;
  }
  #contactform h6 {
    max-width: 100%;
    font-size: 14px;
  }
  .inputs1 .col-6, .extra-question .col-6 {
    padding: 0 5px;
  }
  .form-button {
    font-size: 16px;
  }
  .sec1-cta button {
    font-size: 14px;
  }
  .sec1-txt h3, .sec3-txt h3 {
    font-size: 20px;
  }
  .vant-box {
    padding: 20px;
  }
  .vant-box p {
    font-size: 14px;
  }
  .footer-txt p {
    font-size: 18px;
    max-width: 80%;
  }
  .footer-txt h3 {
    font-size: 22px;
  }
  .footer-txt button {
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  .footer-txt h3 {
    font-size: 21px;
  }
}