@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: 'AmstelvarAlpha Default';
    font-style: normal;
    font-weight: normal;
    src: local('AmstelvarAlpha'), url('../fonts/Amstelvar-Roman[GRAD\,XOPQ\,XTRA\,YOPQ\,YTAS\,YTDE\,YTFI\,YTLC\,YTUC\,wdth\,wght\,opsz].ttf') format('woff')
 }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: "Inter", sans-serif;
}
/* banner */
.banner {
  height: 100vh;
  width: 100%;
}
.banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
/* banner text  */
.text {
  position: absolute;
  bottom: 60%;
  transform: translateY(50%);
  right: 5%;
  color: #cfba5d;
  width: 40%;
}
.text h1{
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(28px, 4vw, 45px);
}
/* nav bar  */
header {
  display: flex;
  position: fixed;
  top: 0%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 23px 75px;
  background: transparent;
}
header.scrolled {
  z-index: 2;
  background: #000000c4;
  backdrop-filter: blur(2px);
  padding: 15px 75px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
/* logo  */
.logo {
  max-width: 350px;
  margin-left: 20px;
}
.logo img {
  width: 100%;
}
/* nav menu  */
.nav-menu {
  right: 0%;
  padding: 20px 30px;
  width: auto;
  z-index: 500;
}
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.nav-menu ul li{
  border-right: 1px solid rgba(240, 215, 174, 1);
  padding: 0 28px;
  font-weight: 600;
}
.nav-menu ul li:nth-child(5){
  border-right: 0;
}
.nav-menu ul li a {
  color: rgba(240, 215, 174, 1);
  text-decoration: none;
  font-size: 0.9371vw;

}
.nav-menu ul li a:hover {
  color: #cfba5d;
}
header.scrolled .nav-menu ul li:nth-child(5){
  border-right: 0;
}
header.scrolled .nav-menu ul li a:hover{
  color: #cfba5d;
}
/* Hamburger */
.hamburger{
  display: none;
  z-index: 1001;
}
@media (max-width: 992px) {
  header{
    z-index: 2;
    padding: 12px 45px;
  }
  .hamburger{
    display: block;
  }
  header.scrolled{
    background: #000000c4;
    padding: 12px 45px;
  }
  header.scrolled .nav-menu ul li{
    border-right: 0;
  }
  .nav-menu.active ul li{
    border-right: 0;
  }
  .nav-menu{
    position: fixed;
    top: 0;
    display: none;
    border-radius: 0;
    background-color: white;
    height: 100vh;
  }
  .nav-menu.active{
    border-radius: 40px 0px 0px 40px;
    display: block;
  }
  .nav-menu.active ul li{
    border-right: 0;
  }
  .nav-menu ul{
    padding: 25px 0;
    flex-direction: column;
    text-align: center;
    font-size: 38px;
    margin-top: 50px;
  }
  .nav-menu ul li{
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(121, 97, 53, 1);
  }
  .nav-menu ul li a{
    font-size: 25px;
    color: rgba(121, 97, 53, 1);
  }
  .text{
    font-size: 50px;
    width: 55%;
    top: 20%;
  }

}
@media screen and (max-width: 768px) {
  .banner {
    height: 80vh;
  }
  .banner img {
    width: 100%;
  }
  .text {
    position: absolute;
    left: 20%;
    top: 0%;
    width: 60%;
    font-size: 43px;
    transform: translateY(35%);
  }
  .nav-menu{
    width: 70%;
  }
  .nav-menu.active{
    border-radius: 0;
  }
  .hamburger{
    display: block;
    cursor: pointer;
  }
  .nav-menu ul{
    padding: 25px 0;
    flex-direction: column;
  }
  .nav-menu ul li{
    font-size: 15px;
    margin-bottom: 45px;
  }
  .nav-menu ul li a{
    font-size: 30px;
  }
  header{
    margin: 0 auto;
    padding: 15px 25px;
  }
  header.scrolled{
    padding: 15px 25px;
  }
}
@media(max-width: 576px){
  .text{
    font-size: 25px;
    width: 80%;
    top: -50px;
    left: 13%;
  }
  .logo{
    width: 60%;
  }
  .hamburger img{
    width: 80%;
  }
  .nav-menu.active{
    width: 80%;
    padding: 12px;
  }
  .nav-menu ul{
    margin-top: 60px;
  }
  .nav-menu ul li{
    margin-bottom: 60px 0;
  }
  .nav-menu ul li a{
    font-size: 16px;
  }
  header.scrolled{
    padding: 15px;
  }
   header {
    margin: 0 auto;
    padding: 15px;
    position: fixed;   
    width: 100%;
  }
  .logo {
    width: 50%;           
  }
  .logo img {
    width: 100%;          
  }
}
/* content  */
.content {
  position: relative;
  z-index: -1;
  display: flex;
  background: rgba(255, 255, 255, 1);
  width: 100%;
  padding: 65px 73px;
  justify-content: space-between;
}
/* text content  */
.text-content {
  width: 45%;
}
.heading {
  width: 85%;
  margin-bottom: 20px;
}
.heading h1 {
  font-family: 'AmstelvarAlpha Default';
  font-size: 45px;
  font-weight: 400;
  color: rgba(121, 97, 53, 1);
  line-height: 70px;
}
.ellipseSection {
  width: 55%;
}

.paragraph p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(80, 80, 80, 1);
  margin-bottom: 35px;
  line-height: 36px;
}
/* Ellipse content  */
.ellipse-Section {
  position: relative;
  display: flex;
  align-items: center;
}
.ellipse {
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  max-width: 256px;
  margin-bottom: 65px;
}
.ellipse img {
  width: 100%;
}
.ellipse-main {
  margin-right: 25px;
}
.gold-ellipse {
  position: relative;
}
.silver-ellipse {
  position: relative;
}
/* vector */
.vector {
  position: absolute;
  top: 41%;
  left: 40%;
}
.vector img {
  width: 100%;
  height: auto;
}
/* bars  */
.gold-bar {
  position: absolute;
  width: 300px;
  height: auto;
  left: -50px;
}
.gold-bar img {
  width: 100%;
  height: 100%;
}
.silver-bar {
  position: absolute;
  top: -5%;
  left: -6px;
  height: 302px;
  width: 280px;
}
.silver-bar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.platinum-bar {
  position: absolute;
  top: -5%;
  left: -6px;
  height: 302px;
  width: 280px;
}
.platinum-bar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ellipse text  */
.gold-bar h2 {
  font-family: 'AmstelvarAlpha Default';
  position: absolute;
  left: 0rem;
  bottom: 0.25rem;
  color: rgb(80, 80, 80);
  font-size: 24px;
  font-weight: 400;
}
.silver-bar h2 {
  font-family: 'AmstelvarAlpha Default';
  position: absolute;
  left: -1rem;
  bottom: 1.25rem;
  color: rgb(80, 80, 80);
  font-size: 24px;
  font-weight: 400;
}
.platinum-bar h2 {
  font-family: 'AmstelvarAlpha Default';
  position: absolute;
  left: 5rem;
  bottom: -0.75rem;
  color: rgb(80, 80, 80);
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  .content {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
  }
  .heading h1 {
    font-size: 70px;
  }
  .paragraph p {
    font-size: 30px;
  }
  .ellipse-Section {
    position: relative;
    bottom: 30px;
    left: 50px;
  }
  .text-content {
    /* min-width: 600px; */
    margin: 0 auto;
    text-align: center;
  }

  .heading h1 {
    margin-bottom: 20px;
  }
  .paragraph {
    margin-bottom: 14px;
  }
  .vector {
    position: absolute;
    top: 41%;
    left: 35%;
  }
}
@media(max-width:768px){
  .ellipse-Section{
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .vector{
    display: none;
  }
  .text-content{
    width: 100%;
    margin: 0;
    text-align: center;
    margin-bottom: 15%;
  }
  .text-content h1{
    font-size: 42px;
  }
  .heading{
    width: 100%;
  }
}
@media(max-width: 576px){
  .content{
    padding: 65px 10px;
  }
  .ellipse-Section{
    position: relative;
    left: 8%;
    width: 85%;
  }
  .ellipse-main{
    left: 0;
  }
  .text-content{
    width: 100%;
    text-align: center;
  }
  .text-content h1{
    font-size: 50px;
  }
  .text-content p{
    font-size: 17px;
  }
  .ellipse{
    width: 65%;
    left: 5%;
  }
  .gold-bar{
    width: 195px;
  }
  .gold-bar img{
    width: 100%;
  }
  .silver-bar{
    height: 195px;
    left: -43%;
  }
  .silver-bar img{
    width: 100%;
    object-fit: contain;
  }
  .ellipse{
    margin-bottom: 50px;
  }
  .silver{
    margin-top: 85px;
    width: 161px;
  }
  .gold{
    width: 161px;
  }
  .platinum-bar{
    top: -25px;
    height: 280px;
    left: 2%;
    width: 195px;
    transform: translateY(-10%);
  }
  .platinum-bar img{
    object-fit: contain;
  }
   .platinum{
    margin-top: 20px;
    width: 161px;
    left: -5%;
  }
   .platinum img{
    width: 100%;
  }
  .platinum-bar h2{
    margin-bottom: 30px;
    left: 15%;
    bottom: 0;

  }
  .gold-bar h2{
    left: 6rem;
    transform: translateY(45px);
  }
  .silver-bar h2{
    left: 6rem;
    transform: translateY(35px);
  }
}
/* what we do section   */
.section {
  position: relative;
  z-index: -1;
  display: flex;
  background-color: rgba(243, 239, 233, 1);
  width: 100%;
  padding: 90px 73px;
  justify-content: space-between;
}
.img-content {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
}
.imgBox {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 0 50px;
}
.imgBox img {
  object-fit: cover;
  width: 100%;
  justify-content: center;
  height: auto;
}
/* border left  */
.img-content::before {
  content: "";
  position: absolute;
  border-right: 2px solid rgba(121, 97, 53, 1);
  height: 35%;
  width: 1px;
  top: 0;
}
.vertical-left {
  position: absolute;
  left: -20px;
  top: 35%;
  height: 25%;
}
/* border right  */
.img-content::after {
  content: "";
  position: absolute;
  left: 100%;
  border-right: 2px solid rgba(121, 97, 53, 1);
  height: 35%;
  width: 1px;
  bottom: 0;
}
.vertical-right {
  position: absolute;
  position: absolute;
  right: -23px;
  bottom: 18%;
  height: 26%;
}
/* details section */
.details {
  width: 40%;
  gap: 20px;
}
.heading2 {
  font-family: 'AmstelvarAlpha Default';
  width: 85%;
  margin-bottom: 25px;
}
.heading2 h1 {
  font-family: 'AmstelvarAlpha Default';
  font-size: 45px;
  font-weight: 300;
  color: rgba(121, 97, 53, 1);
}
.para {
  width: 100%;
}
.para p {
  font-size: 15px;
  color: rgba(80, 80, 80, 1);
  margin-bottom: 35px;
  line-height: 27px;
}
.sub-heading h2 {
  font-family: 'AmstelvarAlpha Default';
  font-size: 25px;
  color: rgba(80, 80, 80, 1);
  font-weight: 400;
  margin-bottom: 15px;
}
.checkbox ul {
  width: 100%;
  list-style: none;
}
.checkbox ul li {
  position: relative;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  color: rgba(80, 80, 80, 1);
  padding: 20px 0px;
  padding-left: 35px;
  border-bottom: 1px solid rgba(232, 232, 231, 1);
}
.checkbox li::before{
  position: absolute;
  left: 0;
  bottom: 25px;
  padding-right: 30px;
  height: 15px;
  width: 15px;
  content: "";
  background-repeat: no-repeat;
  background-image: url("../images/tick.svg");
}
.para-last {
  width: 100%;
}
.para-last {
  font-size: 16px;
  color: rgba(80, 80, 80, 1);
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  .section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 50px;
  }
  .img-content {
    border-bottom: 1px solid rgba(121, 97, 53, 1);;
    border-top: 1px solid  rgba(121, 97, 53, 1);;
    width: 100%;
    margin-bottom: 75px;
    padding: 30px 0px;
  }
  .imgBox {
    width: 100%;
    height: 100%;
  }
  .imgBox img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .img-content::before,
  .img-content::after{
    display: none;
  }
  .vertical-left,
  .vertical-right{
    display: none;
  }
  .imgBox{
    padding: 0px;
  }
  .imgBox::before{
    content: "";
    height: 45px;
    width: 45px;
    background-image: url(../images/star.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: -22px;
    left: 43%;
  }
  .imgBox::after{
    content: "";
    height: 45px;
    width: 45px;
    background-image: url(../images/star.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -25px;
    left: 43%;
  }
  /* Details  */
  .details {
    width: 100%;
    margin-bottom: 100px;
  }
  .heading2{
    width: 100%;
    margin-bottom: 25px;
  }
  .heading2 h1{
    text-align: center;
  }
  .sub-heading h2{
    text-align: center;
  }
  .para p{
    text-align: center;
    font-size: 25px;
  }
  .sub-heading h2{
    font-size: 40px;
  }
  .checkbox ul li{
    font-size: 20px;
  }
  .para-last p{
    font-size: 25px;
  }
}
@media(max-width:576px){
  .section{
    padding: 65px 30px;
  }
  .img-content{
    height: 370px;
    margin-bottom: 35px;
  }
  .img-content::before,
  .img-content::after{
    display: none;
  }
  .vertical-left,
  .vertical-right{
    display: none;
  }
  .imgBox{
    padding: 0px;
  }
  .imgBox::before{
    content: "";
    height: 45px;
    width: 45px;
    background-image: url(../images/star.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: -22px;
    left: 43%;
  }
  .imgBox::after{
    content: "";
    height: 45px;
    width: 45px;
    background-image: url(../images/star.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -25px;
    left: 43%;
  }
  /* Details  */
  .heading2{
    text-align: center;
  }
  .heading2 h1{
    font-size: 39px;
  }
  .para p{
    line-height: 30px;
    font-size: 19px;
  }
  .sub-heading{
    text-align: center;
  }
  .sub-heading h2{
    font-size: 25px;
  }
  .checkbox ul li{
    font-size: 15px;
  }
  .para-last p{
    font-size: 17px;
  }
  .details{
    margin-bottom: 0;
  }
}
/* section 2  */
.section2 {
  position: relative;
  z-index: -1;
  background: rgba(255, 255, 255, 1);
  width: 100%;
  padding: 65px 8%;
  padding-bottom: 80px;
}
/* top content  */
.top {
  text-align: center;
}
.top-text {
  width: 100%;

  text-align: center;
  margin-bottom: 25px;
}
.top-text h1 {
  font-family: 'AmstelvarAlpha Default';
  font-size: 45px;
  font-weight: 400;
  color: rgba(121, 97, 53, 1);
}
.top-para {
  width: 100%;
}
.top-para p {
  font-size: 16px;
  color: rgba(80, 80, 80, 1);
  margin-bottom: 35px;
  line-height: 36px;
}
/* bottom content  */
.section-content {
  display: flex;
  text-align: center;
  margin-top: 85px;
  align-items: center;
  padding-bottom: 60px;
  font-size: 20px;
}
/* precision */
.precision {
  width: 33.33%;
  border-right: 1px solid rgba(121, 97, 53, 1);
  padding-right: 80px;
}
.svg {
  display: block;
}
.svg img {
  height: 100%;
  width: auto;
}
.text-para p{
  font-size: 16px;
  color: rgba(80, 80, 80, 1);
}
.word h1 {
  font-family: 'AmstelvarAlpha Default';
  font-size: 25px;
  color: rgba(80, 80, 80, 1);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* integrity  */
.integrity {
  position: relative;
  width: 33.33%;
  padding: 0 60px;
}
.integrity-para p{
  color: rgba(80, 80, 80, 1);
  font-size: 16px;
}
.integrity::before {
  content: "";
  position: absolute;
  left: -21px;
  height: 50px;
  bottom: 50%;
  width: 50px;
  background-repeat: no-repeat;
  transform: translateY(50%);
  background-image: url("../images/star.svg");
}
.integrity::after {
  content: "";
  position: absolute;
  right: -29px;
  height: 50px;
  bottom: 50%;
  width: 50px;
  background-repeat: no-repeat;
  transform: translateY(50%);
  background-image: url("../images/star.svg");
}
.integrity-image img {
  height: 100%;
  width: auto;
}
.integrity-head h1 {
  font-family: 'AmstelvarAlpha Default';
  font-size: 25px;
  color: rgba(80, 80, 80, 1);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* focus  */
.focus {
  width: 33.33%;
  padding: 0 60px;
  border-left: 1px solid rgba(121, 97, 53, 1);
}
.focus-image img {
  height: 100%;
  width: auto;
}
.focus-para p{
  color: rgba(80, 80, 80, 1);
  font-size: 17px;
}
.focus-text h1 {
  font-family: 'AmstelvarAlpha Default';
  font-size: 25px;
  color: rgba(80, 80, 80, 1);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .section2 {
    display: flex;
    flex-direction: column;
  }
  .section-content {
    flex-direction: column;
  }
  .precision,
  .focus {
    border: none;
  }
  .precision {
    padding: 0;
    width: 100%;
    margin: auto;
  }
  .precision p {
    margin-bottom: 40px;
    font-size: 18px;
  }
  .integrity {
    font-size: 25px;
    width: 100%;
    padding: 0;
  }
  .integrity-image{
    border-bottom: 1px solid rgba(121, 97, 53, 1);
    border-top: 1px solid rgba(121, 97, 53, 1);
    padding: 55px 0;
  }
  .section-content .integrity::after {
    content: "";
    position: absolute;
    left: 50%;
    height: 50px;
    bottom: -28px;
    width: 50px;
    background-repeat: no-repeat;
    transform: translateX(-50%);
    background-image: url("../images/star.svg");
  }
  .section-content .integrity::before {
    content: "";
    position: absolute;
    left: 50%;
    height: 50px;
    top: -21px;
    width: 50px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url("../images/star.svg");
  }
  .focus {
    padding: 0;
    width: 95%;
    margin-top: 25px;
  }
  .focus p {
    font-size: 20px;
  }
  .focus img {
    margin-top: 30px;
  }
  .top-para p{
    font-size: 30px;
  }
}
@media(max-width: 576px){
  .section2{
    padding: 64px 10px;
  }
  .section-content{
    margin-top: 10px;
  }
  .top-text h1{
    font-size: 35px;
  }
  .top-para p{
    font-size: 16px;
  }
  .text-para p{
    font-size: 16px;
    text-align: center;
  }
  .integrity::before{
    left: 44%;
    top: 33px;
  }
  .integrity::after{
    left: 44%;
    bottom: 56px;
  }
  .precision{
    padding: 0;
  }
  .svg{
    margin: 0;
  }
  .integrity-para p{
    font-size: 16px;
  }
  .focus-para p{
    font-size: 16px;
  }
}
/* footer  */
footer {
  padding-bottom: 530px;
  background-image: url("../images/footer.jpg");
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.bg-dark {
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0.6;
}
.footer-text {
  position: absolute;
  text-align: center;
  left: 0%;
  color: #fff;
  z-index: 45;
  margin-top: 120px;
  width: 100%;
}
.footer-button {
  
  margin-top: 170px;
}
.footer-button button {
  background: rgba(235, 212, 77, 1);
  border-radius: 45px;
  font-size: 21px;
  font-weight: 700;
  padding: 25px 60px;
}
.footer-button button:hover {
  background: #fff;
  scale: 1.03;
}
.footer-line {
  height: 1px;
  width: 90%;
  background: rgba(80, 80, 80, 1);
  margin: 100px auto 0 auto;
}
.footer-h1 {
  position: absolute;
  left: 25%;
  width: 50%;
  top: 0;
}
.footer-h1 h1{
  font-family: 'AmstelvarAlpha Default';
  font-size: 50px;
  font-weight: 100;
}
.footer-end {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  font-size: 13px;
}
.footer-button button a{
  text-decoration: none;
  color: black;
}
.tm p{
  font-weight: 300;
}
.tm sup{
  font-size: 8px;
}
@media (max-width: 768px){
  footer{
    padding-bottom: 420px;
  }
  .footer-h1{
    position: absolute;
    left: 20%;
    width: 60%;
  }
  .footer-h1 h1{
    font-size: 28px;
  }
  .footer-button{
    margin-top: 125px;
  }
  .footer-button button{
    padding: 22px 25px;
    font-size: 18px;
  }
  .footer-text{
    margin-top: 90px;
  }
  .footer-line{
        margin: 80px auto 0 auto;
  }
}
@media(max-width: 576px){
  footer{
    padding-bottom: 380px;
  }
  .copy{
    font-size: 10px;
  }
  .tm{
    font-size: 10px;
  }
  .footer-h1{
    width: 75%;
    left: 17%;
  }
  .footer-h1 h1{
    text-align: center;
    font-size: 18px;
  }
  .footer-button{
    margin-top: 100px;
  }
  .footer-button button{
    font-size: 15px;
    padding: 21px 25px;
  }
  .footer-end{
    font-size: 25px;
  }
}