@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* =Import Required styles
========================================================================================*/

:root {
  /* Site global colours */

  --primary: #2A3694;
  /* Primary color */
  --secondary: #1C2353;
  /* Secondary color */
  --tertiary: #abd58d;
  /* Tertiary color */
  --quaternary: #6E2405;
  /* Quaternary color */
  --dark: #000000;
  /* Body text color */
  --black: #000000;
  /* Black color */
  --white: #ffffff;
  /* White color */
  --light: #f1f1f1;
  /* Blockquote background or lighter */
  --gray: #f0f0f0;
  --text-color: #606060;

  --primary400: #DC2D2A;
  --primary600: #ff6b35;
  --secondary400: #181e36;
  --secondary600: #233791;
  /* Heading and body font sizes */

  --body-font: 18px;
  --body-lineheight: 1.67;

  --h1: 64px;
  --h2: 56px;
  --h3: 38px;
  --h4: 28px;
  --h5: 22px;
  --h6: 20px;

  --container: 1600px;
  --containerspace: 30px;

  --container-fluid: 1800px;

  /* For heading font */
  --font-heading: "Roboto", sans-serif;
  /* Site global fonts */
  --font-body: "Roboto", sans-serif;
  /* For body font */

  --headerHeight: 107px;
  --appHeight: 100vh;
}


button {
  cursor: pointer;
}

*:focus,
*:visited,
*:focus:visited,
*:focus:active {
  outline: none !important;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

textarea:focus,
input:focus {
  outline: none !important;
}

img {
  border: none;
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
a:hover {
  text-decoration: none;
  transition: .3s ease-in-out;
}

ul {
  margin: 0px;
  padding: 0px;
}


html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth
}

html ::-webkit-scrollbar {
  display: none;
}

/* =Box Sizing 
========================================================================================*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select,
input[type="button"],
input[type="submit"],
button {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* =Deafult Tag & General Classes
========================================================================================*/

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}

body {
  font: var(--body-font)/var(--body-lineheight) var(--font-body);
  color: var(--text-color);
  font-weight: 300;
}

img {
  vertical-align: top;
  border: 0;
}

a,
input[type="button"],
input[type="submit"],
button,
table th,
table td {
  -webkit-transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
  transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
  a:active {
    background-color: transparent;
  }
}


strong {
  font-weight: bold;
}

p {
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 34px;
  font-weight: 300;
  color: var(--secondary);
  display: block;

  strong {
    font-weight: 600;
  }
}

h1,
h2 {
  font-size: var(--h2);
}


h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

h6 {
  font-size: var(--h6);
}

ul li {
  line-height: 24px;
}

.cf:after,
.container:after {
  content: "";
  display: table;
  clear: both;
}

:focus {
  outline: none;
}


.custom-arrow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.1rem;
  display: table;
  margin: 24px 0;
}

.custom-arrow-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.custom-arrow-list li:last-child {
  margin-bottom: 0;
}

.custom-arrow-list li:before {
  content: '\e90e';
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  text-transform: none;
  line-height: 1;
  color: var(--primary);
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
}


/* =Layout Width
========================================================================================*/

.container {
  max-width: calc(var(--container) + (var(--containerspace) * 2));
  width: 100%;
  margin: 0 auto;
  padding-left: var(--containerspace);
  padding-right: var(--containerspace);
}

.container-fluid {
  max-width: calc(var(--container-fluid) + (var(--containerspace) * 2));
  width: 100%;
  margin: 0 auto;
  padding-left: var(--containerspace);
  padding-right: var(--containerspace);
}

#primary {
  float: left;
  width: 700px;
}

#sidebar {
  float: right;
  width: 200px;
}

.one-column {
  width: auto !important;
  float: none !important;
}


/* = On scroll animations
========================================================================================*/

.ani-element {
  opacity: 0;
  position: relative;
  transition: opacity 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9), transform 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9), top 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9);
}

.ani-element.show {
  opacity: 1;
}

.ani-element.up {
  transform: translateY(40px);
}

