/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/index.scss ***!
  \****************************************************************************************************************/
  @import url(https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Spline+Sans:wght@400;500;600;700&display=swap);
  /*!********************************************************************************************************************!*\
    !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/index.scss (1) ***!
    \********************************************************************************************************************/
  :root {
    --font-sans-serif: Spline Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    --font-sans: Fraunces, serif;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-light: #f1f1f1;
    --color-dark: #212340;
    --color-text: #373739;
    --color-heading: #3d3d4d;
    --color-very-pale-blue: #f8fcff;
    --color-very-pale-violet: #fefdff;
    --color-light-grayish-red: #fee9ec;
    --color-very-soft-red: #febccc;
    --color-very-pale-red: #ff9db5;
    --color-very-dark-grayish-pink: #59474c;
    --color-very-dark-grayish-blue: #444453;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 3rem;
  }
  
  body {
    font-family: "Spline Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #373739;
  }
  
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    color: rgba(61, 61, 77, 0.96);
    margin-bottom: 1rem;
    line-height: 1.25;
  }
  
  h1,
  .h1 {
    font-size: 2rem;
  }
  @media (min-width: 768px) {
    h1,
    .h1 {
      font-size: 2.5rem;
    }
  }
  @media (min-width: 992px) {
    h1,
    .h1 {
      font-size: 3rem;
    }
  }
  @media (min-width: 1200px) {
    h1,
    .h1 {
      font-size: 4rem;
    }
  }
  
  h2,
  .h2 {
    font-size: 1.75rem;
  }
  @media (min-width: 992px) {
    h2,
    .h2 {
      font-size: 2rem;
    }
  }
  
  h3,
  .h3 {
    font-size: 1.375rem;
  }
  @media (min-width: 992px) {
    h3,
    .h3 {
      font-size: 1.5rem;
    }
  }
  
  h4,
  .h4 {
    font-size: 1.125rem;
  }
  @media (min-width: 992px) {
    h4,
    .h4 {
      font-size: 1.25rem;
    }
  }
  
  h5,
  .h5 {
    font-size: 1rem;
  }
  
  p:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }
  
  a {
    text-decoration: none;
    color: initial;
    transition: 150ms;
  }
  
  a:not(:disabled),
  button:not(:disabled),
  input[type=submit]:not(:disabled) {
    cursor: pointer;
  }
  
  #app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .container {
    --container-width: 100%;
    --container-padding-x: 1rem;
    --container-padding-y: 0;
    max-width: var(--container-width);
    padding: var(--container-padding-y) var(--container-padding-x);
    margin-inline: auto;
  }
  @media (min-width: 576px) {
    .container {
      --container-padding-x: 0;
      --container-width: 540px;
    }
  }
  @media (min-width: 768px) {
    .container {
      --container-width: 720px;
    }
  }
  @media (min-width: 992px) {
    .container {
      --container-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .container {
      --container-width: 1080px;
    }
  }
  
  .main-sections {
    flex-grow: 1;
    padding-top: 10rem;
  }
  
  .section {
    padding-block: 4rem;
  }
  @media (min-width: 992px) {
    .section {
      padding-block: 5rem;
    }
  }
  @media (min-width: 1200px) {
    .section {
      padding-block: 6rem;
    }
  }
  .section-header {
    margin-bottom: 4rem;
  }
  
  .list-reboot, .social-media, .navbar-nav {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .list-reboot li, .social-media li, .navbar-nav li {
    display: flex;
    flex-direction: column;
  }
  
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  
  .icon {
    transition: 300ms;
  }
  
  .link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
    transition: 300ms;
  }
  .link:hover, .link:active, .link:focus, .link.active {
    gap: 0.5rem;
  }
  
  .bg-holder {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .hero-section {
    padding-top: 0;
  }
  
  .line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .line-clamp-2 {
    -webkit-line-clamp: 2;
  }
  .line-clamp-3 {
    -webkit-line-clamp: 3;
  }
  
  .text-left {
    text-align: left !important;
  }
  .text-center {
    text-align: center !important;
  }
  .text-right {
    text-align: right !important;
  }
  
  .text-center {
    text-align: center;
  }
  .text-start {
    text-align: start;
  }
  .text-end {
    text-align: right;
  }
  .text-uppercase {
    text-transform: uppercase;
  }
  .text-capitalize {
    text-transform: capitalize;
  }
  .text-underline {
    text-decoration: underline;
  }
  .text-underline-none {
    text-decoration: none;
  }
  
  .flex {
    display: flex;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row {
    flex-direction: column;
  }
  
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .items-end {
    align-items: flex-end;
  }
  .items-end {
    align-items: stretch;
  }
  
  .justify-center {
    justify-content: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-around {
    justify-content: space-around;
  }
  .justify-evenly {
    justify-content: space-evenly;
  }
  
  .grid {
    display: grid;
  }
  .grid-cols-1 {
    grid-template-columns: 1fr;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .fw-normal {
    font-weight: 400;
  }
  .fw-light {
    font-weight: 300;
  }
  .fw-medium {
    font-weight: 500;
  }
  .fw-semibold {
    font-weight: 600;
  }
  .fw-bold {
    font-weight: 700;
  }
  .fw-bolder {
    font-weight: 800;
  }
  .fw-black {
    font-weight: 900;
  }
  
  .btn, .gb-calendar-prev, .gb-calendar-next, .post-tags a, .post-tags-cloud a, .nav-link, .navbar-toggle, .dropdown-link, .dropdown-toggle {
    --btn-padding-x: 1.5rem;
    --btn-padding-y: 0.75rem;
    --btn-font-size: 1rem;
    --btn-font-weight: 600;
    --btn-line-height: 1;
    --btn-border-width: 1px;
    --btn-border-style: solid;
    --btn-border-color: transparent;
    --btn-bg-color: transparent;
    --btn-text-color: #373739;
    --btn-border-radius: 0;
    border: var(--btn-border-width) var(--btn-border-style) var(--btn-border-color);
    background-color: var(--btn-bg-color);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    line-height: var(--btn-line-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--btn-text-color);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-radius: var(--btn-border-radius);
    text-decoration: none;
    transition: background-color 300ms, color 300ms, border 300ms;
  }
  @media (min-width: 992px) {
    .btn, .gb-calendar-prev, .gb-calendar-next, .post-tags a, .post-tags-cloud a, .nav-link, .navbar-toggle, .dropdown-link, .dropdown-toggle {
      --btn-padding-x: 2rem;
      --btn-padding-y: 1rem;
    }
  }
  .btn:hover:not(:disabled), .gb-calendar-prev:hover:not(:disabled), .gb-calendar-next:hover:not(:disabled), .post-tags a:hover:not(:disabled), .post-tags-cloud a:hover:not(:disabled), .nav-link:hover:not(:disabled), .navbar-toggle:hover:not(:disabled), .dropdown-link:hover:not(:disabled), .dropdown-toggle:hover:not(:disabled), .btn:active:not(:disabled), .gb-calendar-prev:active:not(:disabled), .gb-calendar-next:active:not(:disabled), .post-tags a:active:not(:disabled), .post-tags-cloud a:active:not(:disabled), .nav-link:active:not(:disabled), .navbar-toggle:active:not(:disabled), .dropdown-link:active:not(:disabled), .dropdown-toggle:active:not(:disabled), .btn:focus:not(:disabled), .gb-calendar-prev:focus:not(:disabled), .gb-calendar-next:focus:not(:disabled), .post-tags a:focus:not(:disabled), .post-tags-cloud a:focus:not(:disabled), .nav-link:focus:not(:disabled), .navbar-toggle:focus:not(:disabled), .dropdown-link:focus:not(:disabled), .dropdown-toggle:focus:not(:disabled), .btn.active:not(:disabled), .active.gb-calendar-prev:not(:disabled), .active.gb-calendar-next:not(:disabled), .post-tags a.active:not(:disabled), .post-tags-cloud a.active:not(:disabled), .active.nav-link:not(:disabled), .active.navbar-toggle:not(:disabled), .active.dropdown-link:not(:disabled), .active.dropdown-toggle:not(:disabled) {
    --btn-border-color: transparent;
    --btn-bg-color: transparent;
    --btn-text-color: #000000;
  }
  .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .btn-sm, .nav-link, .dropdown-link {
    --btn-padding-x: 0.875rem;
    --btn-padding-y: 0.375rem;
  }
  @media (min-width: 992px) {
    .btn-sm, .nav-link, .dropdown-link {
      --btn-padding-x: 1rem;
      --btn-padding-y: 0.5rem;
    }
  }
  .btn-lg {
    --btn-padding-x: 2rem;
    --btn-padding-y: 1rem;
  }
  @media (min-width: 992px) {
    .btn-lg {
      --btn-padding-x: 2.5rem;
      --btn-padding-y: 1.25rem;
    }
  }
  .btn-1, .gb-calendar-prev, .gb-calendar-next {
    --btn-border-color: #febccc;
    --btn-bg-color: #febccc;
    --btn-text-color: #ffffff;
  }
  .btn-1:hover:not(:disabled), .gb-calendar-prev:hover:not(:disabled), .gb-calendar-next:hover:not(:disabled), .btn-1:active:not(:disabled), .gb-calendar-prev:active:not(:disabled), .gb-calendar-next:active:not(:disabled), .btn-1:focus:not(:disabled), .gb-calendar-prev:focus:not(:disabled), .gb-calendar-next:focus:not(:disabled), .btn-1.active:not(:disabled), .active.gb-calendar-prev:not(:disabled), .active.gb-calendar-next:not(:disabled) {
    --btn-border-color: #ff9db5;
    --btn-bg-color: #ff9db5;
    --btn-text-color: #ffffff;
  }
  .btn-2 {
    --btn-border-color: rgba(68, 68, 83, 0.25);
    --btn-bg-color: transparent;
    --btn-text-color: #444453;
  }
  .btn-2:hover:not(:disabled), .btn-2:active:not(:disabled), .btn-2:focus:not(:disabled), .btn-2.active:not(:disabled) {
    --btn-border-color: #444453;
    --btn-bg-color: #444453;
    --btn-text-color: #ffffff;
  }
  .btn-3, .nav-link, .dropdown-link {
    --btn-border-color: transparent;
    --btn-bg-color: transparent;
    --btn-text-color: #212340;
  }
  .btn-3:hover:not(:disabled), .nav-link:hover:not(:disabled), .dropdown-link:hover:not(:disabled), .btn-3:active:not(:disabled), .nav-link:active:not(:disabled), .dropdown-link:active:not(:disabled), .btn-3:focus:not(:disabled), .nav-link:focus:not(:disabled), .dropdown-link:focus:not(:disabled), .btn-3.active:not(:disabled), .active.nav-link:not(:disabled), .active.dropdown-link:not(:disabled) {
    --btn-border-color: #ffc4d2;
    --btn-bg-color: #ffc4d2;
    --btn-text-color: #212340;
  }
  
  .card {
    --card-bg-color: #ffffff;
    --card-border-width: 1px;
    --card-border-style: solid;
    --card-border-color: #f1f1f1;
    --card-border-radius: 0.375rem;
    --card-padding-x: 1rem;
    --card-padding-y: 1rem;
    background-color: var(--card-bg-color);
    border: var(--card-border-width) var(--card-border-style) var(--card-border-color);
    border-radius: var(--card-border-radius);
    display: flex;
    flex-direction: column;
  }
  .card-body {
    flex: 1;
    padding: var(--card-padding-y) var(--card-padding-x);
  }
  
  .form-group {
    --input-width: 100%;
    --input-padding-x: 1rem;
    --input-padding-y: 0.625rem;
    --input-border-width: 1px;
    --input-border-style: solid;
    --input-border-color: rgba(33, 35, 64, 0.2);
    --input-outline-width: 1px;
    --input-outline-style: solid;
    --input-outline-color: rgba(33, 35, 64, 0.2);
    --input-border-radius: 1.25rem;
    --input-bg: transparent;
    --input-color: $dark;
    --input-placeholder-color: rgba(33, 35, 64, 0.6);
    --input-font-size: 1rem;
    --input-font-weight: 400;
    --input-font-family: Spline Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    --input-label-color: #3d3d4d;
    --input-label-padding-x: 0;
    --input-label-padding-y: 0.5rem;
  }
  .form-label {
    --input-font-weight: 600;
    font-family: var(--input-font-family);
    font-size: var(--input-font-size);
    font-weight: var(--input-font-weight);
    margin-bottom: var(--input-label-padding-y);
    display: flex;
  }
  .form-control, .form-select {
    appearance: none;
    width: var(--input-width);
    border: var(--input-border-width) var(--input-border-style) var(--input-border-color);
    outline: var(--input-outline-width) var(--input-outline-style) var(--input-outline-color);
    background-color: var(--input-bg);
    padding: var(--input-padding-y) var(--input-padding-x);
    color: var(--input-color);
    font-family: var(--input-font-family);
    font-size: var(--input-font-size);
    font-weight: var(--input-font-weight);
    transition: color 300ms, border 300ms, outline 300ms, background 300ms;
    border-radius: var(--input-border-radius);
    resize: vertical;
  }
  .form-control::placeholder, .form-select::placeholder {
    color: var(--input-placeholder-color);
  }
  .form-control:focus, .form-select:focus {
    --input-border-color: rgba(33, 35, 64, 0.6);
    --input-outline-color: rgba(33, 35, 64, 0.6);
  }
  .form-select {
    vertical-align: -0.125em;
    background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" style=\"fill: %2321234099;\"><path d=\"m11.998 17 7-8h-14z\"></path></svg>");
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
    background-position: 97% center;
    padding-right: 2rem;
  }
  .form-mandatory {
    color: #fc0d35;
  }
  
  textarea.form-control {
    min-height: 8rem;
    max-height: 16rem;
  }
  
  .dropdown {
    position: relative;
    z-index: 0;
  }
  .dropdown-toggle {
    --btn-padding-x: 0.375rem;
    --btn-padding-y: 0.375rem;
    --btn-border-radius: 50rem;
    --btn-font-size: 0.875rem;
  }
  @media (min-width: 992px) {
    .dropdown-toggle {
      --btn-padding-x: 0;
      --btn-padding-y: 0;
      --btn-border-radius: 0;
    }
  }
  .dropdown-toggle > * {
    transition: 300ms;
  }
  .dropdown-toggle-wrapper {
    display: flex;
    gap: 0.375rem;
  }
  .dropdown-menu {
    position: absolute;
    top: 125%;
    left: 0;
    min-width: 12rem;
    background-color: #ffffff;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
    border-radius: 0.5rem;
    box-shadow: 0 0.375rem 1rem 0 rgba(0, 0, 0, 0.05);
  }
  .dropdown-menu > .dropdown-menu-wrapper {
    overflow: hidden;
  }
  .dropdown-list {
    padding-block: 0.5rem;
  }
  .dropdown-link {
    --btn-font-weight: 400;
    --btn-border-width: 0;
    --btn-padding-y: 0.75rem;
    text-align: left;
    justify-content: flex-start;
  }
  .dropdown-link:hover:not(:disabled), .dropdown-link:focus:not(:disabled) {
    --btn-border-color: rgba(255, 196, 210, 0.25);
    --btn-bg-color: rgba(255, 196, 210, 0.25);
    --btn-text-color: #212340;
  }
  .dropdown-link:active:not(:disabled), .dropdown-link.active:not(:disabled) {
    --btn-border-color: #ffc4d2;
    --btn-bg-color: #ffc4d2;
    --btn-text-color: #212340;
  }
  .dropdown.active .nav-link {
    --btn-border-color: #ffc4d2;
    --btn-bg-color: #ffc4d2;
    --btn-text-color: #212340;
  }
  .dropdown.active .dropdown-toggle {
    --btn-bg-color: #ffffff;
    --btn-text-color: #ff9db5;
  }
  .dropdown.active .dropdown-toggle > * {
    transform: rotate(180deg);
  }
  .dropdown.active .dropdown-menu {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
  }
  @media (min-width: 992px) {
    .dropdown:hover .nav-link {
      --btn-border-color: #ffc4d2;
      --btn-bg-color: #ffc4d2;
      --btn-text-color: #212340;
    }
    .dropdown:hover .dropdown-toggle {
      --btn-bg-color: #ffffff;
      --btn-text-color: #ff9db5;
    }
    .dropdown:hover .dropdown-toggle > * {
      transform: rotate(180deg);
    }
    .dropdown:hover .dropdown-menu {
      grid-template-rows: 1fr;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .breadcrumb {
    padding-block: 1rem;
  }
  .breadcrumb-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .breadcrumb-list li {
    color: rgba(0, 0, 0, 0.5);
  }
  .breadcrumb-list li:not(:last-of-type):after {
    content: "/";
    display: inline-block;
    margin-inline: 0.5rem;
    color: #212340;
  }
  .breadcrumb-link {
    color: #ff9db5;
  }
  .breadcrumb-link:hover {
    opacity: 0.75;
  }
  
  .message-warning {
    color: #fc0d35;
  }
  .message-warning h3,
  .message-warning .h3,
  .message-warning h4,
  .message-warning .h4 {
    color: inherit;
  }
  .message-warning ul {
    padding-left: 1rem;
    display: grid;
    gap: 0.5rem;
  }
  .message-warning ul li {
    color: currentColor;
  }
  .message-success {
    color: #2fdd77;
  }
  .message-success h3,
  .message-success .h3,
  .message-success h4,
  .message-success .h4 {
    color: inherit;
  }
  .message-success ul {
    padding-left: 1rem;
    display: grid;
    gap: 0.5rem;
  }
  .message-success ul li {
    color: currentColor;
  }
  
  .responsive-table {
    overflow: auto;
  }
  
  table,
  .table {
    --table-border-width: 1px;
    --table-border-style: solid;
    --table-border-color: #f1f1f1;
    --table-padding-x: 0.5rem;
    --table-padding-y: 0.375rem;
    --table-font-size: 1rem;
    --table-font-weight: 400;
    --table-line-height: 1;
    border: var(--table-border-width) var(--table-border-style) var(--table-border-color);
    border-collapse: collapse;
    width: 100%;
  }
  table tbody tr:last-of-type th,
  table tbody tr:last-of-type td,
  .table tbody tr:last-of-type th,
  .table tbody tr:last-of-type td {
    border-bottom: 0;
  }
  table tr th,
  .table tr th {
    --table-font-weight: 600;
  }
  table tr th,
  table tr td,
  .table tr th,
  .table tr td {
    border-collapse: collapse;
    border-width: 0 var(--table-border-width) var(--table-border-width) 0;
    border-style: var(--table-border-style);
    border-color: var(--table-border-color);
    padding: var(--table-padding-y) var(--table-padding-x);
    font-size: var(--table-font-size);
    font-weight: var(--table-font-weight);
    line-height: var(--table-line-height);
  }
  table tr th:last-of-type,
  table tr td:last-of-type,
  .table tr th:last-of-type,
  .table tr td:last-of-type {
    border-right: 0;
  }
  
  .navbar-main {
    --navbar-bg-color: transparent;
    --navbar-padding-x: 0;
    --navbar-padding-y: 0.5rem;
    background-color: var(--navbar-bg-color);
    padding: var(--navbar-padding-y) var(--navbar-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  @media (min-width: 768px) {
    .navbar-main {
      --navbar-padding-y: 1rem;
      justify-content: space-between;
    }
  }
  .navbar-brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: calc(var(--navbar-padding-y) / 4);
    transition: opacity 300ms;
  }
  .navbar-brand:hover {
    opacity: 0.75;
  }
  .navbar-brand img {
    width: 22rem;
    transition: 300ms;
  }
  @media (min-width: 576px) {
    .navbar-brand img {
      width: 14rem;
    }
  }
  @media (min-width: 992px) {
    .navbar-brand img {
      width: 22rem;
    }
  }
  @media (min-width: 992px) {
    .navbar-nav {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
  }
  .navbar-toggle {
    --btn-padding-x: 0;
    --btn-padding-y: 0;
    flex-shrink: 0;
    flex-direction: column;
    gap: 0.5rem;
  }
  @media (min-width: 992px) {
    .navbar-toggle {
      display: none;
    }
  }
  .navbar-toggle > span {
    width: 2rem;
    height: 0.125rem;
    background-color: #212340;
    border-radius: 50rem;
    transition: 300ms;
  }
  .navbar-toggle.active span:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .navbar-toggle.active span:nth-of-type(2) {
    opacity: 0;
  }
  .navbar-toggle.active span:nth-of-type(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  @media (max-width: 991.98px) {
    .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: 1050;
      background-color: #f8fcff;
      border-top: 1px solid #f1f1f1;
      overflow: hidden auto;
      padding-bottom: 6rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 300ms, visibility 300ms;
    }
    .navbar-collapse.show {
      opacity: 1;
      visibility: visible;
    }
    .navbar-collapse .navbar-nav {
      max-width: 720px;
      margin-inline: auto;
    }
    .navbar-collapse .nav-link {
      flex: 1;
      justify-content: flex-start;
      border-width: 0 var(--btn-border-width) var(--btn-border-width) var(--btn-border-width);
      min-height: 2.5rem;
    }
    .navbar-collapse .nav-item:not(.dropdown) .nav-link {
      padding-left: calc(1rem + var(--btn-padding-x) * 3);
    }
    .navbar-collapse .dropdown-toggle {
      --btn-padding-x: 1rem;
      --btn-padding-y: 0.75rem;
      --btn-border-radius: 0;
      border-width: 0 0 var(--btn-border-width) var(--btn-border-width);
    }
    .navbar-collapse .dropdown-toggle-wrapper {
      display: flex;
      flex-direction: row-reverse;
      gap: 0;
    }
    .navbar-collapse .dropdown-menu {
      position: static;
      top: auto;
      left: auto;
      border-radius: 0;
    }
    .navbar-collapse .btn, .navbar-collapse .gb-calendar-prev, .navbar-collapse .gb-calendar-next, .navbar-collapse .post-tags a, .post-tags .navbar-collapse a, .navbar-collapse .post-tags-cloud a, .post-tags-cloud .navbar-collapse a, .navbar-collapse .nav-link, .navbar-collapse .dropdown-toggle, .navbar-collapse .dropdown-link, .navbar-collapse .navbar-toggle {
      --btn-border-color: rgba(33, 35, 64, 0.1);
    }
  }
  @media (max-width: 767.98px) {
    .navbar-collapse .navbar-nav {
      max-width: 540px;
    }
  }
  
  @media (min-width: 992px) {
    .nav-link {
      --btn-border-radius: 50rem;
    }
  }
  
  .ice-cream-grid {
    display: grid;
    gap: 4rem 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  }
  .ice-cream-item {
    max-width: 232px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
  }
  .ice-cream-item:hover .ice-cream-wrapper img {
    transform: translate(1rem, -1rem);
  }
  .ice-cream-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    border-radius: 2rem;
    width: 232px;
    height: 232px;
    margin-inline: auto;
    transition: 300ms;
  }
  .ice-cream-wrapper img {
    width: 128px;
    max-height: 292px;
    transition: 300ms;
  }
  .ice-cream-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.125rem;
  }
  .ice-cream-header .btn, .ice-cream-header .gb-calendar-prev, .ice-cream-header .gb-calendar-next, .ice-cream-header .post-tags a, .post-tags .ice-cream-header a, .ice-cream-header .post-tags-cloud a, .post-tags-cloud .ice-cream-header a, .ice-cream-header .dropdown-toggle, .ice-cream-header .dropdown-link, .ice-cream-header .navbar-toggle, .ice-cream-header .nav-link {
    --btn-padding-x: 0.625rem;
    --btn-padding-y: 0.375rem;
    --btn-font-size: 0.875rem;
    --btn-font-weight: 500;
    --btn-text-color: #ffffff;
    --btn-border-radius: 50rem;
    flex-shrink: 0;
  }
  .ice-cream-header .btn:hover, .ice-cream-header .gb-calendar-prev:hover, .ice-cream-header .gb-calendar-next:hover, .ice-cream-header .post-tags a:hover, .post-tags .ice-cream-header a:hover, .ice-cream-header .post-tags-cloud a:hover, .post-tags-cloud .ice-cream-header a:hover, .ice-cream-header .dropdown-toggle:hover, .ice-cream-header .dropdown-link:hover, .ice-cream-header .navbar-toggle:hover, .ice-cream-header .nav-link:hover, .ice-cream-header .btn:active, .ice-cream-header .gb-calendar-prev:active, .ice-cream-header .gb-calendar-next:active, .ice-cream-header .post-tags a:active, .post-tags .ice-cream-header a:active, .ice-cream-header .post-tags-cloud a:active, .post-tags-cloud .ice-cream-header a:active, .ice-cream-header .dropdown-toggle:active, .ice-cream-header .dropdown-link:active, .ice-cream-header .navbar-toggle:active, .ice-cream-header .nav-link:active, .ice-cream-header .btn:focus, .ice-cream-header .gb-calendar-prev:focus, .ice-cream-header .gb-calendar-next:focus, .ice-cream-header .post-tags a:focus, .post-tags .ice-cream-header a:focus, .ice-cream-header .post-tags-cloud a:focus, .post-tags-cloud .ice-cream-header a:focus, .ice-cream-header .dropdown-toggle:focus, .ice-cream-header .dropdown-link:focus, .ice-cream-header .navbar-toggle:focus, .ice-cream-header .nav-link:focus, .ice-cream-header .btn.active, .ice-cream-header .active.gb-calendar-prev, .ice-cream-header .active.gb-calendar-next, .ice-cream-header .post-tags a.active, .post-tags .ice-cream-header a.active, .ice-cream-header .post-tags-cloud a.active, .post-tags-cloud .ice-cream-header a.active, .ice-cream-header .active.dropdown-toggle, .ice-cream-header .active.dropdown-link, .ice-cream-header .active.navbar-toggle, .ice-cream-header .active.nav-link {
    opacity: 0.75;
    color: #212340;
  }
  .ice-cream-title {
    margin-bottom: 0;
  }
  .ice-cream-title a {
    color: #4e3b40;
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 700;
  }
  .ice-cream-title:hover a {
    color: #ff9db5;
  }
  .ice-cream-desc {
    color: #4e3b40;
    margin-bottom: auto;
  }
  
  .social-media {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .social-media-link {
    font-size: 1rem;
    color: #ffffff;
    background-color: #ffb7c8;
    width: 2rem;
    height: 2rem;
    border-radius: 50rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
  }
  .social-media-link:hover {
    background-color: #ff9db5;
  }
  
  .post-section {
    padding-top: 0;
  }
  .post-section .section-header {
    margin-bottom: 2rem;
  }
  .post-banner {
    text-align: center;
  }
  .post-banner img {
    border-radius: 0.5rem;
    object-fit: cover;
    object-position: center;
    max-height: 360px;
    width: 100%;
  }
  .post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }
  .post-grid-layout {
    display: grid;
    gap: 2rem;
  }
  @media (min-width: 992px) {
    .post-grid-layout {
      grid-template-columns: 1fr 280px;
    }
  }
  .post-item {
    display: flex;
    flex-direction: column;
  }
  .post-item:hover .post-thumbnail img {
    transform: scale(1.1);
  }
  .post-title {
    color: #3d3d4d;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .post-title a {
    color: #3d3d4d;
  }
  .post-title a:hover, .post-title a:active, .post-title a:focus {
    color: #ff9db5;
  }
  .post-thumbnail {
    border-radius: 0.5rem;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 1rem;
    border: 1px solid #f1f1f1;
  }
  .post-thumbnail img {
    border-radius: inherit;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: 300ms;
  }
  .post-thumbnail-caption {
    font-size: 0.75rem;
    color: #444453;
    text-align: center;
  }
  .post-meta {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #212340;
    margin-bottom: 0.5rem;
  }
  .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
  }
  .post-tags-title {
    font-weight: 500;
    color: #212340;
  }
  .post-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    font-size: 0.75rem;
  }
  .post-tags a, .post-tags-cloud a {
    --btn-padding-x: 0.5rem;
    --btn-padding-y: 0.1875rem;
    --btn-font-size: 0.75rem;
    --btn-font-weight: 500;
    --btn-border-color: #febccc;
    --btn-bg-color: #febccc;
    --btn-text-color: #ffffff;
    --btn-border-radius: 50rem;
  }
  .post-tags a:hover:not(:disabled), .post-tags a:active:not(:disabled), .post-tags a:focus:not(:disabled), .post-tags a.active:not(:disabled), .post-tags-cloud a:hover:not(:disabled), .post-tags-cloud a:active:not(:disabled), .post-tags-cloud a:focus:not(:disabled), .post-tags-cloud a.active:not(:disabled) {
    --btn-border-color: #ff9db5;
    --btn-bg-color: #ff9db5;
    --btn-text-color: #ffffff;
  }
  .post-sidebar .card-body {
    display: grid;
    gap: 1.5rem;
  }
  .post-sidebar-title {
    margin-bottom: 0.5rem;
  }
  .post-sidebar-list {
    display: grid;
    gap: 0.25rem;
    padding-left: 1rem;
  }
  .post-sidebar-list a {
    color: #373739;
    transition: color 300ms;
  }
  .post-sidebar-list a:hover {
    color: #ff9db5;
  }
  .post-single .post-meta {
    font-size: 0.75rem;
    color: #212340;
    margin-bottom: 1rem;
    justify-content: flex-start;
    gap: 1rem;
  }
  .post-single .post-tags {
    margin-bottom: 1.5rem;
  }
  .post-single .post-desc {
    margin-bottom: 2rem;
  }
  .post-single ul,
  .post-single ol {
    padding-left: 2.5rem;
    margin-bottom: 2rem;
  }
  .post-comments {
    color: #373739;
    margin-bottom: 2rem;
  }
  .post-comments-list {
    padding: 0 !important;
    margin: 0 0 2rem !important;
    list-style-type: none;
    display: grid;
    gap: 1.5rem;
  }
  .post-comments-item-title {
    margin-bottom: 0.25rem;
  }
  .post-comments-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  .post-comments-message {
    color: #212340;
  }
  .post-block-item {
    margin-top: 2.5rem;
  }
  .post-block-item-list {
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .post-block-item-list li {
    word-wrap: break-word;
  }
  
  .gb-calendar-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
  }
  .gb-calendar-prev, .gb-calendar-next {
    --btn-border-radius: 50rem;
    --btn-padding-x: 0.5rem;
    --btn-padding-y: 0.25rem;
    --btn-font-size: 1rem;
  }
  .gb-calendar table,
  .gb-calendar .table {
    --table-padding-x: 0.25rem;
    --table-padding-y: 0.25rem;
    --table-font-size: 0.875rem;
  }
  .gb-calendar table th,
  .gb-calendar table td,
  .gb-calendar .table th,
  .gb-calendar .table td {
    vertical-align: middle;
    text-align: center;
  }
  .gb-calendar table td,
  .gb-calendar .table td {
    transition: 300ms;
  }
  .gb-calendar table td:hover,
  .gb-calendar .table td:hover {
    color: #000000;
    background-color: #fee9ec;
  }
  
  .shop-basket .form-group {
    --input-padding-x: 0.75rem;
    --input-padding-y: 0.375rem;
    --input-font-size: 0.75rem;
  }
  .shop-basket .form-control {
    max-width: 5rem;
  }
  .shop-basket table th,
  .shop-basket .table th {
    text-align: left;
  }
  .shop-basket table th,
  .shop-basket table td,
  .shop-basket .table th,
  .shop-basket .table td {
    padding-block: 0.5rem;
  }
  
  .footer-main {
    margin-top: auto;
    display: grid;
    color: #4e3b40;
  }
  .footer-main .our-social-presence {
    padding-block: 3rem;
    order: 1;
  }
  @media (min-width: 768px) {
    .footer-main .our-social-presence {
      order: 0;
    }
  }
  .footer-main .our-social-presence .social-media {
    justify-content: center;
  }
  @media (min-width: 992px) {
    .footer-main .our-social-presence .social-media {
      justify-content: flex-start;
    }
  }
  .footer-widgets {
    padding-top: 3rem;
  }
  @media (min-width: 768px) {
    .footer-widgets {
      padding-top: 0;
    }
  }
  .footer-widgets .grid {
    display: grid;
    gap: 3rem 6rem;
  }
  @media (min-width: 992px) {
    .footer-widgets .grid {
      grid-template-columns: 320px 1fr;
    }
  }
  .footer-widgets .grid-item {
    text-align: center;
  }
  @media (min-width: 992px) {
    .footer-widgets .grid-item {
      text-align: left;
    }
  }
  .footer-widgets .widget-list {
    display: grid;
    gap: 3rem;
  }
  @media (min-width: 768px) {
    .footer-widgets .widget-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (min-width: 992px) {
    .footer-widgets .widget-list {
      gap: 3rem 4rem;
    }
  }
  .footer-widgets .widget-item .h2 {
    color: #4e3b40;
  }
  .footer-widgets .widget-item address {
    line-height: 2;
  }
  .footer-widgets .widget-item a:hover, .footer-widgets .widget-item a:active, .footer-widgets .widget-item a:focus, .footer-widgets .widget-item a.active {
    color: #212340;
  }
  .footer-desc {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (min-width: 992px) {
    .footer-desc {
      margin-left: 0;
    }
  }
  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }
  @media (min-width: 768px) {
    .footer-brand {
      justify-content: flex-start;
    }
  }
  .footer-brand img {
    width: 10rem;
  }
  .footer-copyright {
    padding-top: 3rem;
    text-align: center;
  }
  @media (min-width: 768px) {
    .footer-copyright {
      padding-block: 3rem;
    }
  }
  
  .header-main {
    background-color: #f8fcff;
    position: fixed;
    z-index: 1040;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0.375rem 1rem 0 rgba(0, 0, 0, 0.05);
  }
  
  .hero-home {
    text-align: center;
    background-color: var(--hero-bg-color);
  }
  @media (min-width: 768px) {
    .hero-home {
      text-align: left;
    }
  }
  .hero-home .flex {
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
  }
  @media (min-width: 768px) {
    .hero-home .flex {
      flex-direction: row;
    }
    .hero-home .flex > * {
      flex: 1;
    }
  }
  .hero-home h1,
  .hero-home .h1 {
    font-family: "Fraunces", serif;
    margin-bottom: 2rem;
  }
  .hero-home p br {
    display: none;
  }
  @media (min-width: 576px) {
    .hero-home p br {
      display: block;
    }
  }
  .hero-home .shop-open-time {
    margin-bottom: 2rem;
    display: inline-block;
  }
  .hero-home .btn-group {
    justify-content: center;
  }
  @media (min-width: 768px) {
    .hero-home .btn-group {
      justify-content: flex-start;
    }
  }
  .hero-home .btn-group .btn, .hero-home .btn-group .dropdown-toggle, .hero-home .btn-group .dropdown-link, .hero-home .btn-group .navbar-toggle, .hero-home .btn-group .nav-link, .hero-home .btn-group .post-tags a, .post-tags .hero-home .btn-group a, .hero-home .btn-group .post-tags-cloud a, .post-tags-cloud .hero-home .btn-group a, .hero-home .btn-group .gb-calendar-prev, .hero-home .btn-group .gb-calendar-next {
    --btn-border-radius: 50rem;
  }
  .hero-home .section-img {
    display: flex;
    flex: 0 0 55%;
  }
  
  .featured-section {
    text-align: center;
    background-color: #ffffff;
    padding-bottom: 0;
  }
  @media (min-width: 768px) {
    .featured-section {
      text-align: left;
    }
  }
  .featured-section .flex {
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 2rem;
  }
  @media (min-width: 768px) {
    .featured-section .flex {
      flex-direction: row;
      gap: 3rem;
    }
    .featured-section .flex > * {
      flex: 1;
    }
  }
  .featured-section h1,
  .featured-section .h1 {
    font-family: "Fraunces", serif;
    margin-bottom: 2rem;
  }
  .featured-section p {
    margin-bottom: 2rem;
  }
  .featured-section .btn-group {
    justify-content: center;
  }
  @media (min-width: 768px) {
    .featured-section .btn-group {
      justify-content: flex-start;
    }
  }
  .featured-section .btn-group .btn, .featured-section .btn-group .dropdown-toggle, .featured-section .btn-group .dropdown-link, .featured-section .btn-group .navbar-toggle, .featured-section .btn-group .nav-link, .featured-section .btn-group .post-tags a, .post-tags .featured-section .btn-group a, .featured-section .btn-group .post-tags-cloud a, .post-tags-cloud .featured-section .btn-group a, .featured-section .btn-group .gb-calendar-prev, .featured-section .btn-group .gb-calendar-next {
    --btn-border-radius: 50rem;
  }
  .featured-section .section-img {
    display: flex;
    flex: 0 0 55%;
  }
  
  .popular-flavors {
    background-color: #ffffff;
  }
  .popular-flavors .section-header {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .popular-flavors .section-header h2,
  .popular-flavors .section-header .h2 {
    margin-bottom: 0;
    color: #212340;
  }
  .popular-flavors .section-header .link {
    --link-color: #74ccd2;
    color: var(--link-color);
  }
  .popular-flavors .section-header .link .icon * {
    fill: var(--link-color);
  }
  .popular-flavors .section-header .link:hover, .popular-flavors .section-header .link:active, .popular-flavors .section-header .link:focus, .popular-flavors .section-header .link.active {
    --link-color: #ff9db5;
  }
  
  .our-event {
    --bg-size: 124px;
    background-color: #ffffff;
  }
  @media (min-width: 768px) {
    .our-event {
      --bg-size: 144px;
    }
  }
  @media (min-width: 1400px) {
    .our-event {
      --bg-size: 184px;
    }
  }
  .our-event .card {
    --card-bg-color: transparent;
    --card-padding-x: 2rem;
    --card-padding-y: 5rem;
    --card-border-radius: 2rem;
    min-height: 464px;
    position: relative;
    z-index: 0;
  }
  .our-event .card .bg-holder {
    border-radius: inherit;
    background-position: 25% bottom;
  }
  .our-event .card .event-graphic-1, .our-event .card .event-graphic-2 {
    position: absolute;
    width: var(--bg-size);
    height: var(--bg-size);
    transition: 300ms;
    pointer-events: none;
  }
  .our-event .card .event-graphic-1 {
    top: 0;
    left: 100%;
    transform: translate(-100%, -50%);
  }
  @media (min-width: 992px) {
    .our-event .card .event-graphic-1 {
      left: 0;
      transform: translate(0%, -50%);
    }
  }
  @media (min-width: 1200px) {
    .our-event .card .event-graphic-1 {
      transform: translate(-50%, -50%);
    }
  }
  .our-event .card .event-graphic-2 {
    top: 100%;
    left: 0;
    transform: translate(0%, -50%);
  }
  @media (min-width: 992px) {
    .our-event .card .event-graphic-2 {
      left: 100%;
      transform: translate(-100%, -50%);
    }
  }
  @media (min-width: 1200px) {
    .our-event .card .event-graphic-2 {
      transform: translate(-50%, -50%);
    }
  }
  .our-event .card-body {
    display: grid;
  }
  .our-event .card .inner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 420px;
    height: 100%;
  }
  .our-event .card .inner-content .h2 {
    margin-bottom: 2rem;
  }
  .our-event .card .inner-content p {
    margin-bottom: 2rem;
  }
  .our-event .card .inner-content .btn, .our-event .card .inner-content .dropdown-toggle, .our-event .card .inner-content .dropdown-link, .our-event .card .inner-content .navbar-toggle, .our-event .card .inner-content .nav-link, .our-event .card .inner-content .post-tags a, .post-tags .our-event .card .inner-content a, .our-event .card .inner-content .post-tags-cloud a, .post-tags-cloud .our-event .card .inner-content a, .our-event .card .inner-content .gb-calendar-prev, .our-event .card .inner-content .gb-calendar-next {
    border-radius: 50rem;
  }
  
  .page-home {
    --page-bg-color: #f8fcff;
    background-color: var(--page-bg-color);
  }
  @media (min-width: 768px) {
    .page-home {
      --page-bg-color: #edf7fe;
    }
  }
  
  .page-menu {
    background-color: #f8fbfd;
  }
  
  .menu-section {
    padding-top: 0;
  }
  .menu-section .section-header {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .menu-section .section-header .h2 {
    margin-bottom: 0;
    flex: 0 0 100%;
  }
  @media (min-width: 576px) {
    .menu-section .section-header .h2 {
      flex: 0 0 auto;
    }
  }
  .menu-section .section-header a {
    border-radius: 50rem;
    color: #763f4c;
  }
  .menu-section .section-header a:hover, .menu-section .section-header a:active, .menu-section .section-header a:focus, .menu-section .section-header a.active {
    --btn-bg-color: rgba(255, 196, 210, 0.4);
  }
  
  .our-story {
    padding-top: 0;
  }
  .our-story .content {
    max-width: 960px;
    margin-inline: auto;
    padding-block: 4rem;
    text-align: center;
  }
  .our-story .ice-cream-wrapper {
    margin-bottom: 0;
  }
  
  .page-contact {
    background-color: #f8fbfd;
  }
  
  .contact-section {
    padding-top: 0;
  }
  .contact-section .section-header {
    margin-bottom: 2rem;
  }
  .contact-section ul {
    list-style-type: none;
  }
  .contact-section ul:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding-top: 0;
  }
  .contact-form .grid {
    display: grid;
    gap: 2rem;
  }
  @media (min-width: 992px) {
    .contact-form .grid {
      grid-template-columns: 1fr 280px;
    }
  }
  .contact-form .card {
    --card-border-radius: 1rem;
    --card-border-color: transparent;
  }
  @media (min-width: 576px) {
    .contact-form .card {
      --card-padding-x: 2rem;
      --card-padding-y: 2rem;
    }
  }
  .contact-form .card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-form .card-body .form-group-grid {
    display: grid;
    gap: 1.5rem;
  }
  @media (min-width: 768px) {
    .contact-form .card-body .form-group-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .contact-form .card-body .form-group-flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .contact-form .card-body .btn, .contact-form .card-body .dropdown-toggle, .contact-form .card-body .dropdown-link, .contact-form .card-body .navbar-toggle, .contact-form .card-body .nav-link, .contact-form .card-body .post-tags a, .post-tags .contact-form .card-body a, .contact-form .card-body .post-tags-cloud a, .post-tags-cloud .contact-form .card-body a, .contact-form .card-body .gb-calendar-prev, .contact-form .card-body .gb-calendar-next {
    --btn-border-radius: 50rem;
  }
  @media (min-width: 768px) {
    .contact-form .card-body .btn, .contact-form .card-body .dropdown-toggle, .contact-form .card-body .dropdown-link, .contact-form .card-body .navbar-toggle, .contact-form .card-body .nav-link, .contact-form .card-body .post-tags a, .post-tags .contact-form .card-body a, .contact-form .card-body .post-tags-cloud a, .post-tags-cloud .contact-form .card-body a, .contact-form .card-body .gb-calendar-prev, .contact-form .card-body .gb-calendar-next {
      align-self: flex-start;
    }
  }
  .contact-form .section-img {
    order: -1;
    display: flex;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
  }
  @media (min-width: 992px) {
    .contact-form .section-img {
      order: 0;
    }
  }
  .contact-form .section-img img {
    width: 232px;
    height: 232px;
    object-fit: cover;
    border-radius: inherit;
  }
  @media (min-width: 992px) {
    .contact-form .section-img img {
      width: auto;
      height: auto;
    }
  }
  @media (min-width: 1200px) {
    .contact-form .section-img img {
      width: 280px;
    }
  }
  