:root {
  --primary-color: #6E54F5;
  --second-color:#F8EDFE;
  --second-color-dark:#EBC6FF;
  --stroke-color:#DBDAF0;
  --bg-color: #FFF8F2;
  --field-bg: var(--bg-color);
  --btn-primary-background:var(--primary-color);
  --btn-primary-color:white; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-black); }

body.bg-1 {
  background-color: var(--bg-color); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter';
  font-weight: 700; }

.heading-primary {
  font-family: 'Inter';
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0; }
  @media (max-width: 573px) {
    .heading-primary {
      font-size: 36px; } }

.margin-bottom-medium {
  margin-bottom: 30px; }

.margin-bottom-big {
  margin-bottom: 50px; }

p {
  margin-bottom: 0; }

.row {
  box-sizing: border-box; }

.btn-custom-primary {
  background-color: var(--btn-primary-background);
  color: var(--btn-primary-color);
  font-size: 18px;
  border: none;
  padding: 10px 40px;
  font-weight: 600;
  border-radius: 50px;
  width: 100%; }

.btn-custom-primary:hover {
  opacity: 0.8;
  transition: all .2s;
  background-color: var(--btn-primary-background);
  color: var(--btn-primary-color); }

.form-control, .form-select {
  background-color: var(--field-bg);
  border: 1px solid transparent; }
  .form-control:focus, .form-select:focus {
    border-color: black;
    box-shadow: none;
    background-color: var(--field-bg); }

textarea.form-control {
  border-radius: 20px; }

select.form-select {
  border-radius: 50px;
  height: 50px; }

a {
  color: var(--primary-color); }

.searchBar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; }

#searchQueryInput {
  width: 100%;
  max-width: 600px;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 50px;
  padding: 25px 30px;
  font-size: 25px; }

#searchQuerySubmit {
  width: 60px;
  height: 60px;
  align-items: center;
  background-color: var(--primary-color);
  margin-left: -75px;
  border: none;
  border-radius: 50%; }

#searchQuerySubmit:hover {
  cursor: pointer; }

.pagination,
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px; }
  @media (max-width: 573px) {
    .pagination,
    .page-numbers {
      gap: 8px; } }

.pagination {
  margin-top: 40px; }

.btn-nav,
.btn-page {
  border-radius: 50%;
  background-color: var(--color-white);
  cursor: pointer; }

.btn-nav {
  width: 60px;
  height: 60px;
  border: none;
  background-color: rgba(236, 233, 228, 0.5); }
  @media (max-width: 573px) {
    .btn-nav {
      width: 40px;
      height: 40px; } }
  @media (max-width: 573px) {
    .btn-nav svg {
      width: 35px;
      height: 35px; } }

.btn-page {
  border: none;
  width: 60px;
  height: 60px;
  font-size: 25px;
  font-weight: 600; }
  @media (max-width: 573px) {
    .btn-page {
      width: 40px;
      height: 40px;
      font-size: 20px; } }

.btn-page:hover {
  background-color: var(--btn-hover);
  transition: all .2s; }

.btn-selected {
  background-color: var(--primary-color); }

.label-container {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 12px;
  margin-right: 20px;
  cursor: pointer;
  font-size: 22px;
  white-space: nowrap; }

.label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #C9D3CC;
  border-radius: 3px; }

.label-container input:checked ~ .checkmark {
  background-color: var(--primary-color-dark); }

.checkmark:after {
  content: "";
  position: absolute;
  display: none; }

.label-container input:checked ~ .checkmark:after {
  display: block; }

.label-container .checkmark:after {
  left: 9px;
  top: 2px;
  width: 6px;
  height: 14px;
  border: solid var(--color-black);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

nav {
  margin: 20px 0 40px 0; }
  nav .logo {
    width: 300px; }
    @media (max-width: 991px) {
      nav .logo {
        width: 250px; } }
  nav .navbar-toggler {
    border: none; }
    nav .navbar-toggler span {
      display: none; }
    nav .navbar-toggler svg {
      display: none; }
      @media (max-width: 991px) {
        nav .navbar-toggler svg {
          display: block; } }
  nav .navbar-toggler:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none; }
  nav .navbar-nav .dropdown button {
    font-size: 18px; }
  nav .navbar-nav .nav-link {
    color: var(--color-black);
    font-weight: 400;
    font-size: 18px; }
    nav .navbar-nav .nav-link button {
      color: var(--color-black);
      font-weight: 400;
      font-size: 18px; }
  @media (max-width: 991px) {
    nav .submit-btn {
      text-align: center; } }

.footer-section {
  padding: 10px; }
  .footer-section .logo {
    width: 300px; }
    @media (max-width: 991px) {
      .footer-section .logo {
        width: 250px; } }
  @media (max-width: 991px) {
    .footer-section {
      text-align: center; } }
  .footer-section .footer-content .heading {
    margin-bottom: 15px; }
    .footer-section .footer-content .heading h1 {
      font-size: 25px;
      font-weight: 700;
      white-space: nowrap; }
  .footer-section .footer-content .links {
    display: flex;
    flex-direction: column; }
    .footer-section .footer-content .links .link {
      text-decoration: none;
      font-size: 16px;
      color: var(--footer-link);
      font-weight: 400;
      margin-bottom: 10px; }
  .footer-section .social-icons {
    display: flex;
    align-items: center; }
    @media (max-width: 991px) {
      .footer-section .social-icons {
        justify-content: center; } }
    .footer-section .social-icons .social-link {
      text-decoration: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--primary-color-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px; }
      .footer-section .social-icons .social-link i {
        color: var(--color-black);
        font-size: 24px; }
    .footer-section .social-icons .social-link:hover {
      background-color: #e0ffd0;
      transition: all .2s; }
  .footer-section .copyright p {
    font-size: 18px;
    color: var(--footer-link);
    font-weight: 400; }