.ani-element.up.show {
  transform: translateY(0);
}

.ani-element.down {
  transform: translateY(-40px);
}

.ani-element.down.show {
  transform: translateY(0);
}

.ani-element.left {
  transform: translateX(40px);
}

.ani-element.left.show {
  transform: translateX(0);
}

.ani-element.right {
  transform: translateX(-40px);
}

.ani-element.right.show {
  transform: translateX(0);
}

/* Delays */

.delay-1 {
  transition-delay: 30ms;
}

.delay-2 {
  transition-delay: 60ms;
}

.delay-3 {
  transition-delay: 90ms;
}

.delay-4 {
  transition-delay: 120ms;
}

.delay-5 {
  transition-delay: 150ms;
}

.delay-6 {
  transition-delay: 180ms;
}

.delay-7 {
  transition-delay: 210ms;
}

.delay-8 {
  transition-delay: 240ms;
}

.delay-9 {
  transition-delay: 270ms;
}

.delay-10 {
  transition-delay: 300ms;
}

.delay-11 {
  transition-delay: 330ms;
}

.delay-12 {
  transition-delay: 360ms;
}

.delay-13 {
  transition-delay: 390ms;
}

.delay-14 {
  transition-delay: 420ms;
}

.delay-15 {
  transition-delay: 450ms;
}

.delay-16 {
  transition-delay: 480ms;
}

.delay-17 {
  transition-delay: 510ms;
}

.delay-18 {
  transition-delay: 540ms;
}

.delay-19 {
  transition-delay: 570ms;
}

.delay-20 {
  transition-delay: 30ms;
}


/* =Form Style
========================================================================================*/

button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select,
input[type="submit"],
input[type="button"] {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  vertical-align: middle;
}

button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

button,
input {
  line-height: normal;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea,
select {
  background: transparent;
  padding: 4px 10px;
  height: 35px;
  line-height: 1.55;
  border: solid 1px rgba(0, 0, 0, 0.2);
  color: var(--text-color);
  width: 100%;
  font-family: var(--font-body);
  transition: border-color 200ms ease-in;
  overflow: hidden;
  border-radius: 6px;
  font-size: 14px;
  background-color: var(--white);


  &::placeholder {
    color: var(--text-color);
  }
}

input[type="text"].input-lg,
input[type="password"].input-lg,
input[type="email"].input-lg,
input[type="tel"].input-lg,
input[type="search"].input-lg,
input[type="url"].input-lg {
  height: 58px;
}

input[type="text"].input-sm,
input[type="password"].input-sm,
input[type="email"].input-sm,
input[type="tel"].input-sm,
input[type="search"].input-sm,
input[type="url"].input-sm {
  height: 38px;
}

textarea {
  width: 100%;
  height: 175px;
  overflow: auto;
  resize: vertical;
  padding: 10px 15px;
  font-family: var(--font-body)
}

select {
  padding: 8px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  position: relative;
  /* z-index: 1; */
  background: none;
  line-height: 1.25;
  color: var(--text-color);

  option {
    color: #000;
  }
}

input::-webkit-datetime-edit-fields-containerper {
  color: var(--text-color);
}

select::-ms-expand {
  display: none;
}

.custom-select {
  display: block;
  margin: 0;
  position: relative;
  /* background: var(--white); */
}

.custom-select:after {
  content: "\f107";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-family: "FontAwesome";
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="button"],
input[type="submit"],
button {
  transition: all .4s ease-in-out;
  color: var(--white);
  border: 0;
  cursor: pointer;
  width: auto;
  overflow: visible;
  padding: 17px 35px;
  vertical-align: middle;
  text-decoration: none;
  line-height: normal;
  font-family: var(--font-body);
  font-weight: bold;
  background-color: var(--primary);
  width: 100%;
  font-weight: 600;
  border-radius: 6px;
}

input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
  color: var(--white);
  background-color: var(--secondary);
}

