@import url("https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Wix+Madefor+Display:wght@400..700&display=swap");

:root {
  --black: #000;
  --black-bg: #050505;
  --secondary: #d99100;
  --dark-yellow: #d99100;
  --light-yellow: #f9a600;
  --beige: #faf5e4;
  --cream: #faf5e5;
  --black2: #101828;
  --error: #b51717;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  position: relative;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}
html {
  padding: 0;
  margin: 0;
  height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}
b, strong {
    font-weight: 700;
}
li {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
}
:hover,
:focus,
*:active {
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}
*:focus {
  box-shadow: none !important;
}
a {
  outline: none !important;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #0f0e3d;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
}
a,
input,
button,
textarea,
a:focus,
select:focus {
  outline: none;
}
a:hover,
a:focus,
select:focus,
button:focus {
  outline: none;
  text-decoration: none;
}
button,
input,
textarea {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
::-webkit-input-placeholder {
  color: #898989;
}
::-moz-placeholder {
  color: #898989;
}
::-ms-placeholder {
  color: #898989;
}
::placeholder {
  color: #898989;
}

/* Button css */

/* Bordered button  */

.btn-border {
  padding: 14px 50px;
  border: 1px solid #000;
  border-radius: 52px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.btn-border:hover {
  border-color: var(--secondary);
  transition: all 0.4s ease-in-out;
}
.btn-border-white {
  border-color: #fff;
  color: #fff;
}
.btn-border:hover span,
.btn-filled-white:hover span {
  color: var(--secondary);
}

.btn-border > span,
.btn-primary > span,
.btn-filled-white > span {
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.btn-border > span.hover-text,
.btn-primary > span.hover-text,
.btn-filled-white > span.hover-text {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate3d(-50%, -50%, 0) rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  width: 100%;
  text-align: center;
}

.btn-border:hover > span.default-text,
.btn-primary:hover > span.default-text,
.btn-filled-white:hover > span.default-text {
  transform: translateY(-10px) rotate3d(1, 0, 0, 80deg);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.btn-border:hover > span.hover-text,
.btn-primary:hover > span.hover-text,
.btn-filled-white:hover > span.hover-text {
  transform: translate3d(-50%, -50%, 0) rotate3d(1, 0, 0, 0deg);
  opacity: 1;
  transition: all 0.4s ease-in-out;
  top: 50%;
}

/* Primar button(filled) */

.btn-primary {
  padding: 14px 50px;
  background: var(--dark-yellow);
  border-radius: 52px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: all 0.4s ease-in-out;
  position: relative;
  text-align: center;
}

.btn-primary:hover {
  transition: all 0.4s ease-in-out;
  background: var(--light-yellow);
}

/* white button filled */

.btn-filled-white {
  padding: 20px 62px;
  border-radius: 52px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  background-color: #fff;
}
.btn-filled-white:hover {
  color: var(--dark-yellow);
}
/* Container css */

.container {
  max-width: 1210px;
  padding: 0 20px;
  margin: 0 auto;
}
.container-fluid {
  padding: 0 30px;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 22px 0;
}
.banner-sec {
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-bottom: 60px;
}
.banner-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 5%,
    rgba(0, 0, 0, 0.6) 67.63%
  );
  z-index: 0;
}
.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.banner-sec .container {
  position: relative;
  z-index: 1;
}
.banner-sec h1 {
  font-size: 64px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.banner-sec h1 span {
  color: var(--secondary);
}
.banner-sec h6 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
}
.banner-sec p {
  font-size: 20px;
  color: #ababab;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta {
  display: flex;
  gap: 20px;
}
.border-y {
  background: var(--secondary);
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 50%;
  height: 9px;
  max-width: 600px;
}

.content-sec {
  padding: 100px 0;
}
.content-sec h3 {
  font-size: 44px;
  font-weight: 600;
  color: #000;
  padding-bottom: 40px;
}
.content-sec p {
  padding-bottom: 20px;
}
.content-sec p:last-child {
  padding-bottom: 0;
}

.featured-sec {
  padding: 100px 0;
  background-color: #f7f7f7;
}
.title-sec {
  padding-bottom: 40px;
}

.title-sec h6 {
  font-size: 16px;
  color: #d99100;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
}
.title-sec h2 {
  font-size: 55px;
  color: #000;
  font-weight: 600;
  line-height: normal;
}
.title-sec h2 span {
  color: var(--secondary);
}
.title-sec h3 {
  font-size: 44px;
  color: #000;
  font-weight: 600;
  line-height: normal;
}
.title-sec h3 span {
  color: var(--secondary);
}
.featured-grid {
  display: grid;
  gap: 20px;
}
.featured-item {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  padding: 22px;
  display: grid;
  grid-template-columns: 445px 1fr;
  gap: 24px;
}
.featured-item-lft {
  max-width: 445px;
  max-height: 275px;
  border-radius: 12px;
  overflow: hidden;
}
.featured-item-lft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.featured-item-rit-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 12px;
}
.featured-item-rit-top h6 {
  display: flex;
  align-content: center;
  gap: 2px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
}
.featured-item h4 {
  color: #000;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 2px;
  font-family: "Arima", system-ui;
}
.featured-item p {
  color: #4e4e4e;
}
.featured-spec {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: rgba(255, 255, 255, 0.1);
}
.featured-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.featured-spec-item h6 {
  font-size: 14px;
  color: #9f9f9f;
  font-weight: 500;
  font-family: "Arima", system-ui;
}
.featured-spec-item p {
  font-size: 16px;
  color: #000;
}

.call-to-act {
  padding: 50px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: rgba(217, 145, 0, 0.02);
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.call-to-act::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -70px;
  width: 326px;
  height: 326px;
  background: var(--secondary);
  z-index: 0;
  border-radius: 326px;
  opacity: 0.2;
  filter: blur(100px);
}
.call-to-act::after {
  content: "";
  position: absolute;
  right: -47px;
  bottom: -60px;
  width: 326px;
  height: 326px;
  background: var(--secondary);
  z-index: 0;
  border-radius: 326px;
  opacity: 0.2;
  filter: blur(100px);
}
.call-to-act ul {
  display: flex;
  gap: 20px;
  padding-bottom: 12px;
  z-index: 1;
  position: relative;
}
.call-to-act ul li {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 500;
  position: relative;
  padding-left: 10px;
}
.call-to-act ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--secondary);
  border-radius: 50%;
}
.call-to-act .title-sec {
  z-index: 1;
  position: relative;
  padding-bottom: 0;
}

