@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  font-family: Inter;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li,
ol {
  list-style: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

h1 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.375rem;
  margin-bottom: 1.25rem;
}

h2 {
  color: #000;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  margin-bottom: 1.25rem;
}

h3 {
  color: #FFF;
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.75rem;
}

p {
  color: var(--Paragraph, #535353);
  margin-bottom: 0;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  padding: 16px 10px;
  /* Add padding for better UI */
  background-color: #fff;
  /* Background color */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

button:focus {
  outline: none !important;
}

.btn {
  padding: 0.875rem 1.875rem;
  gap: 0.625rem;
  border-radius: 1.875rem;
  background: #3B2A3F;
  color: #FFF;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease-in;
}
.btn.gry {
  background-color: #5A6761;
}
.btn:hover {
  background: #32103a;
  color: #fff;
}

header {
  width: 100%;
  z-index: 9;
}
header .menu_area {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menu_area .main_logo {
  max-width: 16.875rem;
}
header .menu_area .main_logo img {
  width: 100%;
}
header .menu_area .main_links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header .menu_area .main_links ul {
  gap: 2rem;
}
header .menu_area .main_links ul li {
  padding: 0;
}
header .menu_area .main_links ul li a {
  color: #111513;
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 2.75rem 0;
  position: relative;
}
header .menu_area .main_links ul li a::before {
  display: none;
}
header .menu_area .main_links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.25rem;
  border-radius: 0.25rem 0.25rem 0 0;
  background: var(--Color, #3B2A3F);
  opacity: 0;
  transition: all 0.4s ease;
}
header .menu_area .main_links ul li a:hover::after {
  opacity: 1;
}

.brdcamp {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brdcamp li {
  color: #FFF;
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.brdcamp li a {
  color: #Fff;
  position: relative;
  padding-right: 2.6rem;
}
.brdcamp li a::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/brdcamp-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.heroSec {
  position: relative;
}
.heroSec .bg {
  width: 100%;
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.heroSec .top {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3411764706);
  padding: 9.88rem 0 8rem;
}
.heroSec .top p {
  color: #fff;
  margin-bottom: 1.75rem;
  font-weight: 300;
  max-width: 39rem;
}
.heroSec #scrollDown {
  position: absolute;
  bottom: 5rem;
  right: 8.94rem;
  width: 6.25rem;
  height: 6.25rem;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroSec #scrollDown img {
  width: 2.5rem;
  height: 2.5rem;
}
.heroSec.innerBanner .top {
  padding: 5.94rem 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.heroSec.innerBanner .top h1 {
  margin-bottom: 1.55rem;
}

.homeSec2 {
  padding: 6.25rem 0;
  position: relative;
  overflow: hidden;
}
.homeSec2 .vectr1 {
  position: absolute;
  top: 42px;
  right: -102px;
  width: 13rem;
  height: 16rem;
}
.homeSec2 .row {
  align-items: center;
}
.homeSec2 .sideImg {
  width: 100%;
  border-radius: 0.75rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeSec2 h2 {
  color: #000;
  font-family: "Playfair Display";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4375rem;
  margin-bottom: 1.25rem;
  text-align: left;
}
.homeSec2 p {
  margin-bottom: 1.75rem;
}
.homeSec2 .link {
  color: var(--Color-3, #5A3F61);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  border-bottom: 1px solid #5a3f61;
}

.homeSec3 {
  background-color: #3B2A3F;
  padding: 5rem 0;
  position: relative;
}
.homeSec3 .row {
  row-gap: 2rem;
}
.homeSec3 .vectr1 {
  position: absolute;
  top: 0;
  left: -104px;
  width: 16rem;
  height: 9.7rem;
}
.homeSec3 h2 {
  margin-bottom: 2.5rem;
  color: #fff;
}
.homeSec3 .cardWrp {
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.03);
}
.homeSec3 .cardWrp .img {
  width: 100%;
}
.homeSec3 .cardWrp .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 19rem;
}
.homeSec3 .cardWrp .txt {
  padding: 1.25rem;
}
.homeSec3 .cardWrp .txt p {
  color: #E1E1E1;
  font-weight: 300;
  margin-bottom: 1rem;
}
.homeSec3 .cardWrp .txt .rdMore {
  color: #FFF;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  display: inline-flex;
  gap: 0.62rem;
}
.homeSec3 .cardWrp .txt .rdMore img {
  width: 1.37rem;
}
.homeSec3 .cardWrp .txt h3 a {
  color: #fff;
  transition: all 0.3s ease;
}
.homeSec3 .cardWrp .txt h3:hover a {
  color: #c4a7ca;
}
.homeSec3 .cardWrp .date {
  color: #FFF;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.87rem;
}
.homeSec3 .cardWrp .date img {
  width: 1.25rem;
  height: 1.25rem;
}
.homeSec3 .btn.gry {
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.5rem;
}

.homeSec4 {
  padding: 6.25rem 0 5.25rem;
  position: relative;
  overflow: hidden;
}
.homeSec4 h2 {
  text-align: center;
}
.homeSec4 p {
  text-align: center;
  max-width: 54rem;
  margin: 0 auto;
}
.homeSec4 .vectr1 {
  position: absolute;
  top: 14px;
  right: -44px;
  width: 13rem;
  height: 16rem;
}

footer {
  background-color: #3B2A3F;
  padding: 5rem 0 1.88rem;
}
footer .footLink {
  margin-bottom: 1.75rem;
  max-width: 14rem;
}
footer p {
  color: #E1E1E1;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.625rem;
  margin-bottom: 1.75rem;
}
footer .social_links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
footer .social_links li a {
  width: 3.12rem;
  height: 3.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  color: #3B2A3F;
  font-size: 1.6rem;
}
footer .links h5 {
  color: #FFF;
  font-family: "Playfair Display";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.75rem;
}
footer .links ul li {
  margin-bottom: 1.5rem;
}
footer .links ul li:last-child {
  margin-bottom: 0;
}
footer .links ul li a {
  color: #E1E1E1;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
footer .row {
  border-bottom: 1px solid #fff;
  padding-bottom: 3.75rem;
  margin-bottom: 1.5rem;
}
footer .row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
footer .row:last-child p {
  text-align: center;
  margin-bottom: 0;
}

.aboutUsSec2 {
  padding: 6.44rem 0 6.75rem;
  position: relative;
  overflow: hidden;
}
.aboutUsSec2 .vectr1 {
  position: absolute;
  top: 146px;
  right: -98px;
  width: 13rem;
  height: 16rem;
}
.aboutUsSec2 h2 {
  margin-bottom: 1.25rem;
  text-align: left;
}
.aboutUsSec2 .txt p {
  margin-bottom: 2.67rem;
}
.aboutUsSec2 .txt p:last-child {
  margin-bottom: 0;
}
.aboutUsSec2 .sideImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}

.aboutUsSec2.aboutUsSec3 {
  background-color: #3B2A3F;
  padding: 5rem 0;
}
.aboutUsSec2.aboutUsSec3 h2 {
  color: #fff;
}
.aboutUsSec2.aboutUsSec3 .txt p {
  color: #fff;
}
.aboutUsSec2.aboutUsSec3 .txt p:last-child {
  margin-bottom: 2.07rem;
}

.aboutUsSec2.aboutUsSec4 {
  background-color: #3B4742;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.aboutUsSec2.aboutUsSec4 .vectr2 {
  position: absolute;
  top: -46px;
  left: -57px;
  width: 16rem;
  height: 9.7rem;
}
.aboutUsSec2.aboutUsSec4 .row {
  flex-direction: row-reverse;
}
.aboutUsSec2.aboutUsSec4 h2 {
  color: #fff;
}
.aboutUsSec2.aboutUsSec4 h4 {
  color: #FFF;
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.88rem;
}
.aboutUsSec2.aboutUsSec4 .txt p {
  color: #fff;
  margin-bottom: 1.27rem;
  font-weight: 300;
}
.aboutUsSec2.aboutUsSec4 .txt ul {
  margin-bottom: 1.88rem;
}
.aboutUsSec2.aboutUsSec4 .txt ul li {
  color: var(--White, #FFF);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.25rem;
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 3.9rem;
}
.aboutUsSec2.aboutUsSec4 .txt ul li:last-child {
  margin-bottom: 0;
}
.aboutUsSec2.aboutUsSec4 .txt ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 3rem;
  height: 3rem;
  background-image: url(../images/list-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.aboutUsSec2.aboutUsSec5 {
  padding: 6.25rem 0;
}
.aboutUsSec2.aboutUsSec5 .row {
  align-items: center;
}
.aboutUsSec2.aboutUsSec5 .vectr1 {
  position: absolute;
  top: 15px;
  right: -41px;
  width: 13rem;
  height: 16rem;
}
.aboutUsSec2.aboutUsSec5 .sideImg {
  border-radius: 0;
}

@media (max-width: 1399px) {
  html {
    font-size: 80%;
  }
  .aboutUsSec2 .vectr1 {
    top: 110px;
    right: -75px;
  }
}
@media screen and (max-width: 1199px) {
  header .menu_area .main_logo {
    max-width: 14rem;
  }
  header .menu_area .main_links ul {
    gap: 1.3rem;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 70%;
  }
  header .menu_area .main_links ul li a {
    padding: 1.45rem 0.9rem;
    color: #fff;
  }
  .aboutUsSec2 .txt p {
    margin-bottom: 0.87rem;
  }
  header {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.65rem;
    line-height: 3.275rem;
  }
  .heroSec .top {
    padding: 3rem 0;
  }
  .heroSec #scrollDown {
    width: 4rem;
    height: 4rem;
    bottom: 2rem;
    right: 2.94rem;
  }
  .homeSec2,
  .homeSec4,
  .homeSec3,
  .aboutUsSec2 {
    padding: 4rem 0;
    text-align: center;
  }
  .homeSec2 h2,
  .heroSec .top,
  footer p,
  footer .links h5,
  footer .links ul li,
  .aboutUsSec2 h2 {
    text-align: center;
  }
  footer .row {
    row-gap: 2rem;
  }
  footer .links h5 {
    font-size: 1.65rem;
  }
  footer .links ul li a {
    font-size: 1.3rem;
  }
  footer {
    padding: 3rem 0 1.88rem;
  }
  footer p {
    font-size: 1.3rem;
  }
  .homeSec3 .cardWrp .date,
  .homeSec3 .cardWrp .txt .rdMore {
    font-size: 1.2rem;
  }
  header {
    padding: 2rem 0;
  }
  .heroSec #scrollDown img {
    height: 2.1rem;
  }
  .homeSec2 .row {
    row-gap: 2rem;
  }
  footer .footLink {
    margin: 0 auto 2rem;
    display: block;
  }
  footer .social_links {
    justify-content: center;
  }
  .homeSec4 .vectr1 {
    width: 10rem;
    height: 11rem;
  }
  .brdcamp {
    justify-content: center;
  }
  .aboutUsSec2 .sideImg {
    max-height: 400px;
  }
  .aboutUsSec2 .row {
    row-gap: 2rem;
  }
  .aboutUsSec2.aboutUsSec4 .txt ul li {
    text-align: left;
    font-size: 1.5rem;
  }
  .aboutUsSec2.aboutUsSec4,
  .aboutUsSec2.aboutUsSec5 {
    padding: 4rem 0;
  }
  .aboutUsSec2 .txt p {
    font-size: 1.45rem;
  }
}/*# sourceMappingURL=style.css.map */