.form-check-input[type=radio] {
  border-radius: 50%;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

:-moz-placeholder {
  opacity: 1;
}

/* ===============================
   CF7 – CHECKBOX & RADIO RESET
================================ */
.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ===============================
   MONTHLY VOLUME – GRID LAYOUT
================================ */
.wpcf7-form-control.wpcf7-checkbox,
.wpcf7-form-control.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===============================
   CUSTOM CHECKBOX / RADIO BASE
================================ */
.wpcf7-list-item label {
  position: relative;
  display: block;
  padding-left: 28px;
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  color: #212529;
}

/* Hide default input */
.wpcf7-checkbox input,
.wpcf7-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 18px;
  width: 18px;
  left: 0;
  top: 0;
  margin: 0;
}

/* ===============================
   CHECKBOX UI
================================ */
.wpcf7-checkbox .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #6c757d;
  border-radius: 0;
  background: #fff;
  transition: all 0.2s ease;
}

/* Checkmark icon */
.wpcf7-checkbox .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;

  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

/* Checked state */
.wpcf7-checkbox input:checked+.wpcf7-list-item-label:before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.wpcf7-checkbox input:checked+.wpcf7-list-item-label:after {
  opacity: 1;
  transform: scale(1);
}

/* ===============================
   RADIO UI
================================ */
.wpcf7-radio .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #6c757d;
  border-radius: 50%;
  background: #fff;
}

.wpcf7-radio .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.wpcf7-radio input:checked+.wpcf7-list-item-label:after {
  opacity: 1;
  transform: scale(1);
}

.wpcf7-radio input:checked+.wpcf7-list-item-label::before {
  background: var(--primary);
  border-color: var(--primary);
}

/* ===============================
   DISABLED STATE
================================ */
.wpcf7-checkbox input:disabled+.wpcf7-list-item-label,
.wpcf7-radio input:disabled+.wpcf7-list-item-label {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===============================
   VALIDATION ERROR (OPTIONAL)
================================ */
.wpcf7-not-valid+.wpcf7-list-item-label:before {
  border-color: #dc3545;
}

/* =Form list
========================================================================================*/

.form-block {
  margin: 0;
}

.form-group {
  padding: 0;
  position: relative;
  width: 100%;

  .icon-clock {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

.form-group:after {
  clear: both;
  content: '';
  display: table;
}

.formlist .form-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.forgot-link {
  float: right;
}

.form-block .form-group label {
  display: inline-block;
  padding: 0 0 15px;
  line-height: 1.58;
  color: var(--black);
  font-size: 14px;
}

.form-block .form-group label sup {
  color: var(--primary);
}

.form-inline .form-group label {
  float: left;
  width: 30%;
  padding: 10px 10px 10px 0;
  line-height: 1.5
}

.form-inline .form-group .field-box {
  width: 70%;
  float: left;
}

/* =Common button CSS
========================================================================================*/
.btn {
  background-color: transparent;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  padding: 15px 50px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid var(--primary);
  box-shadow: none !important;
}



/* Remove Bootstrap focus glow */
.btn:focus,
.btn:active {
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary600);
  border-color: var(--primary600);
  color: var(--white);
}


.btn-secondary {
  background-color: transparent;
  border-color: #CC8366;
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}


.btn-outline-light {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}



figure {
  margin: 0;
}


/* contact form 7 style */

.wpcf7-form span.wpcf7-not-valid-tip {
  border: 0;
  color: #f00;
  line-height: 1.2;
  padding: 2px 0;
  z-index: 5;
  margin-top: 5px;
  font-size: 16px;
  border-radius: 0;
}

.wpcf7-form div.wpcf7-response-output {
  margin: 15px 0;
  padding: 15px;
  color: #f00;
  background: #fdeeee;
  border: solid 1px #f2c9c9 !important;
  clear: both;
  border-radius: 0;
  text-align: center;
}

form.wpcf7-form div.wpcf7-response-output {
  font-weight: normal;
  color: #468847;
  background: #dff0d8;
  border: solid 1px #d6e9c6 !important;
  font-size: 16px;
  border-radius: 30px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ec9a9a !important;
  margin: 20px 0 0;
  padding: 10px;
  color: red;
  background: #fff6f6;
  font-size: 16px;
  text-align: center;
  border-radius: 30px;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed
}


.section-row {
  padding: 100px 0;
  background-color: var(--white);
  overflow: clip;
}

.wpcf7-spinner {
  position: absolute !important;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  background-color: var(--black) !important
}

.grids {
  display: grid;
  grid-gap: 30px
}

.no-gap {
  grid-gap: 0
}

.grids2 {
  grid-template-columns: 1fr 1fr
}

.grids3 {
  grid-template-columns: repeat(3, 1fr)
}

.grids4 {
  grid-template-columns: repeat(4, 1fr)
}

.grids5 {
  grid-template-columns: repeat(5, 1fr)
}

.grids6 {
  grid-template-columns: repeat(6, 1fr)
}

body.admin-bar .header {
  top: 32px;
}


.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 20px;
}

#menu-main-menu {
  display: flex;
  align-items: center;
  grid-gap: 45px;
}

