@import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --navy-deep: #050b1c;
  --navy: #0b1730;
  --navy-2: #122349;
  --navy-3: #182e5c;
  --royal: #1e4fd9;
  --royal-2: #2f63f0;
  --royal-light: #5c86ff;
  --gold: #d2a34a;
  --gold-light: #e8cd84;
  --gold-deep: #9c7c2f;
  --white: #ffffff;
  --paper: #f6f8fc;
  --paper-2: #eef2f9;
  --ink: #0e1730;
  --text-soft: #57627c;
  --text-faint: #8891a6;
  --line: rgba(14, 23, 48, 0.09);
  --line-dark: rgba(255, 255, 255, 0.14);
  --display:  'Playfair Display', serif;
  
  --body: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shadow-lux: 0 30px 70px -20px rgba(11, 23, 48, 0.28);
  --shadow-soft: 0 14px 34px -14px rgba(11, 23, 48, 0.18);
}



input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}


/* Body Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
}

button,
input {
  overflow: visible;
}

button:focus,
.form-control:focus,
.accordion-button:focus,
input:focus-visible,
.btn-close:focus {
  outline: none;
  box-shadow: none;
}


body {
  margin: 0px;
  padding: 0px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

img,
video,
iframe{
    max-width:100%;
    height:auto;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;


}


.vs_heading h2 {
  font-size: calc(15px + 1.9vw);
  display: block;
  font-weight: 700;
  line-height: 1.2;
  color: #07213f;
  margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
}

/*.vs_heading h2 span{
  color: #2d7a47;
}*/

.vs_heading .vs_subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d2a34a;
  margin-bottom: 0.6rem;

}

.vs_heading p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(74, 74, 74, 0.68);
}

/*.vs_heading h6:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #000;
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);

}*/


.vs_ctm_btn {
  border-radius: 0px;
  border: 1px solid #d2a34a;
  padding: 10px 14px;
  color: #000000;
  position: relative;
  transition: all 0.3s;
  /*z-index: 1;*/
  overflow: hidden;
  font-size: 15px;
  background-color: #d2a34a;
  font-weight: 400;
}

.vs_ctm_btn_bg {
  background: transparent;
  border: 1px solid #fff;
}

.vs_ctm_btn a {
  color: #000;
}

.vs_ctm_btn:hover {
  background-color: #07213f;
  border: 1px solid #fff;
  color: #ffffff !important;

}

.vs_ctm_btn:hover a {
  color: #ffffff !important;


}

.vs_ctm_btn_bg:hover {
  color: #d2a34a !important;
}

.vs_ctm_btn i {
  transition: all 0.5s;
  padding-right: 12px;
}

/*
.vs_ctm_btn:hover i {
  padding-left: 10px;
}
*/
