/**
 * ----------------------------------------
 * animation slide-fwd-center
 * ----------------------------------------
 */
/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rajdhani-Regular", Arial, Helvetica, sans-serif;
  color: #05092c;
  background-color: #fbfafb;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
}

/*
      5. Improve media defaults
    */
img,
picture,
video,
canvas,
svg,
a {
  display: block;
  max-width: 100%;
}

/*
      6. Remove built-in form typography styles
    */
input,
button,
textarea,
select {
  font: inherit;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

::-moz-placeholder {
  color: #05092c;
  font-style: normal;
  opacity: 1;
}

::placeholder {
  color: #05092c;
  font-style: normal;
  opacity: 1;
}

input:-o-input-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder,
input:-webkit-input-placeholder {
  color: #05092c;
  font-style: normal;
  opacity: 1;
}

/*
      7. Avoid text overflows
    */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0 0 0 0;
}

/*
      8. Create a root stacking context
    */
#root,
#__next {
  isolation: isolate;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

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

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
       ========================================================================== */
/**
     * Remove the gray background on active links in IE 10.
     */
a {
  background-color: transparent;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  text-decoration: none;
  color: #FFBD6A;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (min-width: 767.99px) {
  a:hover {
    background-color: transparent;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    text-decoration: none;
    color: #FFBD6A;
    -webkit-tap-highlight-color: transparent;
  }
}

a:focus {
  border: 0;
  outline: 0;
  color: #FFBD6A;
}

/* Change the text selection color */
::selection {
  background-color: #05092c; /* Highlight color */
  color: #fbfafb; /* Text color */
}

/* For WebKit browsers (Chrome, Safari, etc.) */
::-webkit-selection {
  background-color: #05092c;
  color: #fbfafb;
}

/**
     * 1. Remove the bottom border in Chrome 57-
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
       ========================================================================== */
/**
     * Remove the border on images inside links in IE 10.
     */
img {
  border-style: none;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers.
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.5em;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none;
}

select {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
}

/**
     * Correct the inability to style clickable types in iOS and Safari.
     */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

/**
     * Remove the inner border and padding in Firefox.
     */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
     * Restore the focus styles unset by the previous rule.
     */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0.063rem dotted ButtonText;
}

/**
     * Correct the padding in Firefox.
     */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
     * Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  vertical-align: baseline;
}

/**
     * Remove the default vertical scrollbar in IE 10+.
     */
textarea {
  overflow: auto;
}

/**
     * 1. Add the correct box sizing in IE 10.
     * 2. Remove the padding in IE 10.
     */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  /* 1 */
  outline-offset: -0.125rem;
  /* 2 */
}

/**
     * Remove the inner padding in Chrome and Safari on macOS.
     */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE 10+, and Firefox.
     */
details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item;
}

/* Misc
       ========================================================================== */
/**
     * Add the correct display in IE 10+.
     */
template {
  display: none;
}

/**
     * Add the correct display in IE 10.
     */
[hidden] {
  display: none;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  margin: 0 0 1rem;
  line-height: 1.2em;
  color: #05092c;
  font-family: "Jost-Bold", Arial, Helvetica, sans-serif;
}

.h1,
h1 {
  font-size: 2.778rem;
}

.h2,
h2 {
  font-size: 2rem;
}

.h3,
h3 {
  font-size: 1.875rem;
}

.h4,
h4 {
  font-size: 1.667rem;
}

.h5,
h5 {
  font-size: 1rem;
}

.h6,
h6 {
  font-size: 0.778rem;
}

@media only screen and (max-width: 767px) {
  .h1,
  h1,
  .h2,
  h2,
  .h3,
  h3,
  .h4,
  h4,
  .h5,
  h5,
  .h6,
  h6 {
    margin: 0 0 0.5rem;
  }
}
p {
  margin: 0 0 1rem;
  font-weight: 300;
}

@media only screen and (min-width: 1400px) {
  p {
    font-size: 1.25rem;
    line-height: 1.625;
  }
}
[data-toggle] {
  cursor: pointer;
}

input,
input[type=text],
input[type=textarea],
input[type=email],
input[type=date],
input[type=datetime],
input[type=color],
input[type=time],
input[type=month],
input[type=week],
input[type=radio],
input[type=number],
input[type=select],
textarea {
  width: 100%;
  max-width: 100%;
  border-top: 0.0625rem solid #A04747;
  border-right: 0.0625rem solid #A04747;
  border-bottom: 0.0625rem solid #A04747;
  border-left: 0.0625rem solid #A04747;
  padding: 1.3125rem 1.5rem;
  margin: 0 0 1.9rem 0;
  border-radius: 0.3125rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

@media only screen and (max-width: 575px) {
  input,
  input[type=text],
  input[type=textarea],
  input[type=email],
  input[type=date],
  input[type=datetime],
  input[type=color],
  input[type=time],
  input[type=month],
  input[type=week],
  input[type=radio],
  input[type=number],
  input[type=select],
  textarea {
    max-width: 100%;
  }
}
input:focus,
input[type=text]:focus,
input[type=textarea]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=color]:focus,
input[type=time]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=radio]:focus,
input[type=number]:focus,
textarea:focus {
  outline: none;
  border-color: #FFBD6A;
}