#menu-main-menu li a {
  color: var(--white);
  position: relative;
  display: inline-flex;
  align-items: center;
  grid-gap: 5px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;

}

#menu-main-menu li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--white);
  top: 100%;
  left: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.76, 0, .24, 1);
}

#menu-main-menu li a:hover {
  color: var(--white);
}

#menu-main-menu li a:hover:after,
#menu-main-menu li.active a:after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

#mainmenu li a:hover .hasarrow {
  border-top-color: var(--black);
  transform: rotate(-180deg);
  transform-origin: center center;
}


#mainmenu ul li.has-menu {
  position: relative;

  a {
    &::after {
      width: calc(100% - 20px);
    }
  }
}

#mainmenu ul li.has-menu {
  position: relative;
  z-index: 1;
}

#mainmenu li.has-menu {
  li {
    margin-bottom: 10px;
  }
}

#mainmenu>ul>li.has-menu .sub-menu {
  display: none;

  li {
    a {

      &::after {
        width: 100%;
        transform-origin: 100% 50%;
        transform: scaleX(0);
      }

      &:hover {
        &::after {
          transform-origin: 0% 50%;
          transform: scaleX(1);
        }
      }

    }

    &.active {
      a {
        &::after {
          transform-origin: 0% 50%;
          transform: scaleX(1);
        }
      }
    }
  }
}



.hasarrow {
  display: inline-flex;
  transition: all 350ms ease-in-out;
}

#mainmenu>ul li.has-menu li.has-menu .sub-menu {
  left: calc(100% + 15px);
}

#mainmenu ul li.has-menu {
  a {
    &::after {
      width: calc(100% - 20px);
    }
  }

  .sub-menu {
    display: none;

    a {
      &::after {
        display: none;
        color: var(--black) !important;
      }
    }

    .current-menu-item {
      a {
        display: block;
      }
    }
  }
}

.menubox {
  display: flex;
  align-items: center;
  grid-gap: 125px;
}

.header {
  & .current-menu-item {
    a {
      color: var(--primary) !important;

      &::after {
        transform-origin: 0% 50% !important;
        transform: scaleX(1) !important;
      }
    }

    .hasarrow {
      transform: rotate(-180deg);
    }

    .sub-menu {
      display: block !important;

      a {
        color: var(--black) !important;
      }
    }
  }
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 111;
  transition: all 350ms ease-in-out;
  padding: 42px 0;
}

.header.sticky {
  will-change: transform;
  background-color: var(--secondary);
  transition: all 0.5s ease;
  box-shadow: 0px 0px 30px rgba(28, 35, 83, 0.5);
  padding: 28px 0;
}


header.header {
    background-color: var(--secondary);
}
div#main {
    margin-top: 120px;
}
.home header.header {
    background-color: transparent;
}
.home div#main {
    margin-top: 0px;
}
.home .header.sticky {
  background-color: var(--secondary);
}