.call-to-act .title-sec h3 {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  line-height: normal;
  font-family: "Arima", system-ui;
}
.call-to-act .title-sec h3 span {
  color: var(--secondary);
}
.call-to-act .title-sec p {
  color: #4e4e4e;
}
.call-to-act .cta {
  z-index: 1;
  position: relative;
}

.who-we-sec {
  padding: 100px 0;
  background: #000;
}
.who-we-sec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.who-we-sec-inner .title-sec {
  padding-bottom: 10px;
}
.who-we-sec-inner .title-sec h3 {
  color: #fff;
}
.who-we-content {
  padding-left: 30px;
  border-left: 4px solid var(--secondary);
}
.who-we-content h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.who-we-content p {
  color: #b5b5b5;
}
.rit {
  display: grid;
  gap: 30px;
}
.rit-top {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.rit-top-item {
  text-align: center;
  border-right: 1px solid #4c4c4c;
}
.rit-top-item:last-child {
  border-right: none;
}
.rit-top-item h4 {
  font-size: 36px;
  color: var(--secondary);
  font-weight: 500;
  line-height: normal;
  padding-bottom: 2px;
  font-family: "Arima", system-ui;
}
.rit-top-item p {
  color: #a0a0a0;
}

.rit-btm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
.rit-btm-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: flex-start;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 22px;
}
.ico {
  display: flex;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}
.rit-btm img {
  border-radius: 12px;
}
.rit-btm .rit-btm-item h5 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  line-height: normal;
  font-family: "Arima", system-ui;
}
.rit-btm .rit-btm-item p {
  color: #a0a0a0;
}

