* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../__plugins/nunito_sans_font/static/NunitoSans_10pt-Regular.ttf")
    format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../__plugins/nunito_sans_font/static/NunitoSans_7pt-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../__plugins/nunito_sans_font/static/NunitoSans_10pt-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Rethink Sans";
  src: url("../__plugins/rethink_sans_font/static/RethinkSans-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rethink Sans";
  src: url("../__plugins/rethink_sans_font/static/RethinkSans-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Rethink Sans";
  src: url("../__plugins/rethink_sans_font/static/RethinkSans-Bold.ttf")
    format("truetype");
  font-weight: bold;
  font-style: normal;
}

:root {
  --max-width: 1320px;
  --min-width: ;
  --primary-color: #3489fd;
  --seconder-color: ;
  --purple: #6568fa;
  --normal-font-size: 16px;
  --large-font-size: 18px;
  --content-heading-size: 28px;
  --section-h:36px;
  --heading-size: 48px;
  --white: #ffffff;
  --black: #111110;
  --gray: #484848;
  --normal-font-family: "Nunito Sans";
  --heading-font-family: "Rethink Sans", sans-serif;
  --light-font-weight: 400;
  --bold--font-weight: 700;
}

body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
}
.container h2 {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--heading-size);
  font-weight: 500;
  line-height: 56px;
}
.container h2 span {
  background: linear-gradient(91deg, #6367ff 23.65%, #0f9dfc 75.34%);
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container h3 {
  color: var(--purple);
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 33px;
}
p {
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--light-font-weight);
  color: var(--black);
}
a {
  text-decoration: none;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--bold--font-weight);
  cursor: pointer;
}

/* Slick image scrolling bottom dots */
.slick-dots li button:before {
  content: "";
  display: block;
  border-radius: 50px;
  height: 10px;
  width: 10px;
  background: #b8b8b8;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before {
  width: 20px;
  background: #109cfb;
}
form label {
  color: #252b42;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--light-font-weight);
  line-height: 28.217px;
  letter-spacing: 0.235px;
}
form input {
  border-radius: 5px;
  border: 1px solid #b8b8b8;
  background: var(--white);
  color: #252b42;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--light-font-weight);
  line-height: normal;
  letter-spacing: 0.235px;
  padding: 8px 20px;
}
form select {
  border-radius: 5px;
  border: 1px solid #b8b8b8;
  background: var(--white);
  color: #252b42;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--light-font-weight);
  line-height: normal;
  letter-spacing: 0.235px;
  padding: 8px 20px;
}
form textarea {
  border-radius: 5px;
  border: 1px solid #b8b8b8;
  background: var(--white);
  color: #252b42;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--light-font-weight);
  line-height: normal;
  letter-spacing: 0.235px;
  padding: 8px 20px;
  height: 41px;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
.submit-btn {
  background: linear-gradient(90deg, #5f9df7, #7a5cff);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: var(--normal-font-size);
  transition: background 0.3s;
  font-family: var(--normal-font-family);
  font-weight: 600;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #7a5cff, #5f9df7);
}
.btn-blank {
  background-color: var(--white);
  color: var(--primary-color);
}
.btn-blank:hover{
  background-color: rgb(227, 233, 235);
  color: var(--primary-color);
}
.btn-border {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-border:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

input[type="file"]::before {
  content: " Select File";
  display: inline-block;
  color: var(--black);
  cursor: pointer;
  font-weight: 500;
}
.flex_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:20px;
}
.flex_content .content_text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 31px;
}
.flex_content .content_text h2 {
  font-size: 36px;
}
.flex_content .content_text p {
  color: var(--gray);
}
.w-50{
  width: 48%;
}

/* .slick-cloned {
  display: none !important;
} */

@media (max-width: 1320px) {
  .container {
    padding: 0 20px;
     transition: all 0.3s ease;
  }
}
@media (max-width: 960px) {
  .container h2 {
    line-height: normal;
      font-size: 32px;
       transition: all 0.3s ease;
    
  }

}

@media (max-width: 500px) {
  :root {
    --normal-font-size: 14px;
    --large-font-size: 16px;
    --heading-size: 22px;
    --section-h:24px;
  }
  .container h2 {
    line-height: normal;
     transition: all 0.3s ease;
       font-size: 24px;
  }
  .container h3{
    font-size: 18px;
  }
  .flex_content .content_text h2{
    font-size:24px ;
  }
  .flex_content .content_text{
    gap:16px;
  }

}