input[type=button],
input[type=submit],
.button {
  -webkit-tap-highlight-color: transparent;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

/* Firefox */
input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.sec__wrapper {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
}

@media only screen and (max-width: 1620px) {
  .sec__wrapper {
    max-width: 100%;
    padding: 0 2.5rem;
  }
}
@media only screen and (max-width: 1620px) and (max-width: 767.99px) {
  .sec__wrapper {
    padding: 0 0.5rem;
  }
}
.sec__padding--tb {
  padding: 7rem 0;
}
@media only screen and (max-width: 767.99px) {
  .sec__padding--tb {
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 767.99px) and (max-width: 575.99px) {
  .sec__padding--tb {
    padding: 3rem 0;
  }
}

/**
 * ----------------------------------------
 * animation slide-fwd-center
 * ----------------------------------------
 */
.header__sec {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
@media only screen and (max-width: 767.99px) {
  .header__sec {
    background-color: #05092c;
  }
}
.header__sec .sec__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  padding: 0.5rem 2.5rem;
}
@media only screen and (max-width: 767.99px) {
  .header__sec .sec__wrapper {
    padding: 0.5rem;
  }
}
.header__sec .sec__wrapper .header__logo {
  width: 100%;
  max-width: 5%;
}
@media only screen and (max-width: 991.99px) {
  .header__sec .sec__wrapper .header__logo {
    max-width: 8%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .header__sec .sec__wrapper .header__logo {
    max-width: 60px;
  }
}
.header__sec .sec__wrapper .header__logo a {
  display: block;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__1 {
  fill: none;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__2 {
  fill: #ffffff;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__6, .header__sec .sec__wrapper .header__logo a svg .logo__cls__7, .header__sec .sec__wrapper .header__logo a svg .logo__cls__8, .header__sec .sec__wrapper .header__logo a svg .logo__cls__9, .header__sec .sec__wrapper .header__logo a svg .logo__cls__10 {
  fill: #ffffff;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__3 {
  fill: #05092c;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__4 {
  clip-path: url(#clip-path);
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__10, .header__sec .sec__wrapper .header__logo a svg .logo__cls__5, .header__sec .sec__wrapper .header__logo a svg .logo__cls__6, .header__sec .sec__wrapper .header__logo a svg .logo__cls__7, .header__sec .sec__wrapper .header__logo a svg .logo__cls__8,
.header__sec .sec__wrapper .header__logo a svg .logo__cls__9 {
  isolation: isolate;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__10, .header__sec .sec__wrapper .header__logo a svg .logo__cls__6, .header__sec .sec__wrapper .header__logo a svg .logo__cls__7, .header__sec .sec__wrapper .header__logo a svg .logo__cls__8,
.header__sec .sec__wrapper .header__logo a svg .logo__cls__9 {
  font-size: 130px;
  font-family: Cinzel-Bold, Cinzel;
  font-weight: 700;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__7 {
  letter-spacing: -0.01em;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__8 {
  letter-spacing: -0.11em;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__9 {
  letter-spacing: -0.01em;
}
.header__sec .sec__wrapper .header__logo a svg .logo__cls__10 {
  letter-spacing: 0.03em;
}
.header__sec .sec__wrapper .header__logo a:hover svg .logo__cls__1 {
  fill: none;
}
.header__sec .sec__wrapper .header__logo a:hover svg .logo__cls__2 {
  fill: #A04747;
}
.header__sec .sec__wrapper .header__logo a:hover svg .logo__cls__3 {
  fill: #ffffff;
}
.header__sec .sec__wrapper .header__logo a:hover svg .logo__cls__4 {
  clip-path: url(#clip-path);
}
@media only screen and (min-width: 991.99px) {
  .header__sec .sec__wrapper .header__logo a:hover svg .logo__cls__1 {
    fill: none;
  }
  .header__sec .sec__wrapper .header__logo a:hover svg .logo__cls__2 {
    fill: #A04747;
  }
  .header__sec .sec__wrapper .header__logo a:hover svg .logo__cls__3 {
    fill: #ffffff;
  }
  .header__sec .sec__wrapper .header__logo a:hover svg .logo__cls__4 {
    clip-path: url(#clip-path);
  }
}
.header__sec .sec__wrapper .header__nav {
  width: 100%;
  max-width: 70%;
}
@media only screen and (max-width: 991.99px) {
  .header__sec .sec__wrapper .header__nav {
    max-width: 85%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
.header__sec .sec__wrapper .header__nav .mobile__items {
  display: none;
}
@media only screen and (max-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav .mobile__items {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    width: 100%;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .nav__toggler {
    background: none;
    border: none;
    padding: 0 0 0 0.9375rem;
    order: 2;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .nav__toggler svg {
    width: 2rem;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .nav__toggler svg path {
    stroke: #ffffff;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .navbar__link--cta {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    width: 8rem;
    background-color: #A04747;
    border-radius: 1rem;
    padding: 0.3rem 0.5rem;
    color: #fbfafb;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .navbar__link--cta i {
    width: 1.2rem;
    padding: 0 0 0 0.375rem;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .navbar__link--cta i svg path {
    fill: #fbfafb;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .navbar__link--cta:hover {
    background-color: #BC7000;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .navbar__link--cta:hover span {
    color: #fbfafb;
  }
}
@media only screen and (max-width: 767.99px) and (min-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav .mobile__items .navbar__link--cta:hover {
    background-color: #BC7000;
  }
  .header__sec .sec__wrapper .header__nav .mobile__items .navbar__link--cta:hover span {
    color: #fbfafb;
  }
}
.header__sec .sec__wrapper .header__nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    position: absolute;
    top: 3.875rem;
    right: 0;
    z-index: 4;
    width: 100%;
    background-color: #05092c;
    padding: 0 0 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: -webkit-height 0.3s ease;
    transition: -webkit-height 0.3s ease;
    -o-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }
  .header__sec .sec__wrapper .header__nav ul.navbar__nav--show {
    -webkit-transition: -webkit-height 0.3s ease;
    transition: -webkit-height 0.3s ease;
    -o-transition: height 0.3s ease;
    transition: height 0.3s ease;
    height: 49.7vh;
  }
}
.header__sec .sec__wrapper .header__nav ul li {
  padding: 0 0.5rem;
}
@media only screen and (max-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav ul li {
    display: block;
    width: 100%;
    padding: 0;
  }
}
.header__sec .sec__wrapper .header__nav ul li a {
  color: #fbfafb;
  font-weight: 600;
  text-transform: capitalize;
}
@media only screen and (max-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav ul li a {
    font-size: 1.25rem;
    border-top: 0;
    border-right: 0;
    border-bottom: solid #ffffff 0.125rem;
    border-left: 0;
    padding: 0.5rem;
  }
}
.header__sec .sec__wrapper .header__nav ul li a:hover {
  color: #FFBD6A;
}
@media only screen and (min-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav ul li a:hover {
    color: #FFBD6A;
  }
}
.header__sec .sec__wrapper .header__nav ul li.navbar__item--cta .navbar__link--cta {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  width: 8rem;
  background-color: #A04747;
  border-radius: 1rem;
  padding: 0.3rem 0.5rem;
}
.header__sec .sec__wrapper .header__nav ul li.navbar__item--cta .navbar__link--cta i {
  width: 1.2rem;
  padding: 0 0 0 0.375rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.header__sec .sec__wrapper .header__nav ul li.navbar__item--cta .navbar__link--cta i svg path {
  fill: #fbfafb;
}
.header__sec .sec__wrapper .header__nav ul li.navbar__item--cta .navbar__link--cta:hover {
  background-color: #BC7000;
  color: #fbfafb;
}
.header__sec .sec__wrapper .header__nav ul li.navbar__item--cta .navbar__link--cta:hover span {
  color: #fbfafb;
}
@media only screen and (min-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav ul li.navbar__item--cta .navbar__link--cta:hover {
    background-color: #BC7000;
    color: #fbfafb;
  }
  .header__sec .sec__wrapper .header__nav ul li.navbar__item--cta .navbar__link--cta:hover span {
    color: #fbfafb;
  }
}
.header__sec .sec__wrapper .header__nav ul li:last-child {
  padding-right: 0;
}
@media only screen and (max-width: 767.99px) {
  .header__sec .sec__wrapper .header__nav ul li:last-child {
    display: none;
  }
}
.header__sec.show--header {
  background-color: #05092c;
  box-shadow: rgba(0, 4, 8, 0.2) 0px 8px 24px;
}

.site__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0.5);
  align-items: center;
  justify-content: center;
}
.site__modal .modal__content {
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 1.25rem;
  border-radius: 0.3125rem;
  max-width: 31.25rem;
  width: 100%;
}
@media only screen and (max-width: 575.99px) {
  .site__modal .modal__content {
    max-width: 23.75rem;
  }
}
.site__modal .modal__content .modal__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  margin-bottom: 1.25rem;
}
.site__modal .modal__content .modal__header h2 {
  margin: 0;
}
@media only screen and (max-width: 380px) {
  .site__modal .modal__content .modal__header h2 {
    font-size: 1.5625rem;
  }
}
.site__modal .modal__content .modal__header .modal__close {
  font-size: 1.5rem;
  cursor: pointer;
}
.site__modal .modal__content .modal__header .modal__close svg {
  fill: #05092c;
}
.site__modal .modal__content .modal__body {
  margin-bottom: 1.25rem;
}
.site__modal .modal__content .modal__body a {
  margin-bottom: 0.625rem;
  color: #05092c;
  text-decoration: none;
  font-size: 1.5625rem;
  line-height: 1.3;
}
@media only screen and (max-width: 380px) {
  .site__modal .modal__content .modal__body a {
    font-size: 1.25rem;
  }
}
.site__modal .modal__content .modal__body a.modal__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
.site__modal .modal__content .modal__body a.modal__link svg {
  width: 2rem;
  height: 2rem;
}
.site__modal .modal__content .modal__body a.modal__link span {
  padding-left: 0.5rem;
  font-weight: 600;
}
.site__modal .modal__content .modal__body a:hover {
  color: #05092c;
}
@media only screen and (min-width: 767.99px) {
  .site__modal .modal__content .modal__body a:hover {
    color: #05092c;
  }
}
.site__modal .modal__content .modal__body .modal__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  padding: 1.25rem 0 0 0;
}
.site__modal .modal__content .modal__body .modal__social li {
  width: 2.5rem;
  margin: 0 0.3rem;
  text-align: center;
  line-height: 1;
}
.site__modal .modal__content .modal__body .modal__social li a {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  background-color: #FFBD6A;
  padding: 0.3rem;
  border-radius: 0.3rem;
  box-shadow: 0.0625rem 0.0625rem 0.0625rem #05092c;
}
.site__modal .modal__content .modal__body .modal__social li a svg path {
  fill: #05092c;
}
.site__modal .modal__content .modal__body .modal__social li a:hover {
  background-color: #FFBD6A;
}
.site__modal .modal__content .modal__body .modal__social li a:hover svg path {
  fill: #fbfafb;
}
@media only screen and (min-width: 767.99px) {
  .site__modal .modal__content .modal__body .modal__social li a:hover {
    background-color: #FFBD6A;
  }
  .site__modal .modal__content .modal__body .modal__social li a:hover svg path {
    fill: #fbfafb;
  }
}

.home__page .hero__sec .sec__wrap {
  position: relative;
  z-index: auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 * 100) */
  height: 0;
  overflow: hidden;
}
.home__page .hero__sec .sec__wrap .sec__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: #05092c;
  opacity: 0.5;
}
.home__page .hero__sec .sec__wrap video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire container */
}
.home__page .about__sec .sec__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
@media only screen and (max-width: 1300px) {
  .home__page .about__sec .sec__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
.home__page .about__sec .sec__wrapper .left__side {
  max-width: 46%;
  width: 100%;
  text-align: right;
  position: relative;
  z-index: auto;
}
@media only screen and (max-width: 1300px) {
  .home__page .about__sec .sec__wrapper .left__side {
    max-width: 100%;
    text-align: left;
  }
}
.home__page .about__sec .sec__wrapper .left__side .sec__star__img {
  position: absolute;
  top: 50%;
  left: 3%;
  z-index: 1;
  width: 4.6875rem;
  height: 5.3125rem;
  transform: translateY(-50%);
}
.home__page .about__sec .sec__wrapper .left__side .sec__star__img svg {
  fill: #BC7000;
  overflow: visible;
}
.home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-1, .home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-2, .home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-3 {
  transform-origin: center;
}
@-webkit-keyframes spark {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}
@keyframes spark {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}
.home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-1, .home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-2, .home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-3 {
  -webkit-animation: spark 2s infinite;
  animation: spark 2s infinite;
}
.home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-2 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  transform: translate(10px, 10px);
}
.home__page .about__sec .sec__wrapper .left__side .sec__star__img svg .path-3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  transform: translate(-10px, -10px);
}
@media only screen and (max-width: 1300px) {
  .home__page .about__sec .sec__wrapper .left__side .sec__star__img {
    position: absolute;
    right: 3%;
    left: auto;
    z-index: auto;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 575.99px) {
  .home__page .about__sec .sec__wrapper .left__side .sec__star__img {
    position: absolute;
    top: auto;
    bottom: -30px;
    z-index: auto;
    transform: translateY(0%);
  }
}
.home__page .about__sec .sec__wrapper .left__side h2 {
  font-size: 4.25rem;
  text-align: right;
}
@media only screen and (max-width: 1300px) {
  .home__page .about__sec .sec__wrapper .left__side h2 {
    text-align: left;
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 767.99px) {
  .home__page .about__sec .sec__wrapper .left__side h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 767.99px) and (max-width: 575.99px) {
  .home__page .about__sec .sec__wrapper .left__side h2 {
    font-size: 2rem;
  }
}
.home__page .about__sec .sec__wrapper .left__side p {
  text-align: right;
  max-width: 95%;
  padding-left: 15%;
}
@media only screen and (max-width: 1300px) {
  .home__page .about__sec .sec__wrapper .left__side p {
    text-align: left;
    padding: 0;
    max-width: 60%;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 767.99px) {
  .home__page .about__sec .sec__wrapper .left__side p {
    max-width: 80%;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 767.99px) and (max-width: 575.99px) {
  .home__page .about__sec .sec__wrapper .left__side p {
    max-width: 100%;
  }
}
.home__page .about__sec .sec__wrapper .left__side .btn__primary {
  font-size: 1rem;
  line-height: 1.5;
  margin-right: 5%;
  background-color: #A04747;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
}
.home__page .about__sec .sec__wrapper .left__side .btn__primary:hover {
  background-color: #05092c;
}
@media only screen and (min-width: 767.99px) {
  .home__page .about__sec .sec__wrapper .left__side .btn__primary:hover {
    background-color: #05092c;
  }
}
@media only screen and (max-width: 1300px) {
  .home__page .about__sec .sec__wrapper .left__side .btn__primary {
    margin-right: 0;
  }
}
.home__page .about__sec .sec__wrapper .left__side .sec__img__1 {
  position: absolute;
  top: 130%;
  left: 30%;
  z-index: 1;
}
.home__page .about__sec .sec__wrapper .left__side .sec__img__1::before {
  content: "";
  width: 100%;
  height: 109%;
  position: absolute;
  top: -0.9375rem;
  right: -0.9375rem;
  z-index: -1;
  border-top: 0.0625rem solid #A04747;
  border-right: 0.0625rem solid #A04747;
  border-bottom: 0.0625rem solid #A04747;
  border-left: 0.0625rem solid #A04747;
  border-radius: 0.3125rem;
}
@-webkit-keyframes translateX2 {
  0% {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.home__page .about__sec .sec__wrapper .left__side .sec__img__1::before {
  animation: translateX2 2.5s infinite alternate;
  -webkit-animation: translateX2 2.5s infinite alternate;
}
.home__page .about__sec .sec__wrapper .left__side .sec__img__1::after {
  position: absolute;
  top: -12%;
  right: -12%;
  z-index: 2;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 0.3125rem;
  content: "";
  background-color: #A04747;
}
.home__page .about__sec .sec__wrapper .left__side .sec__img__1 img {
  border-radius: 0.3125rem;
}
@media only screen and (max-width: 1300px) {
  .home__page .about__sec .sec__wrapper .left__side .sec__img__1 {
    position: absolute;
    top: 0%;
    right: 14%;
    left: auto;
    z-index: 1;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1200px) {
  .home__page .about__sec .sec__wrapper .left__side .sec__img__1 {
    display: none;
  }
}
.home__page .about__sec .sec__wrapper .abt__slider {
  max-width: 60%;
  margin-left: 0;
  position: relative;
  z-index: auto;
  width: 100%;
}
.home__page .about__sec .sec__wrapper .abt__slider:before {
  content: "";
  width: 100%;
  height: 104%;
  position: absolute;
  top: -0.9375rem;
  left: -1.25rem;
  z-index: -1;
  border-top: 0.0625rem solid #A04747;
  border-right: 0.0625rem solid #A04747;
  border-bottom: 0.0625rem solid #A04747;
  border-left: 0.0625rem solid #A04747;
  border-radius: 0.3125rem;
}
.home__page .about__sec .sec__wrapper .abt__slider .splide__track .splide__list .splide__slide .slide__img {
  background-image: url("../images/1.webp");
  border-radius: 0.3125rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 46.875rem;
}
.home__page .about__sec .sec__wrapper .abt__slider .splide__track .splide__list .splide__slide .slide__img.slide__img--2 {
  background-image: url("../images/17.webp");
}
.home__page .about__sec .sec__wrapper .abt__slider .splide__track .splide__list .splide__slide .slide__img.slide__img--3 {
  background-image: url("../images/18.webp");
}
.home__page .about__sec .sec__wrapper .abt__slider .splide__track .splide__list .splide__slide .slide__img.slide__img--4 {
  background-image: url("../images/19.webp");
}
.home__page .about__sec .sec__wrapper .abt__slider .splide__track .splide__list .splide__slide .slide__img.slide__img--5 {
  background-image: url("../images/20.webp");
}
@media only screen and (max-width: 1300px) {
  .home__page .about__sec .sec__wrapper .abt__slider {
    max-width: 100%;
    margin-top: 8rem;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1200px) {
  .home__page .about__sec .sec__wrapper .abt__slider {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1200px) and (max-width: 767.99px) {
  .home__page .about__sec .sec__wrapper .abt__slider:before {
    content: none;
  }
}
.home__page .about__sec .sec__wrapper.abt__botm {
  position: relative;
  z-index: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  padding: 7rem 1rem 0 1rem;
  column-gap: 1.5rem;
}
@media only screen and (max-width: 991.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm {
    padding: 5rem 1rem 0 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm {
    padding: 3rem 0.5rem 0 0.5rem;
  }
}
.home__page .about__sec .sec__wrapper.abt__botm h3 {
  margin: 0;
  padding: 0 0 0 0%;
  font-size: 2.5rem;
}
@media only screen and (max-width: 991.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm h3 {
    max-width: 100%;
    width: 100%;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 575.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm h3 {
    font-size: 2rem;
    padding-bottom: 2rem;
  }
}
.home__page .about__sec .sec__wrapper.abt__botm .botm__blck {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  width: 100%;
  max-width: 35%;
  color: #ffffff;
  column-gap: 1rem;
}
.home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--1 .blck__img--1 {
  max-width: 11.875rem;
  height: 19.875rem;
  border-top: solid #A04747 0.625rem;
  border-right: solid #A04747 0.625rem;
  border-bottom: solid #A04747 0.625rem;
  border-left: solid #A04747 0.625rem;
}
@media only screen and (max-width: 767.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--1 .blck__img--1 {
    max-width: 48%;
    height: auto;
  }
}
.home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--1 .blck__img--2 {
  max-width: 19.25rem;
  height: 27.9375rem;
  border-top: solid #A04747 0.625rem;
  border-right: solid #A04747 0.625rem;
  border-bottom: solid #A04747 0.625rem;
  border-left: solid #A04747 0.625rem;
}
@media only screen and (max-width: 767.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--1 .blck__img--2 {
    max-width: 48%;
    height: auto;
  }
}
@media only screen and (max-width: 991.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--1 {
    max-width: 48%;
    width: 100%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--1 {
    max-width: 100%;
  }
}
.home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  max-width: 35%;
  background-color: #A04747;
  padding: 1.625rem;
  border-radius: 0.625rem;
  box-shadow: 0.0625rem 0.0625rem 0.0625rem #05092c;
}
.home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--2 svg {
  width: 1rem;
}
@media only screen and (max-width: 991.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--2 {
    max-width: 48%;
    width: 100%;
    height: 58vh;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm .botm__blck.botm__blck--2 {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    padding: 1.625rem 0.5rem;
  }
}
.home__page .about__sec .sec__wrapper.abt__botm .botm__blck h4 {
  color: #ffffff;
}
.home__page .about__sec .sec__wrapper.abt__botm .botm__blck .btn__primary {
  background-color: #05092c;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
}
.home__page .about__sec .sec__wrapper.abt__botm .botm__blck .btn__primary:hover {
  background-color: #BC7000;
}
@media only screen and (min-width: 767.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm .botm__blck .btn__primary:hover {
    background-color: #BC7000;
  }
}
@media only screen and (max-width: 991.99px) {
  .home__page .about__sec .sec__wrapper.abt__botm .botm__blck {
    max-width: 100%;
    width: 100%;
  }
}
.home__page .testi__sec .sec__wrapper .sec__titl__blck {
  max-width: 50%;
  padding-bottom: 3.75rem;
}
@media only screen and (max-width: 991.99px) {
  .home__page .testi__sec .sec__wrapper .sec__titl__blck {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 575.99px) {
  .home__page .testi__sec .sec__wrapper .sec__titl__blck {
    padding-bottom: 2rem;
    text-align: center;
  }
}
.home__page .testi__sec .sec__wrapper .sec__titl__blck h3 {
  position: relative;
  z-index: auto;
  margin: 0 0 0.625rem 0;
  font-size: 2.5rem;
  padding-left: 3.125rem;
}
@media only screen and (max-width: 575.99px) {
  .home__page .testi__sec .sec__wrapper .sec__titl__blck h3 {
    font-size: 2rem;
  }
}
.home__page .testi__sec .sec__wrapper .sec__titl__blck h3:before {
  position: absolute;
  top: 1.75rem;
  left: 0;
  z-index: auto;
  content: "";
  height: 0.1875rem;
  width: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 0.3125rem;
  -webkit-transform: translateY(-0.25rem);
  -ms-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
  background-color: #05092c;
}
.home__page .testi__sec .sec__wrapper .sec__titl__blck p {
  margin: 0;
}
.home__page .testi__sec .sec__wrapper .sec__wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  position: relative;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testimonial__bg {
  height: 534px;
  width: 100%;
  max-width: 70%;
  border-radius: 0.3125rem;
  background-image: url("../images/11.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
@media only screen and (max-width: 1200.99px) {
  .home__page .testi__sec .sec__wrapper .sec__wrap .testimonial__bg {
    max-width: 100%;
  }
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider {
  width: 100%;
  max-width: 40%;
  background-color: #ffffff;
  padding: 3.75rem;
  position: absolute;
  top: 50%;
  right: 8%;
  z-index: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 1200.99px) {
  .home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider {
    padding: 3.75rem 1rem 1rem 1rem;
    max-width: 60%;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: auto;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1200.99px) and (max-width: 767.99px) {
  .home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider {
    max-width: 80%;
  }
}
@media only screen and (max-width: 1200.99px) and (max-width: 767.99px) and (max-width: 575.99px) {
  .home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider {
    max-width: 97%;
  }
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .client__quote {
  height: 3rem;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: auto;
  fill: #A04747;
}
@media only screen and (max-width: 480.99px) {
  .home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .client__quote {
    height: 2rem;
  }
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__track .splide__list .splide__slide .slide__client {
  position: relative;
  z-index: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__track .splide__list .splide__slide .slide__client .client__pic {
  height: 6.25rem;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__track .splide__list .splide__slide .slide__client .client__name {
  padding-left: 1.5rem;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__track .splide__list .splide__slide .slide__client .client__name h5 {
  font-size: 1.5rem;
  margin: 0 0 0.625rem 0;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__track .splide__list .splide__slide .slide__client .client__name h6 {
  margin: 0;
  color: #e8e8e8;
  font-size: 1rem;
  font-weight: normal;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__track .splide__list .splide__slide .client__star {
  height: 18px;
  margin: 1.875rem 0;
  fill: #A04747;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__track .splide__list .splide__slide p {
  margin: 0;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__arrows {
  position: absolute;
  top: -3.125rem;
  right: 0;
  z-index: auto;
  width: 15%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
@media only screen and (max-width: 480.99px) {
  .home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__arrows {
    width: 30%;
  }
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__arrows .splide__arrow {
  opacity: 1;
  position: static;
  transform: translateY(0);
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__arrows .splide__arrow svg {
  fill: none;
  stroke: #05092c;
}
.home__page .testi__sec .sec__wrapper .sec__wrap .testi__slider .splide__arrows .splide__arrow.splide__arrow--prev svg {
  transform: none;
}

.hero__sec {
  background-image: url("../images/12.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__sec .sec__wrapper {
  position: relative;
  z-index: 1;
  min-height: 420px;
}
@media only screen and (max-width: 767.99px) {
  .hero__sec .sec__wrapper {
    min-height: 350px;
  }
}
.hero__sec .sec__wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #05092c;
  opacity: 0.7;
  content: "";
}
.hero__sec .sec__wrapper .breadcrumb__area {
  padding: 14rem 0 0;
}
@media only screen and (max-width: 767.99px) {
  .hero__sec .sec__wrapper .breadcrumb__area {
    padding: 8rem 0 0;
  }
}
.hero__sec .sec__wrapper .breadcrumb__area h1 {
  margin: 0 0 1.3rem;
  color: #ffffff;
}
.hero__sec .sec__wrapper .breadcrumb__area .breadcrumb__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
.hero__sec .sec__wrapper .breadcrumb__area .breadcrumb__list span {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 500;
  color: #ffffff;
  display: inline-block;
}
.hero__sec .sec__wrapper .breadcrumb__area .breadcrumb__list span svg {
  width: 1rem;
  height: 1rem;
}
.hero__sec .sec__wrapper .breadcrumb__area .breadcrumb__list span a {
  color: #ffffff;
}
.hero__sec .sec__wrapper .breadcrumb__area .breadcrumb__list span a:hover {
  color: #FFBD6A;
}
@media only screen and (min-width: 767.99px) {
  .hero__sec .sec__wrapper .breadcrumb__area .breadcrumb__list span a:hover {
    color: #FFBD6A;
  }
}
.hero__sec .sec__wrapper .breadcrumb__area .breadcrumb__list span.dvdr {
  padding: 0 0.625rem;
}
@media only screen and (max-width: 767.99px) {
  .hero__sec {
    margin-top: 3.9rem;
  }
}

.projct__sec {
  padding-top: 7rem;
}
.projct__sec .sec__wrapper .sec__titl__blck {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  padding-bottom: 3.75rem;
}
@media only screen and (max-width: 991.99px) {
  .projct__sec .sec__wrapper .sec__titl__blck {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    padding-bottom: 2rem;
  }
}
.projct__sec .sec__wrapper .sec__titl__blck .only__titl {
  max-width: 58%;
  width: 100%;
}
@media only screen and (max-width: 991.99px) {
  .projct__sec .sec__wrapper .sec__titl__blck .only__titl {
    max-width: 100%;
    padding: 0 0 1rem 0;
  }
}
.projct__sec .sec__wrapper .sec__titl__blck .only__titl h3 {
  font-size: 2.5rem;
  margin: 0;
}
@media only screen and (max-width: 575.99px) {
  .projct__sec .sec__wrapper .sec__titl__blck .only__titl h3 {
    font-size: 2rem;
  }
}
.projct__sec .sec__wrapper .sec__titl__blck .only__titl h4 {
  font-size: 1.2rem;
  color: #A04747;
}
.projct__sec .sec__wrapper .sec__titl__blck .only__para {
  max-width: 41%;
  width: 100%;
}
@media only screen and (max-width: 991.99px) {
  .projct__sec .sec__wrapper .sec__titl__blck .only__para {
    max-width: 100%;
  }
}
.projct__sec .sec__wrapper .sec__titl__blck .only__para p {
  margin: 0;
}
.projct__sec .sec__wrapper .grid__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  justify-items: stretch;
  align-items: stretch;
  justify-content: start;
  align-content: start;
  grid-auto-flow: row;
  position: relative;
  z-index: auto;
  overflow: hidden;
}
@media only screen and (max-width: 767.99px) {
  .projct__sec .sec__wrapper .grid__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
    justify-items: stretch;
    align-items: stretch;
    justify-content: start;
    align-content: start;
    grid-auto-flow: row;
  }
}
.projct__sec .sec__wrapper .grid__row .grid__col {
  position: relative;
  z-index: auto;
}
.projct__sec .sec__wrapper .grid__row .grid__col .grid__img {
  position: relative;
  z-index: auto;
}
.projct__sec .sec__wrapper .grid__row .grid__col .grid__img:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: auto;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}
.projct__sec .sec__wrapper .grid__row .grid__col .grid__content {
  position: absolute;
  right: 0;
  bottom: 1.25rem;
  left: 0;
  z-index: 4;
  margin: 0 1.25rem;
  padding: 1.5625rem 1.875rem;
  background-color: #05092c;
  -webkit-transform: perspective(25rem) rotateX(-90deg);
  transform: perspective(25rem) rotateX(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
}
.projct__sec .sec__wrapper .grid__row .grid__col .grid__content h5 {
  font-size: 1.5rem;
  margin: 0 0 0.625rem 0;
}
.projct__sec .sec__wrapper .grid__row .grid__col .grid__content h5 a {
  color: #ffffff;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 0% 0.0625rem, 0 0.0625rem;
  background-position: 100% 100%, 0 100%;
  -webkit-transition: background-size 0.6s linear;
  -o-transition: background-size 0.6s linear;
  transition: background-size 0.6s linear;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff)), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -o-linear-gradient(#ffffff, #ffffff), -o-linear-gradient(#ffffff, #ffffff);
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(#ffffff, #ffffff);
}
.projct__sec .sec__wrapper .grid__row .grid__col .grid__content h5 a:hover {
  background-size: 0% 0.0625rem, 100% 0.0625rem;
}
.projct__sec .sec__wrapper .grid__row .grid__col .grid__content p {
  position: relative;
  z-index: auto;
  margin: 0;
  display: inline-block;
  padding-left: 3.125rem;
}
.projct__sec .sec__wrapper .grid__row .grid__col .grid__content p:before {
  position: absolute;
  top: 1.25rem;
  left: 0;
  z-index: auto;
  content: "";
  height: 0.0625rem;
  width: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 0.3125rem;
  transform: translateY(-0.25rem);
  background-color: #fbfafb;
}
.projct__sec .sec__wrapper .grid__row .grid__col.grid__col--active .grid__img:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.projct__sec .sec__wrapper .grid__row .grid__col.grid__col--active .grid__content {
  -webkit-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}
.projct__sec .sec__wrapper .grid__row.grid__row--threeCol {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  justify-items: stretch;
  align-items: stretch;
  justify-content: start;
  align-content: start;
  grid-auto-flow: row;
  padding-top: 1.5rem;
}
.projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--1 {
  grid-column: span 6;
}
@media only screen and (max-width: 767.99px) {
  .projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--1 {
    grid-column: span 12;
  }
}
.projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--2 {
  grid-column: span 3;
}
@media only screen and (max-width: 767.99px) {
  .projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--2 {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 767.99px) and (max-width: 575.99px) {
  .projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--2 {
    grid-column: span 12;
  }
}
.projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--2 .grid__img img {
  min-height: 450px;
}
.projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--3 {
  grid-column: span 3;
}
@media only screen and (max-width: 767.99px) {
  .projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--3 {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 767.99px) and (max-width: 575.99px) {
  .projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--3 {
    grid-column: span 12;
  }
}
.projct__sec .sec__wrapper .grid__row.grid__row--threeCol .grid__col--3 .grid__img img {
  min-height: 450px;
}

.servc__sec {
  background-color: #f0f0f0;
}
.servc__sec .sec__wrapper .sec__titl__blck {
  max-width: 50%;
  padding-bottom: 3.75rem;
}
@media only screen and (max-width: 991.99px) {
  .servc__sec .sec__wrapper .sec__titl__blck {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 575.99px) {
  .servc__sec .sec__wrapper .sec__titl__blck {
    padding-bottom: 2rem;
    text-align: center;
  }
}
.servc__sec .sec__wrapper .sec__titl__blck h3 {
  position: relative;
  z-index: auto;
  margin: 0 0 0.625rem 0;
  font-size: 2.5rem;
  padding-left: 3.125rem;
}
@media only screen and (max-width: 575.99px) {
  .servc__sec .sec__wrapper .sec__titl__blck h3 {
    font-size: 2rem;
  }
}
.servc__sec .sec__wrapper .sec__titl__blck h3:before {
  position: absolute;
  top: 1.75rem;
  left: 0;
  z-index: auto;
  content: "";
  height: 0.1875rem;
  width: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 0.3125rem;
  -webkit-transform: translateY(-0.25rem);
  -ms-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
  background-color: #05092c;
}
.servc__sec .sec__wrapper .sec__titl__blck p {
  margin: 0;
}
.servc__sec .sec__wrapper .grid__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  column-gap: 1.5rem;
  row-gap: 3.75rem;
  justify-items: stretch;
  align-items: stretch;
  justify-content: start;
  align-content: start;
  grid-auto-flow: row;
}
@media only screen and (max-width: 767.99px) {
  .servc__sec .sec__wrapper .grid__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 2rem;
    justify-items: stretch;
    align-items: center;
    justify-content: center;
    align-content: start;
    grid-auto-flow: row;
    text-align: center;
  }
}
@media only screen and (max-width: 767.99px) and (max-width: 480px) {
  .servc__sec .sec__wrapper .grid__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    justify-items: stretch;
    align-items: center;
    justify-content: center;
    align-content: start;
    grid-auto-flow: row;
  }
}
.servc__sec .sec__wrapper .grid__row .grid__col {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
@media only screen and (max-width: 991.99px) {
  .servc__sec .sec__wrapper .grid__row .grid__col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .servc__sec .sec__wrapper .grid__row .grid__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    text-align: center;
  }
}
.servc__sec .sec__wrapper .grid__row .grid__col svg {
  height: 6.25rem;
}
@media only screen and (max-width: 991.99px) {
  .servc__sec .sec__wrapper .grid__row .grid__col svg {
    height: 4rem;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .servc__sec .sec__wrapper .grid__row .grid__col svg {
    height: 3rem;
  }
}
.servc__sec .sec__wrapper .grid__row .grid__col .col__text {
  padding: 0 0 0 1.25rem;
}
@media only screen and (max-width: 991.99px) {
  .servc__sec .sec__wrapper .grid__row .grid__col .col__text {
    padding: 1.25rem 0 0 0;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .servc__sec .sec__wrapper .grid__row .grid__col .col__text {
    padding: 1rem 0 0 0;
  }
}
.servc__sec .sec__wrapper .grid__row .grid__col .col__text h4 {
  margin: 0;
}
@media only screen and (max-width: 991.99px) {
  .servc__sec .sec__wrapper .grid__row .grid__col .col__text h4 {
    font-size: 1.3rem;
  }
}
.servc__sec .sec__wrapper .grid__row .grid__col .col__text p {
  margin: 0.625rem 0 1rem 0;
}
.servc__sec .sec__wrapper .grid__row .grid__col .col__text .btn__primary {
  background-color: #A04747;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
}
.servc__sec .sec__wrapper .grid__row .grid__col .col__text .btn__primary:hover {
  background-color: #05092c;
}
@media only screen and (min-width: 767.99px) {
  .servc__sec .sec__wrapper .grid__row .grid__col .col__text .btn__primary:hover {
    background-color: #05092c;
  }
}

.about__page .intro__sec .sec__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  column-gap: 15rem;
}
@media only screen and (max-width: 1350.99px) {
  .about__page .intro__sec .sec__wrapper {
    column-gap: 3rem;
  }
}
@media only screen and (max-width: 1350.99px) and (max-width: 767.99px) {
  .about__page .intro__sec .sec__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
.about__page .intro__sec .sec__wrapper .abt__text {
  max-width: 55%;
  width: 100%;
}
@media only screen and (max-width: 767.99px) {
  .about__page .intro__sec .sec__wrapper .abt__text {
    max-width: 100%;
    padding: 3rem 0 0 0;
  }
}
@media only screen and (max-width: 767.99px) and (max-width: 575.99px) {
  .about__page .intro__sec .sec__wrapper .abt__text {
    padding: 2rem 0 0 0;
  }
}
.about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck {
  max-width: 50%;
  padding-bottom: 3.75rem;
}
@media only screen and (max-width: 991.99px) {
  .about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 575.99px) {
  .about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck {
    padding-bottom: 2rem;
    text-align: center;
  }
}
.about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck h3 {
  position: relative;
  z-index: auto;
  margin: 0 0 0.625rem 0;
  font-size: 2.5rem;
  padding-left: 3.125rem;
}
@media only screen and (max-width: 575.99px) {
  .about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck h3 {
    font-size: 2rem;
  }
}
.about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck h3:before {
  position: absolute;
  top: 1.75rem;
  left: 0;
  z-index: auto;
  content: "";
  height: 0.1875rem;
  width: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 0.3125rem;
  -webkit-transform: translateY(-0.25rem);
  -ms-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
  background-color: #05092c;
}
.about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck p {
  margin: 0;
}
.about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck {
  padding-bottom: 1rem;
}
@media only screen and (max-width: 1350.99px) {
  .about__page .intro__sec .sec__wrapper .abt__text .sec__titl__blck {
    max-width: 100%;
  }
}
.about__page .intro__sec .sec__wrapper .abt__text p:last-child {
  margin: 0 0 0;
}
.about__page .intro__sec .sec__wrapper .abt__imgz {
  position: relative;
  z-index: 1;
  max-width: 32%;
  width: 100%;
}
.about__page .intro__sec .sec__wrapper .abt__imgz::before {
  content: "";
  width: 100%;
  height: 107%;
  position: absolute;
  top: -0.9375rem;
  left: -1.25rem;
  z-index: -1;
  border-top: 0.0625rem solid #A04747;
  border-right: 0.0625rem solid #A04747;
  border-bottom: 0.0625rem solid #A04747;
  border-left: 0.0625rem solid #A04747;
  border-radius: 0.3125rem;
}
.about__page .intro__sec .sec__wrapper .abt__imgz::after {
  content: "";
  width: 19.375rem;
  height: 55%;
  position: absolute;
  top: 17.5rem;
  right: -11.4375rem;
  z-index: -1;
  border-top: 0.0625rem solid #A04747;
  border-right: 0.0625rem solid #A04747;
  border-bottom: 0.0625rem solid #A04747;
  border-left: 0.0625rem solid #A04747;
  border-radius: 0.3125rem;
}
@media only screen and (max-width: 1350.99px) {
  .about__page .intro__sec .sec__wrapper .abt__imgz {
    max-width: 40%;
  }
  .about__page .intro__sec .sec__wrapper .abt__imgz:after {
    content: none;
  }
}
@media only screen and (max-width: 1350.99px) and (max-width: 767.99px) {
  .about__page .intro__sec .sec__wrapper .abt__imgz {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    column-gap: 1rem;
  }
  .about__page .intro__sec .sec__wrapper .abt__imgz:before {
    content: none;
  }
}
.about__page .intro__sec .sec__wrapper .abt__imgz img {
  border-radius: 0.3125rem;
}
@media only screen and (max-width: 575.99px) {
  .about__page .intro__sec .sec__wrapper .abt__imgz img {
    display: none;
  }
}
.about__page .intro__sec .sec__wrapper .abt__imgz img.imgz__sncd {
  position: absolute;
  top: 18.75rem;
  left: 22.5rem;
  z-index: 1;
  width: 16.875rem;
}
@media only screen and (max-width: 1350.99px) {
  .about__page .intro__sec .sec__wrapper .abt__imgz img.imgz__sncd {
    position: absolute;
    top: 18.75rem;
    right: 0;
    left: 0;
    z-index: 1;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1350.99px) and (max-width: 767.99px) {
  .about__page .intro__sec .sec__wrapper .abt__imgz img.imgz__sncd {
    position: static;
    top: 18.75rem;
    left: 0;
    z-index: 1;
  }
}
@media only screen and (max-width: 1350.99px) and (max-width: 767.99px) and (max-width: 575.99px) {
  .about__page .intro__sec .sec__wrapper .abt__imgz img.imgz__sncd {
    display: block;
  }
}
.about__page .process__sec .sec__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  column-gap: 5rem;
}
@media only screen and (max-width: 991.99px) {
  .about__page .process__sec .sec__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
.about__page .process__sec .sec__wrapper .left__side .sec__titl__blck {
  max-width: 50%;
  padding-bottom: 3.75rem;
}
@media only screen and (max-width: 991.99px) {
  .about__page .process__sec .sec__wrapper .left__side .sec__titl__blck {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 575.99px) {
  .about__page .process__sec .sec__wrapper .left__side .sec__titl__blck {
    padding-bottom: 2rem;
    text-align: center;
  }
}
.about__page .process__sec .sec__wrapper .left__side .sec__titl__blck h3 {
  position: relative;
  z-index: auto;
  margin: 0 0 0.625rem 0;
  font-size: 2.5rem;
  padding-left: 3.125rem;
}
@media only screen and (max-width: 575.99px) {
  .about__page .process__sec .sec__wrapper .left__side .sec__titl__blck h3 {
    font-size: 2rem;
  }
}
.about__page .process__sec .sec__wrapper .left__side .sec__titl__blck h3:before {
  position: absolute;
  top: 1.75rem;
  left: 0;
  z-index: auto;
  content: "";
  height: 0.1875rem;
  width: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 0.3125rem;
  -webkit-transform: translateY(-0.25rem);
  -ms-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
  background-color: #05092c;
}
.about__page .process__sec .sec__wrapper .left__side .sec__titl__blck p {
  margin: 0;
}
.about__page .process__sec .sec__wrapper .left__side .sec__titl__blck {
  max-width: 100%;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 767.99px) {
  .about__page .process__sec .sec__wrapper .left__side .sec__titl__blck h3 {
    text-align: center;
  }
}
.about__page .process__sec .sec__wrapper .left__side .flex__row .flex__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  column-gap: 2rem;
  padding: 0 0 1rem;
}
@media only screen and (max-width: 767.99px) {
  .about__page .process__sec .sec__wrapper .left__side .flex__row .flex__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    text-align: center;
  }
}
.about__page .process__sec .sec__wrapper .left__side .flex__row .flex__item span {
  display: block;
}
.about__page .process__sec .sec__wrapper .left__side .flex__row .flex__item span.item__icon {
  display: inline-flex;
  justify-content: center;
}
@media only screen and (max-width: 767.99px) {
  .about__page .process__sec .sec__wrapper .left__side .flex__row .flex__item span.item__icon {
    padding-bottom: 0.5rem;
  }
}
.about__page .process__sec .sec__wrapper .left__side .flex__row .flex__item span.item__icon svg {
  width: 5rem;
  fill: #A04747;
}
@media only screen and (max-width: 767.99px) {
  .about__page .process__sec .sec__wrapper .left__side .flex__row .flex__item span.item__icon svg {
    width: 3rem;
  }
}
.about__page .process__sec .sec__wrapper .right__side {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about__page .process__sec .sec__wrapper .right__side:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.about__page .process__sec .sec__wrapper .right__side:hover:before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
.about__page .process__sec .sec__wrapper .right__side img {
  border-radius: 0.3125rem;
}
.about__page .process__sec.sec__padding--tb {
  padding: 3rem 0 7rem 0;
}
@media only screen and (max-width: 1399.99px) {
  .about__page .process__sec.sec__padding--tb {
    padding: 7rem 0 7rem 0;
  }
}
@media only screen and (max-width: 1399.99px) and (max-width: 991.99px) {
  .about__page .process__sec.sec__padding--tb {
    padding: 0 0 5rem 0;
  }
}
@media only screen and (max-width: 1399.99px) and (max-width: 575.99px) {
  .about__page .process__sec.sec__padding--tb {
    padding: 0 0 3rem 0;
  }
}
.about__page .partner__sec {
  background-color: #ffffff;
}
.about__page .partner__sec .sec__wrapper .sec__titl__blck {
  max-width: 50%;
  padding-bottom: 3.75rem;
}
@media only screen and (max-width: 991.99px) {
  .about__page .partner__sec .sec__wrapper .sec__titl__blck {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 575.99px) {
  .about__page .partner__sec .sec__wrapper .sec__titl__blck {
    padding-bottom: 2rem;
    text-align: center;
  }
}
.about__page .partner__sec .sec__wrapper .sec__titl__blck h3 {
  position: relative;
  z-index: auto;
  margin: 0 0 0.625rem 0;
  font-size: 2.5rem;
  padding-left: 3.125rem;
}
@media only screen and (max-width: 575.99px) {
  .about__page .partner__sec .sec__wrapper .sec__titl__blck h3 {
    font-size: 2rem;
  }
}
.about__page .partner__sec .sec__wrapper .sec__titl__blck h3:before {
  position: absolute;
  top: 1.75rem;
  left: 0;
  z-index: auto;
  content: "";
  height: 0.1875rem;
  width: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 0.3125rem;
  -webkit-transform: translateY(-0.25rem);
  -ms-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
  background-color: #05092c;
}
.about__page .partner__sec .sec__wrapper .sec__titl__blck p {
  margin: 0;
}
.about__page .faq__sec .sec__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  column-gap: 5rem;
}
@media only screen and (max-width: 1200.99px) {
  .about__page .faq__sec .sec__wrapper {
    column-gap: 2rem;
  }
}
@media only screen and (max-width: 1200.99px) and (max-width: 1100.99px) {
  .about__page .faq__sec .sec__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
.about__page .faq__sec .sec__wrapper .left__side {
  width: 100%;
  max-width: 45%;
}
@media only screen and (max-width: 1100.99px) {
  .about__page .faq__sec .sec__wrapper .left__side {
    max-width: 100%;
  }
}
.about__page .faq__sec .sec__wrapper .left__side img {
  border-radius: 0.3125rem;
  max-height: 530px;
}
.about__page .faq__sec .sec__wrapper .right__side {
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 1100.99px) {
  .about__page .faq__sec .sec__wrapper .right__side {
    max-width: 100%;
    padding: 3rem 0 0 0;
  }
}
.about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck {
  max-width: 50%;
  padding-bottom: 3.75rem;
}
@media only screen and (max-width: 991.99px) {
  .about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 575.99px) {
  .about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck {
    padding-bottom: 2rem;
    text-align: center;
  }
}
.about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck h3 {
  position: relative;
  z-index: auto;
  margin: 0 0 0.625rem 0;
  font-size: 2.5rem;
  padding-left: 3.125rem;
}
@media only screen and (max-width: 575.99px) {
  .about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck h3 {
    font-size: 2rem;
  }
}
.about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck h3:before {
  position: absolute;
  top: 1.75rem;
  left: 0;
  z-index: auto;
  content: "";
  height: 0.1875rem;
  width: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 0.3125rem;
  -webkit-transform: translateY(-0.25rem);
  -ms-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
  background-color: #05092c;
}
.about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck p {
  margin: 0;
}
.about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck {
  max-width: 100%;
  padding-bottom: 1rem;
}
.about__page .faq__sec .sec__wrapper .right__side .sec__titl__blck p {
  padding-top: 1rem;
}
.about__page .faq__sec .sec__wrapper .right__side .qna {
  padding: 1.3rem 0;
  border-top: 0;
  border-right: 0;
  border-bottom: solid #05092c 0.1rem;
  border-left: 0;
}
.about__page .faq__sec .sec__wrapper .right__side .qna .question {
  font-size: 1.5rem;
  margin: 0;
  cursor: pointer;
  user-select: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  font-family: "Jost-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  position: relative;
  z-index: auto;
}
.about__page .faq__sec .sec__wrapper .right__side .qna .question:before, .about__page .faq__sec .sec__wrapper .right__side .qna .question:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  z-index: auto;
  margin: 0 0 -0.5rem;
  background: #05092c;
  border-radius: 0.125rem;
}
.about__page .faq__sec .sec__wrapper .right__side .qna .question:before {
  position: absolute;
  right: 0.5rem;
  z-index: auto;
  width: 0.125rem;
  height: 0.9375rem;
  transition: all 300ms;
  margin-top: -0.4688rem;
  background: #05092c;
}
.about__page .faq__sec .sec__wrapper .right__side .qna .question:after {
  position: absolute;
  right: 0.0625rem;
  z-index: auto;
  width: 1rem;
  height: 0.1875rem;
  margin-top: -0.0938rem;
  background: #05092c;
}
@media only screen and (max-width: 1100.99px) {
  .about__page .faq__sec .sec__wrapper .right__side .qna .question {
    padding: 0 2rem 0 0px;
  }
}
.about__page .faq__sec .sec__wrapper .right__side .qna.active .question::before {
  height: 0;
  margin-top: 0;
}
.about__page .faq__sec .sec__wrapper .right__side .qna .answer {
  height: 0px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  overflow: hidden;
  padding: 0;
}
.about__page .faq__sec .sec__wrapper .right__side .qna .answer p {
  margin: 0;
  padding-top: 0.5rem;
}

.contact-info-wrapper .google-map {
  margin-bottom: -9px;
}

.contact-info-wrapper .google-map iframe {
  width: 100%;
  height: 560px;
}

.contact-info-wrapper .contact-info-content {
  padding: 40px;
}

.contact-info-wrapper .contact-info-content h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-info-wrapper .contact-info-content .contact-info-area {
  margin-top: 40px;
}

.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background-color: rgba(166, 161, 130, 0.1);
  color: #A04747;
  text-align: center;
}

.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content {
  margin-top: 20px;
}

.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h3 {
  font-weight: 600;
}

.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h6 {
  font-weight: 400;
  font-size: 1rem;
}

.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content h6 a {
  color: #A04747;
}

.contact-wrapper-3 {
  background-image: url(../images/contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 80px 0;
  border-radius: 5px;
}

.contact-wrapper-3 .contact-content {
  background-color: #ffffff;
  border-radius: 0 0 5px 0;
  padding: 40px;
}

.contact-wrapper-3 .contact-content .contact-form-items .form-clt {
  position: relative;
}

.contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: 1px solid #333;
  background-color: transparent;
  padding: 16px 20px;
  border-radius: 5px;
  font-weight: 500;
}

.contact-wrapper-3 .contact-content .contact-form-items .btn__primary {
  background-color: #A04747;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
}
.contact-wrapper-3 .contact-content .contact-form-items .btn__primary:hover {
  background-color: #05092c;
}
@media only screen and (min-width: 767.99px) {
  .contact-wrapper-3 .contact-content .contact-form-items .btn__primary:hover {
    background-color: #05092c;
  }
}

@media (max-width: 767px) {
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 115px;
}

.footer__sec {
  background-color: #05092c;
  padding: 4rem 0 0;
}
@media only screen and (max-width: 767.99px) {
  .footer__sec {
    padding: 3rem 0 0;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col {
  color: #ffffff;
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col {
    width: 100%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col {
    text-align: center;
    max-width: 100%;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col li {
  font-size: 1.125rem;
}
@media only screen and (max-width: 767.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col li {
    display: inline-block;
    padding: 0 0.9375rem 0 0;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col li:first-child {
    display: block;
    padding: 0;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col li h4 {
  color: #ffffff;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col li a {
  font-size: 1.125rem;
  color: #ffffff;
  position: relative;
  padding: 0 0 0.625rem 0;
  text-transform: capitalize;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col li a:hover {
  color: #FFBD6A;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 {
  max-width: 25%;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo {
  width: 7rem;
  display: block;
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo {
    margin: 0 auto;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__1 {
  fill: none;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__2 {
  fill: #ffffff;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__6, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__7, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__8, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__9, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__10 {
  fill: #ffffff;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__3 {
  fill: #05092c;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__4 {
  clip-path: url(#clip-path);
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__10, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__5, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__6, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__7, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__8,
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__9 {
  isolation: isolate;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__10, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__6, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__7, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__8,
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__9 {
  font-size: 130px;
  font-family: Cinzel-Bold, Cinzel;
  font-weight: 700;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__7 {
  letter-spacing: -0.01em;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__8 {
  letter-spacing: -0.11em;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__9 {
  letter-spacing: -0.01em;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo svg .logo__cls__10 {
  letter-spacing: 0.03em;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo:hover svg .logo__cls__1 {
  fill: none;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo:hover svg .logo__cls__2 {
  fill: #A04747;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo:hover svg .logo__cls__3 {
  fill: #ffffff;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo:hover svg .logo__cls__4 {
  clip-path: url(#clip-path);
}
@media only screen and (min-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo:hover svg .logo__cls__1 {
    fill: none;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo:hover svg .logo__cls__2 {
    fill: #A04747;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo:hover svg .logo__cls__3 {
    fill: #ffffff;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__logo:hover svg .logo__cls__4 {
    clip-path: url(#clip-path);
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 p {
  margin: 1rem 0;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
  padding: 0.5rem 0 1.5rem 0;
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__form {
    margin: 0 auto;
    max-width: 60%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 480.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__form {
    max-width: 100%;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__form input {
  margin: 0;
  border: 0;
  padding: 1.2rem 1rem;
  border-radius: 0.625rem 0rem 0 0.625rem;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .ft__form button {
  width: 3.75rem;
  height: 3.9rem;
  line-height: 3.75rem;
  border-radius: 0.3125rem;
  text-align: center;
  background-color: #FFBD6A;
  color: #ffffff;
  border: 0;
  border-radius: 0 0.625rem 0.625rem 0rem;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .social__links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .social__links li a {
  padding: 0 0 0 1.25rem;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .social__links li a svg {
  fill: #ffffff;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .social__links li a:hover svg {
  fill: #FFBD6A;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .social__links li:first-child a {
  padding-left: 0;
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 {
    max-width: 100%;
    padding-bottom: 1rem;
    text-align: center;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--1 .social__links {
    display: none;
  }
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--2, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--3 {
    max-width: 30%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--2, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--3 {
    max-width: 100%;
    padding-bottom: 1.2rem;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--2 li a::before, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--3 li a::before {
  position: absolute;
  bottom: 0.625rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  content: "";
  background-color: #FFBD6A;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--2 li a:hover, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--3 li a:hover {
  color: #FFBD6A;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--2 li a:hover:before, .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--3 li a:hover:before {
  opacity: 1;
  visibility: visible;
  width: 2.8125rem;
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 {
    max-width: 40%;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 {
    max-width: 100%;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li {
  padding: 0 0 0.5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
@media only screen and (max-width: 767.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li svg {
  vertical-align: middle;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0.5rem;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li a {
  padding: 0 0 0 0.5rem;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:first-child {
  padding: 0;
}
.footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child {
  display: none;
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child {
    display: block;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child > .social__links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    padding: 0.5rem 0 0 0;
  }
}
@media only screen and (max-width: 991.99px) and (max-width: 767.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child > .social__links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
  }
}
@media only screen and (max-width: 991.99px) {
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child > .social__links > li {
    padding: 0;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child > .social__links > li a {
    padding: 0 0 0 1.25rem;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child > .social__links > li a svg {
    fill: #ffffff;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child > .social__links > li a:hover svg {
    fill: #FFBD6A;
  }
  .footer__sec .sec__wrapper .top__footer .flex__row .flex__col.flex__col--4 li:last-child > .social__links > li:first-child a {
    padding-left: 0;
  }
}
.footer__sec .sec__wrapper .bottom__footer {
  padding: 2rem 0;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
@media only screen and (max-width: 767.99px) {
  .footer__sec .sec__wrapper .bottom__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    text-align: center;
  }
}
.footer__sec .sec__wrapper .bottom__footer p {
  margin: 0;
}
.footer__sec .sec__wrapper .bottom__footer ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}
@media only screen and (max-width: 767.99px) {
  .footer__sec .sec__wrapper .bottom__footer ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    order: 0;
    align-self: auto;
    text-align: center;
  }
}
.footer__sec .sec__wrapper .bottom__footer ul li a {
  font-size: 1.125rem;
  color: #ffffff;
  position: relative;
  padding: 0 0 0 1.25rem;
  text-transform: capitalize;
}
.footer__sec .sec__wrapper .bottom__footer ul li a:hover {
  color: #FFBD6A;
}
.footer__sec .sec__wrapper .bottom__footer ul li:first-child a {
  padding-left: 0;
}

/*# sourceMappingURL=style.css.map */