.faq-sec{
  padding: 100px 0;
}
.faq-sec-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.faq-sec-inner .title-sec {
  padding-bottom: 10px;
}
.faq-sec .cta{margin-top: 40px;}
.faq-sec .accordion {
  border: none;
  display: grid;
  gap: 14px;
}
.faq-sec .accordion-item {
 border: 1px solid #D9D9D9;
 border-radius: 12px;
} 
.faq-sec .accordion-button {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  padding: 20px;
  border-radius: 12px;
}
.faq-sec .accordion-button:not(.collapsed) {
  background-color: #f7f7f7;
  border-radius: 12px 12px 0 0!important;
}

.faq-sec .accordion-body {
  font-size: 16px;
  color: #4e4e4e;
  padding: 20px;
  line-height: 1.6;
}
.accordion-item:last-of-type .accordion-button.collapsed,.accordion-item:first-of-type .accordion-button {
  border-radius: 12px;
}

.accordion-button::after{
  background-image: url('../images/chevron-down.svg');
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}
.accordion-button:not(.collapsed)::after{
  transform: rotate(180deg);
  background-image: url('../images/chevron-down.svg');
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}

footer {
  padding: 12px 0;
  text-align: center;
  font-size: 12px;
  background: #000;
}
footer a.navbar-brand{
  padding: 0;
  max-width: 60px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer ul{
  display: flex;
  gap: 40px;
}
footer p{
  color: #B5B5B5;
  font-weight: 500;
}


/* Responsive css */
@media (max-width: 991px) {
  .banner-sec h1{
    font-size: 50px;
  }
  .banner-sec p{
    font-size: 18px;
  }
  .content-sec,.featured-sec ,.who-we-sec ,.faq-sec {
    padding: 70px 0;
  }
  .title-sec h2 {
    font-size: 45px;
  }
  .content-sec h3 {
    font-size: 36px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-item {
    grid-template-columns: 1fr;
  }
  .featured-item-lft {
    max-width: 100%;
    max-height: 100%;
  }
  .who-we-sec-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .who-we-content {
    padding-left: 0;
    border-left: none;
    margin-top: 30px;
  }
  .call-to-act {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .call-to-act .cta {
    justify-content: center;
  }
  .faq-sec-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }
   .banner-sec h1{
    font-size: 40px;
  }
  .banner-sec h6{
    font-size: 14px;
  }
  .banner-sec p{
    font-size: 16px;
  }
  .content-sec,.featured-sec ,.who-we-sec ,.faq-sec {
    padding: 50px 0;
  }
  .btn-primary,.btn-border{
    padding: 9px 25px;
    font-size: 14px;
  }
  .content-sec h3 {
    font-size: 30px;
  }
  .featured-item {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .featured-item-lft {
    max-width: 100%;
  }
  .rit-top {
    grid-template-columns: 1fr;
  }
  .title-sec h6 {
    font-size: 14px;
  }
  .title-sec h3 {
    font-size: 30px;
  }
  .title-sec h2 {
    font-size: 36px;
  }
  .featured-item h4 {
    font-size: 28px;
  }
  .featured-spec-item p {
    font-size: 14px;
  }
  .featured-spec-item h6 {
    font-size: 12px;
  }
  .call-to-act {
    padding: 20px;
  }
  .call-to-act .title-sec h3 {
    font-size: 28px;
  }
  .call-to-act ul li {
    font-size: 12px;
  }
  .call-to-act ul {
    gap: 10px;
  }
  .who-we-content h6 {
    font-size: 18px;
  }
  .rit-top-item h4 {
    font-size: 28px;
  }
  .rit-top-item p {
    font-size: 14px;
  }
  .rit-top-item {
    border-right: none;
  }
  .rit-top {
    gap: 16px;
  }
  .rit-btm .rit-btm-item h5 {
    font-size: 20px;
  }
  .rit-btm-item p {
    font-size: 14px;
  }
  .rit-btm-item {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .faq-sec .accordion-button {
    font-size: 18px;
    padding: 16px;
  }
  .faq-sec .accordion-body {
    font-size: 14px;
    padding: 16px;
  }
  footer ul{
    gap: 10px;
    padding-left: 10px;
  }
  footer a.navbar-brand{
    max-width: 40px;
  }
}

.faq-sec-page-inner {
  grid-template-columns: 1fr;
}