.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  transition: all 350ms ease-in-out;
  margin-top: 0;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary);
  color: var(--white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\f053";
  font-family: "FontAwesome";
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "\f054";
  font-family: "FontAwesome";
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  transition: all 250ms cubic-bezier(.75, .1, .6, 1);
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary)
}

.swiper-pagination {
  display: none;
  align-items: center;
  justify-content: center;
}

.link-hover {
  transition: background-size 250ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9) !important;
  background-image: linear-gradient(transparent calc(100% - 1px), var(--secondary) 1px);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 0% 100%;
}

.link-hover:hover {
  background-size: 100% 100%;
  background-position: left bottom;
  text-decoration: none;
}


.breadcrumbs ul li a:after {
  content: "\f078";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: -25px;
  font-size: 16px;
  color: #fff;
  font-family: "FontAwesome";
}

.breadcrumbs ul li:last-child {
  padding-right: 0;
}


.custom-logo-link {
  display: flex;
  max-width: 180px;
  width: 100%;
}


.custom-logo-link img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* footer */

/* ================= FOOTER ================= */
footer {
  background-color: #EEEFF5;
  padding: 100px 0;
  overflow: hidden;
}

.footer-sec h5 {
  margin-bottom: 30px;
}

/* Logo */
.logo {
  margin-bottom: 30px;
  max-width: 260px;
  width: 100%;
  display: inline-flex;
}
.footer-logo {
  width: 150px;
}
.logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.copyright {
  color: var(--primary);
}

/* Footer menu */
.fmenu {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 30px;
}

.fmenu ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer h5 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-contact li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-policy li a:hover,
.footer-contact li a:hover {
  color: var(--primary400);
  text-decoration: none;
}

.ftr-links {
  display: inline-flex;
  flex-direction: column;
}

.ftr-links li {
  display: flex;
  gap: 12px;
}

.ftr-links li i {
  margin-top: 6px;
}

/* Footer links hover */
/* Current menu item (WordPress ready) */
footer .current-menu-item a {
  color: var(--primary) !important;
}

/* Social icons */
#footer .social-icons li a {
  border-color: var(--white);
  color: var(--white);
}

#footer .social-icons li a:hover {
  border-color: var(--primary);
}

/* Contact / Follow us */
.follow-us ul li {
  margin-bottom: 20px;
}

.follow-us ul li:last-child {
  margin-bottom: 0;
}

.follow-us ul li a {
  background-image: none;
  font-size: 20px;
}

/* Address */
address {
  font-style: normal;
  line-height: 1.7;
}

/* Footer bottom */

.footer-bottom a:hover {
  text-decoration: underline;
}

.ftr-txt {
  font-size: 24px;
  color: var(--primary);
}

/* footer */


.banner-main-sec {
  position: relative;
  /*min-height: 100vh;*/
  /*padding-top: calc(var(--headerHeight) + 20px);*/
  padding-top: 56.6%;
  display: flex;
  align-items: flex-end;
}

.banner-info {
  padding: 60px 60px 60px 0;
  width: 100%;
}

.banner-info h1 {
  font-weight: 300;
  margin-bottom: 0;
}

.banner-main-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-image: radial-gradient(at center center, #2A369480 0%, var(--secondary) 100%);
  opacity: 0.8;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}

.banner-row {
  position: absolute;
  z-index: 2;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF00 0%, var(--secondary) 100%);
}


/* Vimeo iframe background */
/*.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.77vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}*/
.banner-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


/* Content always above video */
.banner-main-sec .container {
  position: relative;
  z-index: 2;
}


/* Mission Section  */

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--e-global-color-5ecf937);
  background-image: url("../images/Fervo-logo-icon.svg");
  background-position: -22vw 5vh;
  background-repeat: no-repeat;
  background-size: 50% auto;
  opacity: 0.05;
  z-index: 0;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  pointer-events: none;
}

.mission-text {
  font-size: calc(var(--h3) + 2px);
  line-height: 1.4;
  color: #2a3694;
  max-width: 1000px;
  font-weight: 300;
}

.mission-section p:last-child {
  margin-bottom: 0;
}


/* Mission Section  */

/* About Section */
.about-section {
  background-color: #f6f7fb;
  background-image: radial-gradient(#d8dbf0 1px, transparent 1px);
  background-size: 16px 16px;
}

.about-title {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text {
  font-size: 24px;
  max-width: 650px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 20px;
  color: var(--primary);
  text-decoration: none;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border: 1px solid #DC2D2A;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  color: #DC2D2A;
}

.about-link:hover .icon-circle {
  background-color: #DC2D2A;
  color: #fff;
}


/* Slider */
.slider-heading {
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.video-card img {
  border-radius: 8px;
  width: 100%;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play i {
  width: 70px;
  height: 70px;
  background-color: #fff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease-in-out;
}

.video-play i:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* About CSS */

/* Tech CSS */

.tech-team-section {
  background-color: #f6f7fb;
  background-image: radial-gradient(#d8dbf0 1px, transparent 1px);
  background-size: 16px 16px;
  overflow: hidden;
}

.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.info-text {
  line-height: 1.6;
  margin-bottom: 30px;
}

.learn-more-btn {
  margin-top: auto;
}

.learn-more-btn .btn-outline-primary {
  border: 1px solid var(--primary400);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
}

.learn-more-btn .btn-outline-primary:hover {
  background-color: var(--primary400);
  color: var(--white);
  box-shadow: 10px 10px 30px 0px rgba(42, 54.00000000000009, 148, 0.3)
}
.orange-btn-border a.btn.btn-outline-primary {
  color: var(--white);
  border: 1px solid var(--white);
}
.orange-btn-border a.btn.btn-outline-primary:hover {
  border: 1px solid var(--primary400);
}
.benefits-btn {
    text-align: center;
    margin-top: 50px;
}

/* Tech CSS */


/* Technology CSS */

.benefits-section {
  background-image: linear-gradient(180deg, var(--secondary) 0%, #111534 100%);
  color: var(--white);
}


.benefit-card {
  min-height: 400px;
  padding: 30px;
  background-size: cover;
  background-position: center;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  margin: 10px;
  color: var(--white);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.benefit-text {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
  line-height: 1.6;
  font-size: 18px;
}

.benefit-text p:last-child {
  margin-bottom: 0;
}

.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg,
      #2A3694CC 0%,
      #1C2353E6 100%);
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  pointer-events: none;
}

.benefit-card:hover::after {
  background-color: transparent;
  background-image: linear-gradient(180deg, #6E2405 0%, #1C2353BF 100%);
  opacity: 1;
}

.benefit-card:hover .benefit-text {
  opacity: 1;
  transform: translateY(0);
}

.benefit-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.benefit-title {
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}

/* Technology CSS */


/* Product Section CSS */
.product-section {
  position: relative;
  z-index: 1;
}

.product-info-sec h2 {
  font-size: var(--h2);
  color: var(--secondary);
}

.product-info-sec>p {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 500;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-specs li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

.product-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}


.product-slider-thumbs-images .swiper-slide {
  width: 100px;
  height: 100px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-slider-thumbs-images .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  height: 100px;
  object-fit: contain;
}

/* Hover */
.product-slider-thumbs-images .swiper-slide:hover {
  border-color: var(--primary);
}

/* Active thumbnail */
.product-slider-thumbs-images .swiper-slide-thumb-active {
  border-color: var(--primary);
  /* box-shadow: inset 0 -2px 0 var(--primary); */
}

.dart_banner {
  margin-top: 25px;
  max-width: 520px;
  margin: 0;
  overflow: visible;
  position: relative;
}

.product-slider-thumbs-images .swiper-wrapper {
  cursor: grab;
}


/* Active thumbnail */
.products-images {
  max-width: 520px;
  margin: 0 auto;
}

.product-info-sec .learn-more-btn {
  margin: 0 0 40px 0;
}

.products-images figure {
  display: flex;
  width: 100%;
  border: 1px solid #d4dde5;
}

.products-images .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-images img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
}

.product-section .swiper-button-prev,
.product-section .swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.26);
  color: var(--white);
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.product-section .swiper-button-prev:hover,
.product-section .swiper-button-next:hover {
  background-color: var(--primary);
}

.product-section .swiper-button-prev::after,
.product-section .swiper-button-next::after {
  font-size: 18px;
}

.text-primary {
  color: var(--primary) !important;
}

/* Product Section CSS */


/* Contact Page CSS */

.form-flex-box {
    display: flex;
    flex-wrap: wrap;
}
.form-flex-box .form-check {
    width: 200px;
    margin-bottom: 0 !important;
}
.form-flex-box .form-check span.wpcf7-form-control.wpcf7-checkbox {
    display: unset;
}
.acms-form-title {
  margin: 60px 0 30px;
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
}
.text-end.form-btn {
    margin-top: 30px;
}

.acms-subtitle {
  font-weight: 400;
}

.acms-form-wrap {
  max-width: 620px;
  margin: 0 auto;
}


/* Custom checkbox wrapper */
.form-check {
  display: flex;
  padding-left: 0;
}

/* Checkbox input */
.form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid #6c757d;
  border-radius: 0;
  cursor: pointer;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  transition: all 0.25s ease-in-out;
}

/* Hover */
.form-check-input:hover {
  border-color: var(--primary);
}

/* Checked state */
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Checkmark */

/* Focus state */
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* Label */
.form-check-label {
  font-size: 14px;
  cursor: pointer;
}

/* Small text */
.form-check-label.small {
  font-size: 14px;
}

.form-btn .btn {
  width: auto;
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select {
  height: 60px;
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
  border: solid 1px #d4dde5;
  width: 100%;
  transition: border-color 350ms cubic-bezier(.5, 0, .25, 1), background 350ms cubic-bezier(.5, 0, .25, 1);
  background: #fff;
  border-radius: 0 !important;

}

textarea {
  height: 120px;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  box-shadow: none !important;
  border-color: var(--primary);
}


.form-select {
  color: #8C8C8C !important;
  opacity: 1;
  font-weight: 500;
  font-size: 18px;
}

.form-select:focus {
  border-color: var(--primary);

}

section[id] {
  scroll-margin-top: var(--headerHeight);
}


.acms-contact-form .form-check-label {
  font-weight: 500;
}


input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #8C8C8C !important;
  opacity: 1;
  font-weight: 500;
  font-size: 18px;
}

/* Contact Page CSS */

/* ===============================
   INNER PAGE BANNER (IMAGE)
   Same gradients as banner-main-sec
================================ */

.banner-inner-sec {
  position: relative;
  min-height: 600px;
  padding-top: calc(var(--headerHeight) + 20px);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

/* Reuse gradient overlay */
.banner-inner-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-image: radial-gradient(at center center,
      #2A369480 0%,
      var(--secondary) 100%);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

/* Reuse bottom fade */
.banner-inner-sec .banner-row {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(180deg,
      #FFFFFF00 0%,
      var(--secondary) 100%);
}

/* Content layer */
.banner-inner-sec .container {
  position: relative;
  z-index: 2;
}

/* Typography match */
.banner-inner-sec .banner-info {
  padding: 60px 60px 60px 0;
}

.banner-inner-sec .banner-info h1 {
  font-weight: 300;
  margin-bottom: 0;
}
.common-content h1.entry-title {
    text-align: center;
}
.common-content p {
    margin-bottom: 20px;
}
.common-content p:last-child {
    margin-bottom: 0px;
}
.common-content h2, .common-content h3, .common-content h4, .common-content h5, .common-content h6 {
    margin: 30px 0 12px 0;
}
.common-content ol, .common-content ul {
    margin: 0 0 20px 20px;
    padding: 0;
}
.common-content ul li {
    list-style-type: disc;
    margin: 0 0 10px 0;
}
.common-content ol li {
    margin: 0 0 8px 0;
}